Files
element-web/res/css/structures/_MainSplit.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
735 B
Plaintext
Raw Normal View History

2019-02-20 12:45:55 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2019-2024 New Vector Ltd.
2019-02-20 12:45:55 +01:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2019-02-20 12:45:55 +01:00
*/
.mx_MainSplit {
display: flex;
flex-direction: row;
min-width: 0;
2021-02-26 11:19:45 +01:00
min-height: 0;
2021-02-26 11:46:54 +01:00
height: 100%;
2019-02-20 12:45:55 +01:00
}
2020-07-16 02:08:24 +01:00
.mx_MainSplit > .mx_RightPanel_ResizeWrapper {
2023-05-04 15:19:55 +00:00
&:hover .mx_ResizeHandle--horizontal::before {
position: absolute;
top: 50%;
left: 50%;
2023-10-20 14:30:37 +01:00
transform: translate(-150%, -50%);
2020-07-15 00:20:39 +01:00
height: 64px; /* to match width of the ones on roomlist */
width: 4px;
border-radius: 4px;
content: "";
2020-07-15 00:20:39 +01:00
2021-08-12 11:27:12 +02:00
background-color: $primary-content;
2021-02-26 11:46:54 +01:00
opacity: 0.8;
2020-07-15 00:20:39 +01:00
}
}