forked from matrix/element-web
106 lines
2.3 KiB
CSS
106 lines
2.3 KiB
CSS
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
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_RightPanel {
|
|
position: relative;
|
|
|
|
display: -webkit-box;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
flex-direction: column;
|
|
-webkit-flex-direction: column;
|
|
}
|
|
|
|
.mx_RightPanel_header {
|
|
-webkit-box-ordinal-group: 1;
|
|
-moz-box-ordinal-group: 1;
|
|
-ms-flex-order: 1;
|
|
-webkit-order: 1;
|
|
order: 1;
|
|
|
|
border-bottom: 1px solid #e5e5e5;
|
|
margin-right: 20px;
|
|
|
|
-webkit-flex: 0 0 70px;
|
|
flex: 0 0 70px;
|
|
}
|
|
|
|
/** Fixme - factor this out with the main header **/
|
|
|
|
.mx_RightPanel_headerButtonGroup {
|
|
margin-top: 6px;
|
|
float: left;
|
|
background-color: #fff;
|
|
margin-left: -4px;
|
|
}
|
|
|
|
.mx_RightPanel_headerButton {
|
|
cursor: pointer;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.mx_RightPanel_headerButton object {
|
|
pointer-events: none;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
.mx_RightPanel_headerButton_highlight {
|
|
width: 25px;
|
|
height: 5px;
|
|
border-radius: 5px;
|
|
background-color: rgba(118, 207, 166, 0.2);
|
|
}
|
|
|
|
.mx_RightPanel_headerButton_badge {
|
|
font-size: 11px;
|
|
color: #76cfa6;
|
|
font-weight: bold;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.mx_RightPanel .mx_MemberList,
|
|
.mx_RightPanel .mx_MemberInfo,
|
|
.mx_RightPanel_blank {
|
|
-webkit-box-ordinal-group: 2;
|
|
-moz-box-ordinal-group: 2;
|
|
-ms-flex-order: 2;
|
|
-webkit-order: 2;
|
|
order: 2;
|
|
flex: 1;
|
|
-webkit-flex: 1;
|
|
}
|
|
|
|
.mx_RightPanel_footer {
|
|
-webkit-box-ordinal-group: 3;
|
|
-moz-box-ordinal-group: 3;
|
|
-ms-flex-order: 3;
|
|
-webkit-order: 3;
|
|
order: 3;
|
|
|
|
border-top: 1px solid #e5e5e5;
|
|
margin-right: 20px;
|
|
|
|
-webkit-flex: 0 0 60px;
|
|
flex: 0 0 60px;
|
|
}
|