mirror of https://github.com/django/django.git
Fixed #35145 -- Corrected color scheme of vanilla HTML widgets in admin.
This commit is contained in:
parent
06264258dc
commit
b47bdb4cd9
|
@ -84,6 +84,8 @@ html[data-theme="light"],
|
|||
"Segoe UI Emoji",
|
||||
"Segoe UI Symbol",
|
||||
"Noto Color Emoji";
|
||||
|
||||
color-scheme: light;
|
||||
}
|
||||
|
||||
html, body {
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
|
||||
--close-button-bg: #333333;
|
||||
--close-button-hover-bg: #666666;
|
||||
|
||||
color-scheme: dark;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -63,6 +65,8 @@ html[data-theme="dark"] {
|
|||
|
||||
--close-button-bg: #333333;
|
||||
--close-button-hover-bg: #666666;
|
||||
|
||||
color-scheme: dark;
|
||||
}
|
||||
|
||||
/* THEME SWITCH */
|
||||
|
|
Loading…
Reference in New Issue