mirror of https://github.com/django/django.git
Refs #35004 -- Restored the direction of arrows in admin selector boxes for RTL languages on mobile screens.
Regression in 57c1dd466f
.
This commit is contained in:
parent
b925fefd7d
commit
dafbed9af5
|
@ -97,4 +97,20 @@
|
|||
[dir="rtl"] .aligned .vCheckboxLabel {
|
||||
padding: 1px 5px 0 0;
|
||||
}
|
||||
|
||||
[dir="rtl"] .selector-remove {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
[dir="rtl"] .active.selector-remove:focus, .active.selector-remove:hover {
|
||||
background-position: 0 -20px;
|
||||
}
|
||||
|
||||
[dir="rtl"] .selector-add {
|
||||
background-position: 0 -40px;
|
||||
}
|
||||
|
||||
[dir="rtl"] .active.selector-add:focus, .active.selector-add:hover {
|
||||
background-position: 0 -60px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue