Skip to content
Snippets Groups Projects
Commit e973ee01 authored by Robin Lejeune (role)'s avatar Robin Lejeune (role)
Browse files

[FIX] web_editor: adapt options' icons in RTL


The triangle pointing towards an option in the editor is pointing
right and the symbol └ is used to show a sub option in the editor panel.
In a RTL setting, this does not make sense and should be mirrored.

task-3284274

closes odoo/odoo#125091

X-original-commit: f65a9bff
Signed-off-by: default avatarQuentin Smetz (qsm) <qsm@odoo.com>
parent cb84f993
Branches
Tags
No related merge requests found
......@@ -273,6 +273,10 @@
// browser default font, we should use a SVG instead.
display: inline-block;
margin-right: 0.4em;
.o_rtl & {
transform: scaleX(-1);
}
}
@for $level from 1 through 3 {
.o_we_sublevel_#{$level} {
......@@ -1647,7 +1651,12 @@
content: '\f0da';
position: static;
transform: none;
.o_rtl & {
transform: scaleX(-1);
}
}
&.active {
&::after {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment