mirror of
https://github.com/docmost/docmost.git
synced 2025-11-12 15:02:37 +10:00
* 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
26 lines
557 B
CSS
26 lines
557 B
CSS
.ProseMirror {
|
|
div[data-youtube-video] {
|
|
cursor: move;
|
|
|
|
iframe {
|
|
display: block;
|
|
outline: 0 solid transparent;
|
|
border-radius: var(--mantine-radius-md);
|
|
width: 100%;
|
|
}
|
|
|
|
&.ProseMirror-selectednode iframe {
|
|
outline: 1px solid var(--mantine-color-blue-6);
|
|
transition: outline 0.15s;
|
|
}
|
|
|
|
&.ProseMirror-selectednode {
|
|
background-color: transparent;
|
|
}
|
|
|
|
@media print {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|