mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-02 13:02:00 +08:00

See also: - https://github.com/ckeditor/ckeditor5/blob/v41.0.0/CHANGELOG.md > ui: The --ck-z-modal CSS custom property was renamed to --ck-z-panel. > We recommend updating custom CSS and integrations that use this custom > property to avoid presentation issues. See #14973. - https://github.com/ckeditor/ckeditor5/issues/14973
36 lines
528 B
CSS
36 lines
528 B
CSS
.ck.ck-math-form {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
padding: var(--ck-spacing-standard);
|
|
|
|
@media screen and (max-width: 600px) {
|
|
flex-wrap: wrap;
|
|
|
|
& .ck-math-view {
|
|
flex-basis: 100%;
|
|
|
|
& .ck-labeled-view {
|
|
flex-basis: 100%;
|
|
}
|
|
|
|
& .ck-label {
|
|
flex-basis: 100%;
|
|
}
|
|
}
|
|
|
|
& .ck-button {
|
|
flex-basis: 50%;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ck-math-tex.ck-placeholder::before {
|
|
display: none !important;
|
|
}
|
|
|
|
.ck.ck-toolbar-container {
|
|
z-index: calc(var(--ck-z-panel) + 2);
|
|
}
|