2024-06-05 20:04:49 +08:00
|
|
|
// Common variables
|
|
|
|
:root {
|
|
|
|
--editor-color-primary: #206ea7;
|
|
|
|
}
|
|
|
|
|
2024-05-30 19:25:25 +08:00
|
|
|
// Main UI elements
|
2024-07-01 17:44:23 +08:00
|
|
|
.editor-container {
|
|
|
|
background-color: #FFF;
|
|
|
|
position: relative;
|
|
|
|
&.fullscreen {
|
|
|
|
z-index: 500;
|
|
|
|
}
|
|
|
|
}
|
2024-05-30 19:25:25 +08:00
|
|
|
.editor-toolbar-main {
|
|
|
|
display: flex;
|
2024-06-19 23:14:20 +08:00
|
|
|
flex-wrap: wrap;
|
2024-07-01 22:10:22 +08:00
|
|
|
justify-content: center;
|
|
|
|
border-top: 1px solid #DDD;
|
|
|
|
border-bottom: 1px solid #DDD;
|
2024-05-30 19:25:25 +08:00
|
|
|
}
|
|
|
|
|
2024-07-01 17:44:23 +08:00
|
|
|
body.editor-is-fullscreen {
|
|
|
|
overflow: hidden;
|
|
|
|
.edit-area {
|
|
|
|
z-index: 20;
|
|
|
|
}
|
|
|
|
}
|
2024-07-01 22:10:22 +08:00
|
|
|
.editor-content-area {
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.editor-content-wrap {
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
2024-07-01 17:44:23 +08:00
|
|
|
|
2024-05-30 19:25:25 +08:00
|
|
|
// Buttons
|
|
|
|
.editor-button {
|
|
|
|
font-size: 12px;
|
2024-07-04 23:16:16 +08:00
|
|
|
padding: 4px;
|
2024-05-30 19:25:25 +08:00
|
|
|
color: #444;
|
2024-07-01 22:10:22 +08:00
|
|
|
border-radius: 4px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2024-07-04 23:16:16 +08:00
|
|
|
margin: 2px;
|
2024-05-30 19:25:25 +08:00
|
|
|
}
|
|
|
|
.editor-button:hover {
|
|
|
|
background-color: #EEE;
|
|
|
|
cursor: pointer;
|
|
|
|
color: #000;
|
|
|
|
}
|
2024-06-23 18:36:48 +08:00
|
|
|
.editor-button[disabled] {
|
|
|
|
pointer-events: none;
|
|
|
|
cursor: not-allowed;
|
|
|
|
opacity: .6;
|
|
|
|
}
|
2024-05-30 19:25:25 +08:00
|
|
|
.editor-button-active, .editor-button-active:hover {
|
|
|
|
background-color: #ceebff;
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
.editor-button-format-preview {
|
|
|
|
padding: 4px 6px;
|
|
|
|
display: block;
|
|
|
|
}
|
2024-06-20 03:00:29 +08:00
|
|
|
.editor-button-icon svg {
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2024-07-01 22:10:22 +08:00
|
|
|
color: inherit;
|
|
|
|
fill: currentColor;
|
2024-07-04 23:16:16 +08:00
|
|
|
display: block;
|
2024-06-20 03:00:29 +08:00
|
|
|
}
|
2024-05-30 19:25:25 +08:00
|
|
|
|
|
|
|
// Containers
|
|
|
|
.editor-dropdown-menu-container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.editor-dropdown-menu {
|
|
|
|
position: absolute;
|
|
|
|
background-color: #FFF;
|
|
|
|
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.15);
|
|
|
|
z-index: 99;
|
|
|
|
min-width: 120px;
|
2024-07-04 23:16:16 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-05-30 19:25:25 +08:00
|
|
|
}
|
|
|
|
.editor-menu-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-07-04 23:16:16 +08:00
|
|
|
align-items: stretch;
|
2024-05-30 19:25:25 +08:00
|
|
|
}
|
2024-07-04 23:16:16 +08:00
|
|
|
.editor-menu-list .editor-button {
|
2024-05-30 19:25:25 +08:00
|
|
|
border-bottom: 0;
|
|
|
|
text-align: start;
|
2024-07-04 23:16:16 +08:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.editor-menu-list > .editor-dropdown-menu-container .editor-dropdown-menu {
|
|
|
|
inset-inline-start: 100%;
|
|
|
|
top: 0;
|
|
|
|
flex-direction: column;
|
2024-05-30 19:25:25 +08:00
|
|
|
}
|
|
|
|
|
2024-07-04 23:16:16 +08:00
|
|
|
.editor-format-menu-toggle {
|
|
|
|
width: 130px;
|
|
|
|
height: 32px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding-inline: 12px;
|
|
|
|
justify-content: start;
|
|
|
|
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23666" d="M7.41 8L12 12.58 16.59 8 18 9.41l-6 6-6-6z"/></svg>');
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 98% 50%;
|
|
|
|
background-size: 28px;
|
|
|
|
}
|
2024-05-30 19:25:25 +08:00
|
|
|
.editor-format-menu .editor-dropdown-menu {
|
2024-07-04 23:16:16 +08:00
|
|
|
min-width: 300px;
|
|
|
|
.editor-dropdown-menu {
|
|
|
|
min-width: 220px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.editor-format-menu .editor-dropdown-menu .editor-dropdown-menu-container > .editor-button {
|
|
|
|
padding: 8px 10px;
|
2024-06-01 23:49:47 +08:00
|
|
|
}
|
|
|
|
|
2024-06-27 23:28:06 +08:00
|
|
|
.editor-overflow-container {
|
|
|
|
display: flex;
|
2024-07-04 23:16:16 +08:00
|
|
|
border-inline: 1px solid #DDD;
|
|
|
|
padding-inline: 4px;
|
|
|
|
&:first-child {
|
|
|
|
border-inline-start: none;
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
border-inline-end: none;
|
|
|
|
}
|
|
|
|
+ .editor-overflow-container {
|
|
|
|
border-inline-start: none;
|
|
|
|
}
|
2024-06-27 23:28:06 +08:00
|
|
|
}
|
|
|
|
|
2024-07-01 02:52:09 +08:00
|
|
|
.editor-context-toolbar {
|
|
|
|
position: fixed;
|
|
|
|
background-color: #FFF;
|
|
|
|
border: 1px solid #DDD;
|
|
|
|
padding: .2rem;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
|
2024-07-04 23:16:16 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-07-01 02:52:09 +08:00
|
|
|
&:before {
|
|
|
|
content: '';
|
|
|
|
z-index: -1;
|
|
|
|
display: block;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
position: absolute;
|
|
|
|
background-color: #FFF;
|
|
|
|
border-top: 1px solid #DDD;
|
|
|
|
border-left: 1px solid #DDD;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -4px;
|
|
|
|
top: -5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-01 23:49:47 +08:00
|
|
|
// Modals
|
|
|
|
.editor-modal-wrapper {
|
|
|
|
position: fixed;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 999;
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.editor-modal {
|
|
|
|
background-color: #FFF;
|
|
|
|
border: 1px solid #DDD;
|
|
|
|
padding: 1rem;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.editor-modal-header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
.editor-modal-title {
|
|
|
|
font-weight: 700;
|
2024-06-05 20:04:49 +08:00
|
|
|
}
|
|
|
|
|
2024-06-13 02:51:42 +08:00
|
|
|
// Specific UI elements
|
|
|
|
.editor-color-select-row {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.editor-color-select-option {
|
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.editor-color-select-option:hover {
|
|
|
|
border-radius: 3px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
z-index: 3;
|
|
|
|
box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.25);
|
|
|
|
}
|
2024-06-21 23:18:44 +08:00
|
|
|
.editor-table-creator-row {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.editor-table-creator-cell {
|
|
|
|
border: 1px solid #DDD;
|
|
|
|
width: 15px;
|
|
|
|
height: 15px;
|
|
|
|
cursor: pointer;
|
|
|
|
&.active {
|
|
|
|
background-color: var(--editor-color-primary);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.editor-table-creator-display {
|
|
|
|
text-align: center;
|
|
|
|
padding: 0.2em;
|
|
|
|
}
|
2024-06-13 02:51:42 +08:00
|
|
|
|
2024-06-05 20:04:49 +08:00
|
|
|
// In-editor elements
|
|
|
|
.editor-image-wrap {
|
|
|
|
position: relative;
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
.editor-image-decorator {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-06-06 00:18:58 +08:00
|
|
|
display: inline-block;
|
|
|
|
&.selected {
|
|
|
|
border: 1px dashed var(--editor-color-primary);
|
|
|
|
}
|
2024-06-05 20:04:49 +08:00
|
|
|
}
|
|
|
|
.editor-image-decorator-handle {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
2024-06-06 00:18:58 +08:00
|
|
|
border: 2px solid var(--editor-color-primary);
|
|
|
|
background-color: #FFF;
|
2024-06-05 20:04:49 +08:00
|
|
|
user-select: none;
|
|
|
|
&.nw {
|
|
|
|
inset-inline-start: -5px;
|
|
|
|
inset-block-start: -5px;
|
|
|
|
cursor: nw-resize;
|
|
|
|
}
|
|
|
|
&.ne {
|
|
|
|
inset-inline-end: -5px;
|
|
|
|
inset-block-start: -5px;
|
|
|
|
cursor: ne-resize;
|
|
|
|
}
|
|
|
|
&.se {
|
|
|
|
inset-inline-end: -5px;
|
|
|
|
inset-block-end: -5px;
|
|
|
|
cursor: se-resize;
|
|
|
|
}
|
|
|
|
&.sw {
|
|
|
|
inset-inline-start: -5px;
|
|
|
|
inset-block-end: -5px;
|
|
|
|
cursor: sw-resize;
|
|
|
|
}
|
|
|
|
}
|
2024-06-21 20:47:47 +08:00
|
|
|
|
2024-06-26 20:52:00 +08:00
|
|
|
.editor-table-marker {
|
2024-06-21 20:47:47 +08:00
|
|
|
position: fixed;
|
|
|
|
background-color: var(--editor-color-primary);
|
|
|
|
z-index: 99;
|
|
|
|
user-select: none;
|
|
|
|
opacity: 0;
|
2024-06-26 20:52:00 +08:00
|
|
|
&:hover, &.active {
|
2024-06-21 20:47:47 +08:00
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.editor-table-marker-column {
|
|
|
|
width: 4px;
|
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
.editor-table-marker-row {
|
|
|
|
height: 4px;
|
|
|
|
cursor: row-resize;
|
2024-06-23 18:36:48 +08:00
|
|
|
}
|
|
|
|
|
2024-07-03 00:34:03 +08:00
|
|
|
.editor-code-block-wrap {
|
|
|
|
user-select: none;
|
|
|
|
> * {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-23 18:36:48 +08:00
|
|
|
// Editor theme styles
|
|
|
|
.editor-theme-bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.editor-theme-italic {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
.editor-theme-strikethrough {
|
|
|
|
text-decoration-line: line-through;
|
|
|
|
}
|
|
|
|
.editor-theme-underline {
|
|
|
|
text-decoration-line: underline;
|
|
|
|
}
|
|
|
|
.editor-theme-underline-strikethrough {
|
|
|
|
text-decoration: underline line-through;
|
2024-06-21 20:47:47 +08:00
|
|
|
}
|