Files
Trilium/theme/mathform.css

38 lines
652 B
CSS
Raw Normal View History

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;
2019-09-17 16:19:35 +03:00
& .ck.ck-math-preview {
user-select: none;
}
/* FIXME: mathjax isn't working with .ck.ck-reset_all * without this fix*/
& .ck.ck-math-preview * {
vertical-align: initial;
text-align: center;
}
2019-08-31 20:48:37 +03:00
@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%;
}
}
}