Started to rewrite CKEDITOR placeholder plugin for CKEDITOR5.

This commit is contained in:
Jan Böhmer 2022-07-29 01:03:17 +02:00
parent a33e93826a
commit eba89cee62
8 changed files with 374 additions and 1 deletions

View file

@ -0,0 +1,22 @@
.cke_placeholder {
background: #ffff00;
padding: 4px 2px;
outline-offset: -2px;
line-height: 1em;
margin: 0 1px;
}
.cke_placeholder::selection {
display: none;
}
/*.cke_overflow_dropdown {
overflow: auto;
height: 40vh;
}*/
/** Make long editor dropdown panels scrollable */
.ck-dropdown__panel {
overflow: auto;
max-height: 40vh;
}