Fixed #35558 -- Increased inline H3 headers color prominence in admin change page.

This commit is contained in:
Sarah Boyce 2024-06-25 19:03:21 +02:00 committed by GitHub
parent 28522c3c8d
commit e510bb1ab1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 6 additions and 0 deletions

View File

@ -390,6 +390,10 @@ body.popup .submit-row {
border-right-color: var(--darkened-bg);
}
.inline-related h3 {
color: var(--body-loud-color);
}
.inline-related h3 span.delete {
float: right;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 34 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -1858,6 +1858,7 @@ class SeleniumTests(AdminSeleniumTestCase):
username="super", password="secret", email="super@example.com"
)
@screenshot_cases(["desktop_size", "mobile_size", "dark", "high_contrast"])
def test_add_stackeds(self):
"""
The "Add another XXX" link correctly adds items to the stacked formset.
@ -1878,6 +1879,7 @@ class SeleniumTests(AdminSeleniumTestCase):
)
add_button.click()
self.assertCountSeleniumElements(rows_selector, 4)
self.take_screenshot("added")
def test_delete_stackeds(self):
from selenium.webdriver.common.by import By