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:
@ -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;
|
||||
}
|
Reference in New Issue
Block a user