mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
31 lines
498 B
SCSS
Vendored
31 lines
498 B
SCSS
Vendored
.component-resize-line {
|
|
cursor: col-resize;
|
|
|
|
&.resizing {
|
|
&:after {
|
|
content: '';
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 99999;
|
|
cursor: col-resize;
|
|
}
|
|
}
|
|
|
|
&.bottom {
|
|
cursor: row-resize;
|
|
|
|
&:after {
|
|
cursor: row-resize;
|
|
}
|
|
}
|
|
}
|
|
|
|
body.window-portrait {
|
|
.component-resize-line {
|
|
display: none;
|
|
}
|
|
}
|