Files
Zero/apps/mail/components/create/editor.css
2025-03-01 17:12:53 -05:00

20 lines
434 B
CSS

/* Only show placeholder when editor is completely empty */
.ProseMirror p.is-editor-empty:first-child::before {
color: #adb5bd;
content: attr(data-placeholder);
float: left;
height: 0;
pointer-events: none;
opacity: 0.5;
}
/* Remove the style for all empty paragraphs */
/*
.ProseMirror p.is-empty::before {
color: #adb5bd;
content: attr(data-placeholder);
float: left;
height: 0;
pointer-events: none;
}
*/