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