35 lines
643 B
Plaintext
35 lines
643 B
Plaintext
.ckeditor_fix () {
|
|
|
|
.cke_reset_all * {
|
|
color: inherit;
|
|
}
|
|
#cke_editor1 .cke_inner {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
display: flex;
|
|
flex-flow: column;
|
|
}
|
|
.cke_toolbox_main {
|
|
display: inline-block;
|
|
}
|
|
#cke_1_contents {
|
|
flex: 1;
|
|
margin-top: -1px;
|
|
display: flex;
|
|
overflow: visible;
|
|
iframe {
|
|
min-height: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
.cke_toolbox .cp-toolbar-history {
|
|
input.gotoInput { // TODO
|
|
padding: 3px 3px;
|
|
}
|
|
}
|
|
|
|
}
|