1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #35809 -- Set background color for selected rows in the admin's form select widget.

Regression in b47bdb4cd9.

Thank you Giannis Terzopoulos for the review, and Tom Carrick and Sarah Boyce
for the review.
This commit is contained in:
nessita
2024-10-08 10:01:28 -03:00
committed by GitHub
parent 747b417a22
commit 679d57816d
3 changed files with 67 additions and 0 deletions

View File

@@ -169,6 +169,10 @@ form .aligned select + div.help {
padding-left: 10px;
}
form .aligned select option:checked {
background-color: var(--selected-row);
}
form .aligned ul li {
list-style: none;
}