2018-09-24 23:07:42 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2018-2024 New Vector Ltd.
|
2018-09-24 23:07:42 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-09-24 23:07:42 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_ResizeHandle {
|
|
|
|
cursor: row-resize;
|
|
|
|
flex: 0 0 auto;
|
2018-10-31 23:52:36 +08:00
|
|
|
z-index: 100;
|
2018-12-15 00:06:00 +08:00
|
|
|
|
2023-05-04 23:19:55 +08:00
|
|
|
&.mx_ResizeHandle--horizontal {
|
|
|
|
margin: 0 -5px;
|
|
|
|
padding: 0 5px;
|
|
|
|
cursor: col-resize;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
width: 1px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_ResizeHandle--vertical {
|
|
|
|
margin: -5px 0;
|
|
|
|
padding: 5px 0;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
height: 1px;
|
|
|
|
}
|
|
|
|
}
|
2018-12-15 00:06:00 +08:00
|
|
|
}
|