BookStack/resources/sass/_tinymce.scss

78 lines
1.6 KiB
SCSS
Raw Normal View History

2015-07-15 21:55:49 +00:00
.mce-tinymce.mce-container.mce-fullscreen {
2015-07-15 21:55:49 +00:00
position: fixed;
top: 0;
height: 100%;
width: 100%;
2015-07-21 20:16:26 +00:00
max-width: 100%;
z-index: 100;
2015-07-21 21:11:30 +00:00
}
.mce-tinymce {
.mce-panel {
@include lightDark(background-color, #fff, #333);
}
.mce-btn {
@include lightDark(background-color, #fff, #333);
}
2015-08-31 10:43:28 +00:00
}
2015-10-18 19:06:49 +00:00
.mce-container-body.mce-flow-layout {
text-align: center;
}
2019-04-13 17:30:11 +00:00
@include smaller-than($l) {
.mce-container-body.mce-flow-layout {
overflow-x: scroll;
white-space: nowrap;
}
}
.edit-area.flex > div > .mce-tinymce.mce-container.mce-panel {
flex: 1 1 auto;
2015-08-31 10:43:28 +00:00
display: flex !important;
flex-direction: column;
align-items: stretch;
margin: 0 -1px;
> .mce-container-body {
flex: 1 1 auto;
2015-08-31 10:43:28 +00:00
display: flex !important;
flex-direction: column;
align-items: stretch;
> .mce-toolbar-grp {
flex: 0 1 auto;
}
2015-08-31 10:43:28 +00:00
> .mce-edit-area {
flex: 1 1 auto;
2015-08-31 10:43:28 +00:00
display: flex !important;
flex-direction: column;
align-items: stretch;
-webkit-overflow-scrolling:touch;
overflow:auto;
2015-08-31 10:43:28 +00:00
iframe {
flex: 1;
// Force TinyMCE iframe to render on its own layer
// for much greater performance in Safari
will-change: transform;
2015-08-31 10:43:28 +00:00
}
}
}
}
.page-content.mce-content-body p {
line-height: 1.6;
}
.page-content.mce-content-body {
padding-top: 16px;
outline: none;
}
// Fix to prevent 'No color' option from not being clickable.
.mce-colorbtn-trans {
overflow: hidden;
}
// Fix to prevent CodeMirror focus events throwing TinyMCE cursor position.
.mce-content-body .CodeMirrorContainer > .CodeMirror {
pointer-events: none;
2015-07-15 21:55:49 +00:00
}