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

Fixing resizing anchor highlight

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-06-15 09:47:34 +03:00
parent 9593cc1323
commit 5a1d5a928f

View File

@ -38,13 +38,13 @@ body.resizing {
height: 100%; height: 100%;
margin-left: 50%; margin-left: 50%;
background: transparent; background: transparent;
transition: all 0.2s 0s; transition: background 0.2s 0s;
} }
&:hover { &:hover {
&::after { &::after {
background: var(--blue); background: var(--blue);
transition: all 0.2s 0.5s; transition: background 0.2s 0.5s;
} }
} }
@ -58,8 +58,20 @@ body.resizing {
cursor: row-resize; cursor: row-resize;
height: $dimension; height: $dimension;
&.leading { &::after {
top: -$dimension / 2; height: 3px;
width: 100%;
margin-left: 0;
}
.resizing & {
$expandedHeight: 200px;
height: $expandedHeight;
margin-top: -$expandedHeight / 2;
&::after {
margin-top: $expandedHeight / 2;
}
} }
&.trailing { &.trailing {