36 lines
528 B
CSS
Raw Permalink Normal View History

2019-08-31 20:48:37 +03:00
.ck.ck-math-form {
2020-08-29 17:33:41 +03:00
display: flex;
align-items: flex-start;
flex-direction: row;
flex-wrap: nowrap;
2023-02-06 19:35:50 +01:00
padding: var(--ck-spacing-standard);
2019-08-31 20:48:37 +03:00
2020-08-29 17:33:41 +03:00
@media screen and (max-width: 600px) {
2019-08-31 20:48:37 +03:00
flex-wrap: wrap;
2020-08-29 17:33:41 +03:00
& .ck-math-view {
2019-08-31 20:48:37 +03:00
flex-basis: 100%;
2023-02-06 19:35:50 +01:00
& .ck-labeled-view {
2020-08-29 17:33:41 +03:00
flex-basis: 100%;
}
2019-08-31 20:48:37 +03:00
2020-08-29 17:33:41 +03:00
& .ck-label {
flex-basis: 100%;
}
2019-08-31 20:48:37 +03:00
}
& .ck-button {
flex-basis: 50%;
}
}
2019-10-01 23:11:51 +03:00
}
2019-10-03 03:47:26 +03:00
2020-11-03 21:44:09 +02:00
.ck-math-tex.ck-placeholder::before {
display: none !important;
2020-11-03 21:44:09 +02:00
}
2019-10-03 03:47:26 +03:00
.ck.ck-toolbar-container {
z-index: calc(var(--ck-z-panel) + 2);
2019-10-03 03:47:26 +03:00
}