2021-03-03 03:32:13 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-03-03 03:32:13 +08:00
|
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
|
|
|
|
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.
|
2021-03-03 03:32:13 +08:00
|
|
|
*/
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallViewForRoom {
|
2021-03-03 03:32:13 +08:00
|
|
|
overflow: hidden;
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
.mx_LegacyCallViewForRoom_ResizeWrapper {
|
2021-03-03 03:32:13 +08:00
|
|
|
display: flex;
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
&:hover .mx_LegacyCallViewForRoom_ResizeHandle {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Need to use important to override element style attributes */
|
|
|
|
/* set by re-resizable */
|
2021-03-03 03:32:13 +08:00
|
|
|
width: 100% !important;
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
height: 4px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 64px;
|
|
|
|
|
2021-08-12 17:27:12 +08:00
|
|
|
background-color: $primary-content;
|
2021-03-03 03:32:13 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|