2019-02-20 11:45:55 +00:00
/ *
2019-02-21 09:50:30 +00:00
Copyright 2019 New Vector Ltd
2019-02-20 11:45:55 +00: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 10:19:45 +00:00
min-height : 0 ;
2021-02-26 10:46:54 +00:00
height : 100 % ;
2019-02-20 11:45:55 +00:00
}
2019-03-26 16:13:02 +00:00
2020-07-16 01:08:24 +00:00
. mx_MainSplit > . mx_RightPanel_ResizeWrapper {
2021-12-06 12:10:52 +00: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 09:19:51 +00:00
height : calc ( 100 vh - 51 px ) ; // height of .mx_RoomHeader.light-panel
2020-12-17 19:16:53 +00:00
2021-11-29 10:56:09 +00:00
& : hover . mx_ResizeHandle_horizontal : : before {
position : absolute ;
top : 50 % ;
2021-12-06 12:10:52 +00:00
left : 50 % ;
transform : translate ( - 50 % , - 50 % ) ;
2020-07-14 23:20:39 +00:00
2021-11-29 10:56:09 +00:00
height : 64 px ; // to match width of the ones on roomlist
width : 4 px ;
border-radius : 4 px ;
content : ' ' ;
2020-07-14 23:20:39 +00:00
2021-08-12 09:27:12 +00:00
background-color : $primary-content ;
2021-02-26 10:46:54 +00:00
opacity : 0 .8 ;
2020-07-14 23:20:39 +00:00
}
}