2020-11-03 21:16:59 +00:00
|
|
|
.editor {
|
2020-11-03 21:29:47 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
*, *::before, *::after { box-sizing: inherit; }
|
|
|
|
|
2020-11-16 23:52:34 +00:00
|
|
|
h1, h2, h3, h4, h5, h6, p, li {
|
|
|
|
min-height: 1.5rem;
|
2020-11-03 21:29:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mark {
|
|
|
|
background: #f206f9;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-11-09 18:08:47 +00:00
|
|
|
.selected { outline: #f206f9 solid medium; }
|
2020-11-03 21:29:47 +00:00
|
|
|
|
2020-11-17 16:01:17 +00:00
|
|
|
iframe {
|
|
|
|
min-height: 480px;
|
|
|
|
}
|
2020-11-16 23:52:34 +00:00
|
|
|
|
2020-11-09 18:08:47 +00:00
|
|
|
img, video, iframe, audio {
|
2020-11-03 21:29:47 +00:00
|
|
|
width: 100%;
|
|
|
|
max-width: 600px;
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2020-11-13 20:35:12 +00:00
|
|
|
.editor-toolbar {
|
|
|
|
position: sticky;
|
|
|
|
top: 0px;
|
|
|
|
background: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.editor-primary-toolbar, .editor-auxiliary-toolbar {
|
|
|
|
display: block;
|
|
|
|
overflow-x: auto;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.editor-auxiliary-toolbar {
|
|
|
|
& > * {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.editor-auxiliary-tool-active {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-03 21:16:59 +00:00
|
|
|
.editor-content {
|
2020-11-06 14:50:41 +00:00
|
|
|
word-wrap: break-word;
|
2020-11-03 21:16:59 +00:00
|
|
|
div[data-align="left"] { text-align: left; }
|
|
|
|
div[data-align="center"] { text-align: center; }
|
|
|
|
div[data-align="right"] { text-align: right; }
|
|
|
|
}
|
2020-11-05 22:19:02 +00:00
|
|
|
|
|
|
|
*[data-editor-loading] {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2020-11-16 23:52:34 +00:00
|
|
|
|
2020-11-05 22:19:02 +00:00
|
|
|
*[data-editor-error] {
|
|
|
|
filter: grayscale(100%);
|
|
|
|
}
|
2020-11-03 21:16:59 +00:00
|
|
|
}
|