2019-02-20 19:45:55 +08:00
/ *
2019-02-21 17:50:30 +08:00
Copyright 2019 New Vector Ltd
2019-02-20 19:45:55 +08: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 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 {
2021-12-06 20:10:52 +08:00
padding : $container-gap-width ;
padding-left : calc ( $container-gap-width / 2 ) ; // The resizer should be centered: only half of the gap-width is handled by the right panel. The other half by the RoomView.
2020-09-08 17:19:51 +08:00
height : calc ( 100 vh - 51 px ) ; // height of .mx_RoomHeader.light-panel
2020-12-18 03:16:53 +08:00
2021-11-29 18:56:09 +08:00
& : hover . mx_ResizeHandle_horizontal : : before {
position : absolute ;
top : 50 % ;
2021-12-06 20:10:52 +08:00
left : 50 % ;
transform : translate ( - 50 % , - 50 % ) ;
2020-07-15 07:20:39 +08:00
2021-11-29 18:56:09 +08:00
height : 64 px ; // to match width of the ones on roomlist
width : 4 px ;
border-radius : 4 px ;
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
}
}