feat: v4.7.0 - resize handle cursor col-resize (explicit div, z-index), grabbing cursor during drag
Some checks failed
Build & Push Docker / build (push) Has been cancelled

This commit is contained in:
2026-02-20 19:21:55 +01:00
parent d38d7588f3
commit 5d712494a5
4 changed files with 21 additions and 17 deletions

View File

@@ -872,23 +872,22 @@ body {
line-height: 1.2;
}
/* Resize handle on right edge */
.block-el::after {
content: '';
/* Resize handle on right edge — explicit element, always correct cursor */
.block-resize-handle {
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 6px;
cursor: ew-resize;
background: rgba(255,255,255,0.2);
width: 8px;
cursor: col-resize;
z-index: 5;
border-radius: 0 4px 4px 0;
opacity: 0;
transition: opacity 0.12s;
background: transparent;
transition: background 0.12s;
}
.block-el:hover::after {
opacity: 1;
.block-el:hover .block-resize-handle {
background: rgba(255,255,255,0.25);
}
/* Duration row (hours + minutes) */