2015-07-13 02:51:24 +02:00
|
|
|
/*
|
|
|
|
Copyright 2015 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;
|
2015-07-13 15:56:58 +02:00
|
|
|
|
2015-07-15 05:16:38 +02:00
|
|
|
-webkit-flex: 0 0 66px;
|
|
|
|
flex: 0 0 66px;
|
|
|
|
}
|
2015-07-13 02:51:24 +02:00
|
|
|
|
2015-07-15 05:16:38 +02:00
|
|
|
/** Fixme - factor this out with the main header **/
|
2015-07-13 02:51:24 +02:00
|
|
|
|
2015-07-15 05:16:38 +02:00
|
|
|
.mx_RightPanel_headerButtonGroup {
|
|
|
|
margin-top: 18px;
|
|
|
|
height: 48px;
|
|
|
|
float: right;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 48px;
|
|
|
|
border: 1px solid #e1e1e1;
|
|
|
|
margin-right: 22px;
|
2015-07-13 02:51:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel_headerButton {
|
2015-07-15 05:16:38 +02:00
|
|
|
height: 48px;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
2015-07-13 02:51:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RightPanel .mx_MemberList {
|
|
|
|
-webkit-box-ordinal-group: 2;
|
|
|
|
-moz-box-ordinal-group: 2;
|
|
|
|
-ms-flex-order: 2;
|
|
|
|
-webkit-order: 2;
|
|
|
|
order: 2;
|
|
|
|
}
|