2019-08-31 20:48:37 +03:00
|
|
|
@import "@ckeditor/ckeditor5-ui/theme/mixins/_rwd.css";
|
|
|
|
|
|
|
|
.ck.ck-math-form {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
|
|
|
@mixin ck-media-phone {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
& .ck-math-view {
|
|
|
|
flex-basis: 100%;
|
|
|
|
|
|
|
|
& .ck-labeled-input {
|
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .ck-label {
|
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& .ck-button {
|
|
|
|
flex-basis: 50%;
|
|
|
|
}
|
|
|
|
}
|
2019-10-01 23:11:51 +03:00
|
|
|
}
|
2019-10-03 03:47:26 +03:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
}
|