mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 01:54:40 +08:00
43 lines
591 B
Text
43 lines
591 B
Text
@resizableBorder: 1px solid #bbb;
|
|
|
|
.resizable {
|
|
position: relative;
|
|
}
|
|
|
|
.resizable .resizeBar {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
position: absolute;
|
|
|
|
&.top, &.bottom {
|
|
height: 5px;
|
|
width: 100%;
|
|
cursor: ns-resize;
|
|
}
|
|
|
|
&.left, &.right {
|
|
width: 5px;
|
|
height: 100%;
|
|
cursor: ew-resize;
|
|
}
|
|
|
|
&.top {
|
|
border-top: @resizableBorder;
|
|
top: 0;
|
|
}
|
|
|
|
&.bottom {
|
|
border-bottom: @resizableBorder;
|
|
bottom: 0;
|
|
}
|
|
|
|
&.left {
|
|
border-left: @resizableBorder;
|
|
left: 0;
|
|
}
|
|
|
|
&.right {
|
|
border-right: @resizableBorder;
|
|
right: 0;
|
|
}
|
|
}
|