fde6c9a2e3
* other minor fixes
21 lines
414 B
CSS
21 lines
414 B
CSS
.ProseMirror .is-editor-empty:first-child::before {
|
|
content: attr(data-placeholder);
|
|
float: left;
|
|
color: #adb5bd;
|
|
pointer-events: none;
|
|
height: 0;
|
|
}
|
|
|
|
.ProseMirror .is-empty::before {
|
|
content: attr(data-placeholder);
|
|
float: left;
|
|
color: #adb5bd;
|
|
pointer-events: none;
|
|
height: 0;
|
|
}
|
|
|
|
.ProseMirror table .is-editor-empty:first-child::before,
|
|
.ProseMirror table .is-empty::before {
|
|
content: '';
|
|
}
|