Skip to content

Commit

Permalink
Merge pull request #4205 from crazyserver/MOBILE-4616
Browse files Browse the repository at this point in the history
MOBILE-4616 rtl: Fix accordion direction on RTL
  • Loading branch information
dpalou authored Oct 11, 2024
2 parents dec21f0 + 95d9da2 commit 9814826
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/addons/blog/lang.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"associatewithmodule": "Blog about {{$a.modtype}}: {{$a.modname}}",
"associations": "Associations",
"blog": "Blog",
"blogentries": "Blog entries",
"blogdeleteconfirm": "Delete the blog entry '{{$a}}'?",
"blogentries": "Blog entries",
"entrybody": "Blog entry body",
"entrytitle": "Entry title",
"errorloadentries": "Error loading blog entries.",
Expand Down
3 changes: 3 additions & 0 deletions src/theme/components/ion-accordion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ ion-accordion {
&.accordion-collapsing > [slot="header"] .ion-accordion-toggle-icon,
&.accordion-collapsed > [slot="header"] .ion-accordion-toggle-icon {
transform: rotate(-90deg);
@include rtl() {
transform: rotate(90deg);
}
}
}

Expand Down

0 comments on commit 9814826

Please sign in to comment.