Merge pull request #4205 from crazyserver/MOBILE-4616
MOBILE-4616 rtl: Fix accordion direction on RTLmain
commit
9814826f9d
|
@ -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.",
|
||||||
|
|
|
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue