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:
Mariusz Felisiak 2023-12-01 09:45:57 +01:00 committed by GitHub
parent b925fefd7d
commit dafbed9af5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions

View File

@ -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;
}
}