mirror of
https://github.com/django/django.git
synced 2025-12-04 09:03:21 +00:00
Fixed #34913 -- Added borders on high contrast mode in the admin.
This commit is contained in:
parent
a680ac7d77
commit
eab67450b3
2 changed files with 18 additions and 0 deletions
|
|
@ -878,6 +878,12 @@ a.deletelink:focus, a.deletelink:hover {
|
||||||
margin-right: -300px;
|
margin-right: -300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (forced-colors: active) {
|
||||||
|
#content-related {
|
||||||
|
border: 1px solid;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
clear: both;
|
clear: both;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
|
@ -928,6 +934,12 @@ a.deletelink:focus, a.deletelink:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (forced-colors: active) {
|
||||||
|
#header {
|
||||||
|
border-bottom: 1px solid;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#branding {
|
#branding {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -139,6 +139,12 @@
|
||||||
margin: 0 0 0 30px;
|
margin: 0 0 0 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (forced-colors: active) {
|
||||||
|
#changelist-filter {
|
||||||
|
border: 1px solid;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#changelist-filter h2 {
|
#changelist-filter h2 {
|
||||||
font-size: 0.875rem;
|
font-size: 0.875rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue