2024-12-01 20:39:33 +00:00
|
|
|
@use '../z-index';
|
2024-12-01 20:05:08 +00:00
|
|
|
|
2024-07-29 12:37:23 +00:00
|
|
|
[data-resize-handle] {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&[data-panel-group-direction='horizontal']:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: -6px;
|
|
|
|
right: -5px;
|
2024-12-01 20:05:08 +00:00
|
|
|
z-index: z-index.$zIndexMax;
|
2024-07-29 12:37:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&[data-panel-group-direction='vertical']:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: -5px;
|
|
|
|
bottom: -6px;
|
2024-12-01 20:05:08 +00:00
|
|
|
z-index: z-index.$zIndexMax;
|
2024-07-29 12:37:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&[data-resize-handle-state='hover']:after,
|
|
|
|
&[data-resize-handle-state='drag']:after {
|
|
|
|
background-color: #8882;
|
|
|
|
}
|
|
|
|
}
|