2019-02-20 19:45:55 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2019-2024 New Vector Ltd.
|
2019-02-20 19:45:55 +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.
|
2019-02-20 19:45:55 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_MainSplit {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
min-width: 0;
|
2021-02-26 18:19:45 +08:00
|
|
|
min-height: 0;
|
2021-02-26 18:46:54 +08:00
|
|
|
height: 100%;
|
2019-02-20 19:45:55 +08:00
|
|
|
}
|
2019-03-27 00:13:02 +08:00
|
|
|
|
2020-07-16 09:08:24 +08:00
|
|
|
.mx_MainSplit > .mx_RightPanel_ResizeWrapper {
|
2023-05-04 23:19:55 +08:00
|
|
|
&:hover .mx_ResizeHandle--horizontal::before {
|
2021-11-29 18:56:09 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2021-12-06 20:10:52 +08:00
|
|
|
left: 50%;
|
2023-10-20 21:30:37 +08:00
|
|
|
transform: translate(-150%, -50%);
|
2020-07-15 07:20:39 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
height: 64px; /* to match width of the ones on roomlist */
|
2021-11-29 18:56:09 +08:00
|
|
|
width: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
content: "";
|
2020-07-15 07:20:39 +08:00
|
|
|
|
2021-08-12 17:27:12 +08:00
|
|
|
background-color: $primary-content;
|
2021-02-26 18:46:54 +08:00
|
|
|
opacity: 0.8;
|
2020-07-15 07:20:39 +08:00
|
|
|
}
|
|
|
|
}
|