1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Restyling resizing handle

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-08-25 12:41:16 +03:00
parent 9857358d2b
commit fccfb5eb45

View File

@ -7,16 +7,17 @@
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;
height: 100%; height: 20px;
width: 5px; width: 2px;
background: #ccc; border-radius: 3px;
background: var(--textColorDimmed);
cursor: col-resize; cursor: col-resize;
user-select: none; user-select: none;
touch-action: none; touch-action: none;
} }
.resizer.isResizing { .resizer.isResizing {
background: blue; background: var(--textColorAccent);
opacity: 1; opacity: 1;
} }
@ -27,5 +28,6 @@
*:hover > .resizer { *:hover > .resizer {
opacity: 1; opacity: 1;
background: var(--textColorTertiary)
} }
} }