2019-02-20 14:45:55 +03:00
|
|
|
/*
|
2019-02-21 12:50:30 +03:00
|
|
|
Copyright 2019 New Vector Ltd
|
2019-02-20 14:45:55 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.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 {
|
2021-11-16 17:43:18 +03:00
|
|
|
// no padding on the left. The spacing is taken care of by the main split content.
|
|
|
|
padding: 5px 5px 5px 0px;
|
2021-11-22 16:02:48 +03:00
|
|
|
margin-left: 8px;
|
2020-09-08 12:19:51 +03:00
|
|
|
height: calc(100vh - 51px); // height of .mx_RoomHeader.light-panel
|
2020-12-17 22:16:53 +03:00
|
|
|
|
2021-11-29 13:56:09 +03:00
|
|
|
&:hover .mx_ResizeHandle_horizontal::before {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2021-02-26 13:46:54 +03:00
|
|
|
transform: translate(0, -50%);
|
2020-07-15 02:20:39 +03:00
|
|
|
|
2021-11-29 13:56:09 +03:00
|
|
|
height: 64px; // to match width of the ones on roomlist
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|