[FIX] CMS editor

This commit is contained in:
Tony Air 2023-06-02 16:30:54 +02:00
parent 2e5e33f066
commit 70c73cfa06
2 changed files with 21 additions and 9 deletions

View File

@ -145,11 +145,6 @@ body.cms {
} }
} }
.btn-outline-primary,
.btn-primary {
color: #fff;
}
.visually-hidden, .visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) { .visually-hidden-focusable:not(:focus):not(:focus-within) {
position: absolute !important; position: absolute !important;
@ -166,3 +161,7 @@ body.cms {
position: relative; position: relative;
z-index: 99; z-index: 99;
} }
.sticky-buttons ~ table.table.grid-field__table {
margin-top: 1rem;
}

View File

@ -58,8 +58,7 @@ img,
} }
&.start, &.start,
&.left, &.left {
&.leftAlone {
float: left; float: left;
clear: left; clear: left;
@ -68,9 +67,16 @@ img,
} }
} }
&.leftAlone {
float: none;
clear: both;
margin-left: 0;
margin-right: auto;
}
&.end, &.end,
&.right, &.right {
&.rightAlone {
float: right; float: right;
clear: right; clear: right;
@ -79,6 +85,13 @@ img,
} }
} }
&.rightAlone {
float: none;
clear: both;
margin-left: auto;
margin-right: 0;
}
iframe { iframe {
width: 100% !important; width: 100% !important;
max-height: 100% !important; max-height: 100% !important;