fix: Hide drag handles, empty captions, and selected outlines when printing (#6550)

This commit is contained in:
Tom Moor
2024-02-16 09:33:50 -08:00
committed by GitHub
parent 83416530c1
commit 561606f6f4
3 changed files with 12 additions and 0 deletions

View File

@@ -544,6 +544,10 @@ iframe.embed {
.ProseMirror-selectednode {
outline: 2px solid
${props.readOnly ? "transparent" : props.theme.selected};
@media print {
outline: none;
}
}
/* Make sure li selections wrap around markers */