mirror of
https://github.com/docmost/docmost.git
synced 2026-05-15 05:04:06 +08:00
f388540293
* fix maths node * render default html width * Add page export module * with support for html and markdown exports * Page export UI * Add PDF print too * remove unused import
33 lines
537 B
CSS
33 lines
537 B
CSS
.ProseMirror .is-editor-empty:first-child::before {
|
|
content: attr(data-placeholder);
|
|
float: left;
|
|
color: #adb5bd;
|
|
pointer-events: none;
|
|
height: 0;
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.ProseMirror .is-empty::before {
|
|
content: attr(data-placeholder);
|
|
float: left;
|
|
color: #adb5bd;
|
|
pointer-events: none;
|
|
height: 0;
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.ProseMirror table .is-editor-empty:first-child::before,
|
|
.ProseMirror table .is-empty::before {
|
|
content: '';
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|