MOBILE-4616 rtl: Fix accordion direction on RTL

main
Pau Ferrer Ocaña 2024-10-11 12:19:01 +02:00
parent dec21f0a69
commit 95d9da2565
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);
}
} }
} }