fix editor styles after wp update

This commit is contained in:
2025-12-19 12:28:25 +00:00
parent a4d764b510
commit 39444a6898

View File

@@ -20,20 +20,6 @@
} }
.editor-visual-editor { .editor-visual-editor {
.wp-block {
max-width: none;
}
.is-root-container > .wp-block:not(.block-list-appender) {
margin: 0;
}
.block-list-appender {
width: 350px;
max-width: 90%;
margin: 1em auto;
}
&__post-title-wrapper { &__post-title-wrapper {
position: sticky; position: sticky;
top: 0; top: 0;
@@ -43,26 +29,41 @@
background: white; background: white;
box-shadow: 0 0.5rem 1rem rgba(black, 0.15); box-shadow: 0 0.5rem 1rem rgba(black, 0.15);
} }
}
.wp-block-post-title { .editor-styles-wrapper {
position: relative; background: colours.$grey-lightest;
padding: 0.5rem;
border: 1px solid rgba(black, 0.3);
margin: 0;
&::before { .block-list-appender {
content: 'Page Title'; width: 350px;
position: absolute; max-width: 90%;
top: -0.5rem; margin: 1em auto;
left: 0.5rem;
color: rgba(black, 0.3);
font-size: 0.8rem;
display: block;
padding: 0 0.5rem;
margin: 0;
background: white;
line-height: 1;
font-weight: 400;
}
} }
} }
.wp-block-post-title {
position: relative;
padding: 0.5rem;
border: 1px solid rgba(black, 0.3);
margin: 0;
&::before {
content: 'Page Title';
position: absolute;
top: -0.5rem;
left: 0.5rem;
color: rgba(black, 0.3);
font-size: 0.8rem;
display: block;
padding: 0 0.5rem;
margin: 0;
background: white;
line-height: 1;
font-weight: 400;
}
}
.is-root-container > .wp-block:not(.block-list-appender) {
max-width: none;
margin: 0;
}