Skip to content

Commit 9814826

Browse files
authored
Merge pull request #4205 from crazyserver/MOBILE-4616
MOBILE-4616 rtl: Fix accordion direction on RTL
2 parents dec21f0 + 95d9da2 commit 9814826

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/addons/blog/lang.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"associatewithmodule": "Blog about {{$a.modtype}}: {{$a.modname}}",
55
"associations": "Associations",
66
"blog": "Blog",
7-
"blogentries": "Blog entries",
87
"blogdeleteconfirm": "Delete the blog entry '{{$a}}'?",
8+
"blogentries": "Blog entries",
99
"entrybody": "Blog entry body",
1010
"entrytitle": "Entry title",
1111
"errorloadentries": "Error loading blog entries.",

src/theme/components/ion-accordion.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ ion-accordion {
1717
&.accordion-collapsing > [slot="header"] .ion-accordion-toggle-icon,
1818
&.accordion-collapsed > [slot="header"] .ion-accordion-toggle-icon {
1919
transform: rotate(-90deg);
20+
@include rtl() {
21+
transform: rotate(90deg);
22+
}
2023
}
2124
}
2225

0 commit comments

Comments
 (0)