Skip to content

Commit

Permalink
Right to left display of ko in admin interface and some labels are in…
Browse files Browse the repository at this point in the history
… English instead of Arabic - EXO-73560 - Meeds-io/meeds#2308.

Before this change, when you set the language to Arabic as a plf admin and access the admin site, the platform settings menu is positioned on the left and is not fully displayed due to an overlap with the main settings block. After this change, the right to left display in the platform settings menu without overlap is displayed correctly.
  • Loading branch information
akhanfir committed Aug 12, 2024
1 parent ea1fa56 commit 674f40d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,6 @@
position: fixed !important;
.specific-scrollbar()
}
.right-0 {
right: 0 !important;
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
-->
<template>
<v-app>
<vertical-menu-content v-if="fullDisplayAllowed" extra-class="VerticalMenu" />
<vertical-menu-content v-if="fullDisplayAllowed" :extra-class="extraClass" />
<template v-else>
<vertical-menu-button />
<vertical-menu-drawer />
Expand All @@ -29,6 +29,9 @@ export default {
fullDisplayAllowed() {
return this.$vuetify.breakpoint.width >= this.$vuetify.breakpoint.thresholds.lg;
},
extraClass() {
return eXo.env.portal.orientation === 'rtl' ? 'VerticalMenu right-0' : 'VerticalMenu';
},
}
};
</script>

0 comments on commit 674f40d

Please sign in to comment.