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 {
|
2015-07-14 13:11:01 +02:00
|
|
|
max-width: 720px;
|
|
|
|
margin: auto;
|
2015-07-15 05:16:38 +02:00
|
|
|
height: 86px;
|
|
|
|
margin-top: 18px;
|
|
|
|
|
|
|
|
display: -webkit-box;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: flex;
|
2015-07-13 02:51:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_leftRow {
|
2015-07-14 13:11:01 +02:00
|
|
|
display: table-row;
|
2015-07-15 05:16:38 +02:00
|
|
|
height: 48px;
|
|
|
|
|
|
|
|
-webkit-box-ordinal-group: 1;
|
|
|
|
-moz-box-ordinal-group: 1;
|
|
|
|
-ms-flex-order: 1;
|
|
|
|
-webkit-order: 1;
|
|
|
|
order: 1;
|
2015-07-15 05:26:25 +02:00
|
|
|
|
|
|
|
width: 100%;
|
2015-07-13 02:51:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_rightRow {
|
2015-07-14 13:11:01 +02:00
|
|
|
display: table-row;
|
2015-07-15 05:16:38 +02:00
|
|
|
height: 48px;
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 48px;
|
|
|
|
border: 1px solid #e1e1e1;
|
|
|
|
|
|
|
|
-webkit-box-ordinal-group: 2;
|
|
|
|
-moz-box-ordinal-group: 2;
|
|
|
|
-ms-flex-order: 2;
|
|
|
|
-webkit-order: 2;
|
|
|
|
order: 2;
|
|
|
|
|
|
|
|
-webkit-flex: 0 0 200px;
|
|
|
|
flex: 0 0 200px;
|
2015-07-13 02:51:24 +02:00
|
|
|
}
|
|
|
|
|
2015-07-15 05:16:38 +02:00
|
|
|
.mx_RoomHeader_info {
|
2015-07-14 13:11:01 +02:00
|
|
|
display: table-cell;
|
2015-07-15 05:16:38 +02:00
|
|
|
height: 48px;
|
2015-07-14 13:11:01 +02:00
|
|
|
vertical-align: middle;
|
2015-07-15 05:16:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader_name {
|
|
|
|
vertical-align: middle;
|
|
|
|
height: 28px;
|
|
|
|
color: #80cef4;
|
2015-07-14 13:11:01 +02:00
|
|
|
font-weight: 400;
|
2015-07-15 05:16:38 +02:00
|
|
|
font-size: 18px;
|
2015-07-14 13:11:01 +02:00
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 16px;
|
2015-07-13 02:51:24 +02:00
|
|
|
}
|
|
|
|
|
2015-07-15 05:16:38 +02:00
|
|
|
.mx_RoomHeader_topic {
|
|
|
|
vertical-align: bottom;
|
|
|
|
float: left;
|
|
|
|
max-height: 38px;
|
|
|
|
color: #80cef4;
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 16px;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
2015-07-13 02:51:24 +02:00
|
|
|
.mx_RoomHeader_avatar {
|
2015-07-14 13:11:01 +02:00
|
|
|
display: table-cell;
|
|
|
|
height: 50px;
|
|
|
|
vertical-align: middle;
|
2015-07-13 02:51:24 +02:00
|
|
|
}
|
|
|
|
|
2015-07-15 05:16:38 +02:00
|
|
|
.mx_RoomHeader_avatar img {
|
|
|
|
border-radius: 24px;
|
|
|
|
}
|
|
|
|
|
2015-07-13 02:51:24 +02:00
|
|
|
.mx_RoomHeader_button {
|
2015-07-15 05:16:38 +02:00
|
|
|
height: 48px;
|
2015-07-14 13:11:01 +02:00
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
2015-07-15 05:16:38 +02:00
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
2015-07-13 02:51:24 +02:00
|
|
|
}
|