]> BookStack Code Mirror - bookstack/blob - resources/assets/sass/_tinymce.scss
Closes #69. Implemented and tested memcached.
[bookstack] / resources / assets / sass / _tinymce.scss
1
2
3 .mce-tinymce.mce-container.fullscreen {
4   position: fixed;
5   top: 0;
6   height: 100%;
7   width: 825px;
8   max-width: 100%;
9   margin-left: -$-s;
10   box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.08);
11 }
12
13
14 .mce-tinymce {
15   .mce-panel {
16     background-color: #FFF;
17   }
18   .mce-btn {
19     background-color: #FFF;
20   }
21 }
22
23 .mce-container-body.mce-flow-layout {
24   text-align: center;
25 }
26
27 .edit-area.flex > .mce-tinymce.mce-container.mce-panel {
28   height: 100%;
29   max-height: 100%;
30   flex: 1;
31   display: flex !important;
32   flex-direction: column;
33   align-items: stretch;
34   margin: 0 -1px;
35   > .mce-container-body {
36     flex: 1;
37     display: flex !important;
38     flex-direction: column;
39     align-items: stretch;
40     > .mce-edit-area {
41       flex: 1;
42       display: flex !important;
43       flex-direction: column;
44       align-items: stretch;
45       iframe {
46         flex: 1;
47       }
48     }
49   }
50 }