mirror of
https://github.com/django/django.git
synced 2025-01-18 22:33:44 +00:00
Fixed #34638 -- Fixed admin change list selected row highlight on editable boolean fields.
Regression in 0aa2f16e63887d6053f6fd0da19254fc74c750ae. Thanks Andrei Shabanski for the report.
This commit is contained in:
parent
e9bd5b4876
commit
1d9d32389c
@ -257,19 +257,19 @@
|
||||
|
||||
/* Once the :has() pseudo-class is supported by all browsers, the tr.selected
|
||||
selector and the JS adding the class can be removed. */
|
||||
#changelist table tbody tr.selected {
|
||||
#changelist tbody tr.selected {
|
||||
background-color: var(--selected-row);
|
||||
}
|
||||
|
||||
#changelist table tbody tr:has(input[type=checkbox]:checked) {
|
||||
#changelist tbody tr:has(.action-select:checked) {
|
||||
background-color: var(--selected-row);
|
||||
}
|
||||
|
||||
@media (forced-colors: active) {
|
||||
#changelist table tbody tr.selected {
|
||||
#changelist tbody tr.selected {
|
||||
background-color: SelectedItem;
|
||||
}
|
||||
#changelist table tbody tr:has(input[type=checkbox]:checked) {
|
||||
#changelist tbody tr:has(.action-select:checked) {
|
||||
background-color: SelectedItem;
|
||||
}
|
||||
}
|
||||
|
@ -11,3 +11,7 @@ Bugfixes
|
||||
|
||||
* Fixed a regression in Django 4.2 that caused incorrect alignment of timezone
|
||||
warnings for ``DateField`` and ``TimeField`` in the admin (:ticket:`34645`).
|
||||
|
||||
* Fixed a regression in Django 4.2 that caused incorrect highlighting of rows
|
||||
in the admin changelist view when ``ModelAdmin.list_editable`` contained a
|
||||
``BooleanField`` (:ticket:`34638`).
|
||||
|
Loading…
x
Reference in New Issue
Block a user