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-12-06 15:10:52 +03: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 12:19:51 +03:00
height : calc ( 100 vh - 51 px ) ; // 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-12-06 15:10:52 +03:00
left : 50 % ;
transform : translate ( - 50 % , - 50 % ) ;
2020-07-15 02:20:39 +03:00
2021-11-29 13:56:09 +03:00
height : 64 px ; // to match width of the ones on roomlist
width : 4 px ;
border-radius : 4 px ;
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
}
}