mirror of
https://github.com/docmost/docmost.git
synced 2026-05-21 09:14:07 +08:00
33 lines
589 B
CSS
33 lines
589 B
CSS
.ProseMirror .is-editor-empty:first-child::before {
|
|
content: attr(data-placeholder);
|
|
float: left;
|
|
color: var(--mantine-color-placeholder);
|
|
pointer-events: none;
|
|
height: 0;
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.ProseMirror .is-empty::before {
|
|
content: attr(data-placeholder);
|
|
float: left;
|
|
color: var(--mantine-color-placeholder);
|
|
pointer-events: none;
|
|
height: 0;
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.ProseMirror table .is-editor-empty:first-child::before,
|
|
.ProseMirror table .is-empty::before {
|
|
display: none;
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|