Skip to content
Snippets Groups Projects
Commit fb55f688 authored by Antoine Guenet's avatar Antoine Guenet
Browse files

[IMP] web_editor: align editor columns with editable bounds


Columns added with the "columns" Powerbox commands should be aligned
with the editable element's bounds.

task-3001988

closes odoo/odoo#105208

Signed-off-by: default avatarDavid Monjoie (dmo) <dmo@odoo.com>
parent 8703c01d
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,24 @@ li.oe-nested {
padding: 0.5rem;
}
}
$sizes: 'xs', 'sm', 'md', 'lg', 'xl', 'xxl';
.o_text_columns {
max-width: 100% !important;
padding: 0 !important;
}
.o_text_columns > .row {
margin: 0 !important;
@each $size in $sizes {
@for $i from 1 through 12 {
& > .col-#{$size}-#{$i}:first-of-type {
padding-left: 0;
}
& > .col-#{$size}-#{$i}:last-of-type {
padding-right: 0;
}
}
}
}
.oe-tabs {
display: inline-block;
white-space: pre-wrap;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment