Merge pull request #4205 from crazyserver/MOBILE-4616

MOBILE-4616 rtl: Fix accordion direction on RTL
main
Dani Palou 2024-10-11 12:42:30 +02:00 committed by GitHub
commit 9814826f9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -4,8 +4,8 @@
"associatewithmodule": "Blog about {{$a.modtype}}: {{$a.modname}}", "associatewithmodule": "Blog about {{$a.modtype}}: {{$a.modname}}",
"associations": "Associations", "associations": "Associations",
"blog": "Blog", "blog": "Blog",
"blogentries": "Blog entries",
"blogdeleteconfirm": "Delete the blog entry '{{$a}}'?", "blogdeleteconfirm": "Delete the blog entry '{{$a}}'?",
"blogentries": "Blog entries",
"entrybody": "Blog entry body", "entrybody": "Blog entry body",
"entrytitle": "Entry title", "entrytitle": "Entry title",
"errorloadentries": "Error loading blog entries.", "errorloadentries": "Error loading blog entries.",

View File

@ -17,6 +17,9 @@ ion-accordion {
&.accordion-collapsing > [slot="header"] .ion-accordion-toggle-icon, &.accordion-collapsing > [slot="header"] .ion-accordion-toggle-icon,
&.accordion-collapsed > [slot="header"] .ion-accordion-toggle-icon { &.accordion-collapsed > [slot="header"] .ion-accordion-toggle-icon {
transform: rotate(-90deg); transform: rotate(-90deg);
@include rtl() {
transform: rotate(90deg);
}
} }
} }