1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-09 10:22:51 +03:00

Lexical: Added color picker controls

This commit is contained in:
Dan Brown
2024-06-12 19:51:42 +01:00
parent a475cf68bf
commit 9e43e03db4
14 changed files with 367 additions and 173 deletions

View File

@@ -79,6 +79,22 @@
font-weight: 700;
}
// 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);
}
// In-editor elements
.editor-image-wrap {
position: relative;