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

Lexical: Added base table support and started resize handling

This commit is contained in:
Dan Brown
2024-06-21 13:47:47 +01:00
parent 13d970c7ce
commit f47f7dd9d2
7 changed files with 115 additions and 0 deletions

View File

@ -146,3 +146,23 @@
cursor: sw-resize;
}
}
.editor-table-marker-row,
.editor-table-marker-column {
position: fixed;
background-color: var(--editor-color-primary);
z-index: 99;
user-select: none;
opacity: 0;
&:hover {
opacity: 0.4;
}
}
.editor-table-marker-column {
width: 4px;
cursor: col-resize;
}
.editor-table-marker-row {
height: 4px;
cursor: row-resize;
}