1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-31 15:24:31 +03:00

Lexical: Added table creator UI

This commit is contained in:
Dan Brown
2024-06-21 16:18:44 +01:00
parent f47f7dd9d2
commit ac01c62e6e
5 changed files with 119 additions and 5 deletions

View File

@ -100,6 +100,22 @@
z-index: 3;
box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.25);
}
.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;
}
// In-editor elements
.editor-image-wrap {