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
Some checks failed
Build & Push Docker / build (push) Has been cancelled
This commit is contained in:
@@ -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) */
|
||||
|
||||
Reference in New Issue
Block a user