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