mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
ac7e3977de
Prevented overlapping sidebar and collapsed content. Fixes #605
51 lines
919 B
SCSS
51 lines
919 B
SCSS
|
|
.mce-tinymce.mce-container.mce-fullscreen {
|
|
position: fixed;
|
|
top: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
z-index: 100;
|
|
}
|
|
|
|
.mce-tinymce {
|
|
.mce-panel {
|
|
background-color: #FFF;
|
|
}
|
|
.mce-btn {
|
|
background-color: #FFF;
|
|
}
|
|
}
|
|
|
|
.mce-container-body.mce-flow-layout {
|
|
text-align: center;
|
|
}
|
|
|
|
.edit-area.flex > div > .mce-tinymce.mce-container.mce-panel {
|
|
flex: 1 1 auto;
|
|
display: flex !important;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
margin: 0 -1px;
|
|
> .mce-container-body {
|
|
flex: 1 1 auto;
|
|
display: flex !important;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
> .mce-toolbar-grp {
|
|
flex: 0 1 auto;
|
|
}
|
|
> .mce-edit-area {
|
|
flex: 1 1 auto;
|
|
display: flex !important;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
iframe {
|
|
flex: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.page-content.mce-content-body p {
|
|
line-height: 1.6;
|
|
} |