149 lines
2.8 KiB
CSS
149 lines
2.8 KiB
CSS
/*
|
|
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_RoomView {
|
|
word-wrap: break-word;
|
|
position: relative;
|
|
|
|
display: -webkit-box;
|
|
display: -moz-box;
|
|
display: -ms-flexbox;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
width: 100%;
|
|
|
|
flex-direction: column;
|
|
-webkit-flex-direction: column;
|
|
}
|
|
|
|
.mx_RoomView .mx_RoomHeader {
|
|
-webkit-box-ordinal-group: 1;
|
|
-moz-box-ordinal-group: 1;
|
|
-ms-flex-order: 1;
|
|
-webkit-order: 1;
|
|
order: 1;
|
|
|
|
-webkit-flex: 0 0 88px;
|
|
flex: 0 0 88px;
|
|
}
|
|
|
|
.mx_RoomView_auxPanel {
|
|
-webkit-box-ordinal-group: 2;
|
|
-moz-box-ordinal-group: 2;
|
|
-ms-flex-order: 2;
|
|
-webkit-order: 2;
|
|
order: 2;
|
|
|
|
max-width: 720px;
|
|
width: 100%;
|
|
margin: auto;
|
|
|
|
overflow: scroll;
|
|
-webkit-flex: 0 0 auto;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.mx_RoomView_messagePanel {
|
|
-webkit-box-ordinal-group: 3;
|
|
-moz-box-ordinal-group: 3;
|
|
-ms-flex-order: 3;
|
|
-webkit-order: 3;
|
|
order: 3;
|
|
|
|
width: 100%;
|
|
flex: 1 1 0;
|
|
margin-top: 18px;
|
|
margin-bottom: 18px;
|
|
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.mx_RoomView_messageListWrapper {
|
|
max-width: 720px;
|
|
margin: auto;
|
|
}
|
|
|
|
.mx_RoomView_MessageList {
|
|
width: 100%;
|
|
}
|
|
|
|
.mx_RoomView_MessageList h2 {
|
|
clear: both;
|
|
margin-top: 32px;
|
|
margin-bottom: 8px;
|
|
padding-bottom: 6px;
|
|
border-bottom: 1px solid #a8dbf3;
|
|
}
|
|
|
|
.mx_RoomView_invitePrompt {
|
|
}
|
|
|
|
.mx_RoomView_statusArea {
|
|
-webkit-box-ordinal-group: 4;
|
|
-moz-box-ordinal-group: 4;
|
|
-ms-flex-order: 4;
|
|
-webkit-order: 4;
|
|
order: 4;
|
|
|
|
width: 100%;
|
|
-webkit-flex: 0 0 58px;
|
|
flex: 0 0 58px;
|
|
}
|
|
|
|
.mx_RoomView_statusAreaBox {
|
|
max-width: 720px;
|
|
margin: auto;
|
|
border-top: 1px solid #a8dbf3;
|
|
}
|
|
|
|
.mx_RoomView_typingBar {
|
|
margin-top: 17px;
|
|
margin-left: 56px;
|
|
color: #818794;
|
|
}
|
|
|
|
.mx_RoomView_typingBar img {
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
margin-left: -64px;
|
|
margin-top: -7px;
|
|
float: left;
|
|
}
|
|
|
|
.mx_RoomView .mx_MessageComposer {
|
|
-webkit-box-ordinal-group: 5;
|
|
-moz-box-ordinal-group: 5;
|
|
-ms-flex-order: 5;
|
|
-webkit-order: 5;
|
|
order: 5;
|
|
|
|
width: 100%;
|
|
-webkit-flex: 0 0 63px;
|
|
flex: 0 0 63px;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.mx_RoomView_uploadProgressOuter {
|
|
width: 100%;
|
|
background-color: black;
|
|
height: 5px;
|
|
}
|
|
|
|
.mx_RoomView_uploadProgressInner {
|
|
background-color: blue;
|
|
height: 5px;
|
|
}
|