mirror of https://github.com/django/django.git
Fixed #35004 -- Corrected the direction of arrows in admin selector boxes for RTL languages on small screens.
Follow up to 12617fbd85
.
This commit is contained in:
parent
6ab0f8ae52
commit
57c1dd466f
|
@ -58,6 +58,22 @@
|
|||
padding-left: 0;
|
||||
padding-right: 16px;
|
||||
}
|
||||
|
||||
[dir="rtl"] .selector-add {
|
||||
background-position: 0 -80px;
|
||||
}
|
||||
|
||||
[dir="rtl"] .selector-remove {
|
||||
background-position: 0 -120px;
|
||||
}
|
||||
|
||||
[dir="rtl"] .active.selector-add:focus, .active.selector-add:hover {
|
||||
background-position: 0 -100px;
|
||||
}
|
||||
|
||||
[dir="rtl"] .active.selector-remove:focus, .active.selector-remove:hover {
|
||||
background-position: 0 -140px;
|
||||
}
|
||||
}
|
||||
|
||||
/* MOBILE */
|
||||
|
|
Loading…
Reference in New Issue