]> BookStack Code Mirror - bookstack/blob - resources/assets/sass/_tinymce.scss
Add APP_LOGGING
[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 > div > .mce-tinymce.mce-container.mce-panel {
28   flex: 1 1 auto;
29   display: flex !important;
30   flex-direction: column;
31   align-items: stretch;
32   margin: 0 -1px;
33   > .mce-container-body {
34     flex: 1 1 auto;
35     display: flex !important;
36     flex-direction: column;
37     align-items: stretch;
38     > .mce-toolbar-grp {
39       flex: 0 1 auto;
40     }
41     > .mce-edit-area {
42       flex: 1 1 auto;
43       display: flex !important;
44       flex-direction: column;
45       align-items: stretch;
46       iframe {
47         flex: 1;
48       }
49     }
50   }
51 }