2015-06-23 17:41:25 +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.
|
|
|
|
*/
|
|
|
|
|
2015-06-12 18:34:17 +02:00
|
|
|
.mx_RoomHeader {
|
|
|
|
}
|
2015-07-13 02:51:24 +02:00
|
|
|
|
|
|
|
.mx_RoomHeader_wrapper {
|
|
|
|
max-width: 720px;
|
|
|
|
margin: auto;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_leftRow {
|
|
|
|
display: table-row;
|
2015-07-13 03:02:56 +02:00
|
|
|
margin-left: 12px;
|
2015-07-13 02:51:24 +02:00
|
|
|
height: 50px;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_rightRow {
|
|
|
|
display: table-row;
|
|
|
|
height: 50px;
|
2015-07-13 03:02:56 +02:00
|
|
|
margin-right: -26px;
|
2015-07-13 02:51:24 +02:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_name {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
height: 50px;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 20px;
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_avatar {
|
|
|
|
display: table-cell;
|
|
|
|
height: 50px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_button {
|
|
|
|
height: 50px;
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|