Fix writer and seperate schema

This commit is contained in:
Sauli Anto
2020-08-29 17:33:41 +03:00
parent 0ef44427ce
commit 7d0cd0187f
10 changed files with 101 additions and 88 deletions

View File

@@ -1,24 +1,22 @@
@import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
.ck.ck-math-form {
display: flex;
align-items: flex-start;
flex-direction: row;
flex-wrap: nowrap;
display: flex;
align-items: flex-start;
flex-direction: row;
flex-wrap: nowrap;
@mixin ck-media-phone {
@media screen and (max-width: 600px) {
flex-wrap: wrap;
& .ck-math-view {
& .ck-math-view {
flex-basis: 100%;
& .ck-labeled-input {
flex-basis: 100%;
}
& .ck-labeled-input {
flex-basis: 100%;
}
& .ck-label {
flex-basis: 100%;
}
& .ck-label {
flex-basis: 100%;
}
}
& .ck-button {
@@ -27,7 +25,7 @@
}
}
// Increase toolbar default z-index by one because math preview should be below of it
/* Increase toolbar default z-index by one because math preview should be below of it */
.ck.ck-toolbar-container {
z-index: calc(var(--ck-z-modal) + 2);
}