1f4bd129a8
* add callout, youtube embed, image, video, table, detail, math * fix attachments module * other fixes
22 lines
498 B
CSS
22 lines
498 B
CSS
.ProseMirror {
|
|
div[data-youtube-video] {
|
|
cursor: move;
|
|
|
|
iframe {
|
|
display: block;
|
|
outline: 0px 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;
|
|
}
|
|
}
|
|
}
|