Files
ThreadNet-Web/src/skins/vector/css/organisms/RoomView.css
T

264 lines
4.9 KiB
CSS
Raw Normal View History

/*
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 {
2015-06-15 15:50:24 +01:00
word-wrap: break-word;
2015-07-07 02:10:10 +01:00
position: relative;
2015-06-17 15:46:04 +01:00
2015-07-07 02:10:10 +01:00
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
2015-07-13 01:51:24 +01:00
display: flex;
2015-07-07 02:10:10 +01:00
width: 100%;
2015-07-13 01:51:24 +01:00
flex-direction: column;
-webkit-flex-direction: column;
2015-07-07 02:10:10 +01:00
}
2015-07-13 01:51:24 +01:00
.mx_RoomView .mx_RoomHeader {
2015-07-07 02:10:10 +01:00
-webkit-box-ordinal-group: 1;
-moz-box-ordinal-group: 1;
-ms-flex-order: 1;
-webkit-order: 1;
order: 1;
2015-07-13 01:51:24 +01:00
-webkit-flex: 0 0 88px;
flex: 0 0 88px;
2015-07-07 02:10:10 +01:00
}
.mx_RoomView_fileDropTarget {
min-width: 0px;
2015-10-23 02:32:49 +01:00
max-width: 960px;
width: 100%;
font-size: 20px;
text-align: center;
pointer-events: none;
padding-left: 12px;
padding-right: 12px;
margin-left: -12px;
-webkit-border-top-left-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background-color: rgba(255, 255, 255, 0.9);
2015-10-23 02:32:49 +01:00
border: 2px dashed #76cfa6;
border-bottom: none;
position: absolute;
top: 88px;
bottom: 0px;
z-index: 3000;
}
.mx_RoomView_fileDropTargetLabel {
top: 50%;
width: 100%;
margin-top: -50px;
position: absolute;
}
2015-07-13 01:51:24 +01:00
.mx_RoomView_auxPanel {
2015-07-07 02:10:10 +01:00
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
-ms-flex-order: 2;
-webkit-order: 2;
order: 2;
2015-07-21 23:19:24 -07:00
min-width: 0px;
2015-10-23 02:32:49 +01:00
max-width: 960px;
2015-07-13 01:51:24 +01:00
width: 100%;
2015-07-15 04:16:38 +01:00
margin: auto;
2015-07-21 15:43:54 -07:00
overflow: auto;
2015-10-23 02:32:49 +01:00
border-bottom: 1px solid #eee;
2015-07-21 23:19:24 -07:00
2015-07-21 15:43:54 -07:00
-webkit-flex: 0 0 auto;
flex: 0 0 auto;
}
2015-07-13 01:51:24 +01:00
.mx_RoomView_messagePanel {
-webkit-box-ordinal-group: 3;
-moz-box-ordinal-group: 3;
-ms-flex-order: 3;
-webkit-order: 3;
order: 3;
2015-07-23 00:30:09 -07:00
-webkit-flex: 1 1 0;
flex: 1 1 0;
2015-07-23 00:30:09 -07:00
width: 100%;
2015-07-13 01:51:24 +01:00
overflow-y: auto;
2015-07-13 01:51:24 +01:00
}
.mx_RoomView_messageListWrapper {
2015-10-23 02:32:49 +01:00
max-width: 960px;
2015-07-13 01:51:24 +01:00
margin: auto;
}
.mx_RoomView_MessageList {
width: 100%;
list-style-type: none;
padding: 0px;
2015-07-13 01:51:24 +01:00
}
.mx_RoomView_MessageList li {
clear: both;
}
2015-07-17 00:12:36 +01:00
.mx_RoomView_MessageList h2 {
clear: both;
margin-top: 32px;
margin-bottom: 8px;
2015-10-23 02:32:49 +01:00
margin-left: 54px;
2015-07-17 00:12:36 +01:00
padding-bottom: 6px;
2015-10-23 02:32:49 +01:00
border-bottom: 1px solid #eee;
2015-07-17 00:12:36 +01:00
}
2015-07-13 01:51:24 +01:00
.mx_RoomView_invitePrompt {
2015-07-23 11:01:28 -07:00
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
-ms-flex-order: 2;
-webkit-order: 2;
order: 2;
min-width: 0px;
2015-10-23 02:32:49 +01:00
max-width: 960px;
2015-07-23 11:01:28 -07:00
width: 100%;
margin: auto;
margin-top: 12px;
margin-bottom: 12px;
}
2015-07-18 01:21:56 +01:00
.mx_RoomView_statusArea {
2015-07-13 01:51:24 +01:00
-webkit-box-ordinal-group: 4;
-moz-box-ordinal-group: 4;
-ms-flex-order: 4;
-webkit-order: 4;
order: 4;
2015-07-18 01:21:56 +01:00
width: 100%;
2015-10-23 02:32:49 +01:00
-webkit-flex: 0 0 36px;
flex: 0 0 36px;
2015-07-18 01:21:56 +01:00
}
.mx_RoomView_statusAreaBox {
2015-10-23 02:32:49 +01:00
max-width: 960px;
2015-07-20 15:07:51 +01:00
margin: auto;
2015-10-23 02:32:49 +01:00
}
.mx_RoomView_statusAreaBox_line {
border-top: 1px solid #eee;
margin-left: 54px;
height: 1px;
2015-07-18 01:21:56 +01:00
}
.mx_RoomView_unreadMessagesBar {
margin-top: 13px;
color: #fff;
font-weight: bold;
background-color: #ff0064;
border-radius: 30px;
height: 30px;
line-height: 30px;
cursor: pointer;
}
.mx_RoomView_unreadMessagesBar img {
padding-left: 22px;
padding-right: 22px;
}
.mx_RoomView_typingBar {
2015-10-23 11:19:13 +01:00
margin-top: 10px;
margin-left: 54px;
color: #4a4a4a;
opacity: 0.5;
}
2015-10-23 11:19:13 +01:00
.mx_RoomView_typingImage {
display: inline;
margin-left: -38px;
margin-top: -4px;
float: left;
}
2015-07-18 01:21:56 +01:00
.mx_RoomView .mx_MessageComposer {
-webkit-box-ordinal-group: 5;
-moz-box-ordinal-group: 5;
-ms-flex-order: 5;
-webkit-order: 5;
order: 5;
2015-07-07 02:10:10 +01:00
width: 100%;
2015-10-23 02:32:49 +01:00
-webkit-flex: 0 0 70px;
flex: 0 0 70px;
2015-07-15 04:21:32 +01:00
margin-right: 2px;
2015-06-17 15:46:04 +01:00
}
2015-07-19 22:02:04 -04:00
.mx_RoomView_uploadProgressOuter {
width: 100%;
2015-10-11 18:42:54 +01:00
height: 4px;
2015-10-23 17:43:40 +01:00
margin-left: 54px;
margin-top: -1px;
2015-07-19 22:02:04 -04:00
}
.mx_RoomView_uploadProgressInner {
2015-10-23 02:32:49 +01:00
background-color: #76cfa6;
2015-10-11 18:42:54 +01:00
height: 4px;
}
.mx_RoomView_uploadFilename {
2015-10-23 17:43:40 +01:00
margin-top: 5px;
2015-10-11 18:42:54 +01:00
margin-left: 56px;
2015-10-23 17:43:40 +01:00
opacity: 0.5;
color: #4a4a4a;
2015-10-11 18:42:54 +01:00
}
2015-10-11 22:51:00 +01:00
.mx_RoomView_uploadIcon {
float: left;
2015-10-23 17:43:40 +01:00
margin-top: 1px;
margin-left: 14px;
2015-10-11 22:51:00 +01:00
}
.mx_RoomView_uploadCancel {
float: right;
2015-10-23 17:43:40 +01:00
margin-top: 5px;
2015-10-11 22:51:00 +01:00
margin-right: 10px;
}
2015-10-11 18:42:54 +01:00
.mx_RoomView_uploadBytes {
float: right;
2015-10-23 17:43:40 +01:00
margin-top: 5px;
margin-right: 30px;
color: #76cfa6;
2015-07-19 22:02:04 -04:00
}
.mx_RoomView_ongoingConfCallNotification {
width: 100%;
text-align: center;
background-color: #ff0064;
color: #fff;
font-weight: bold;
padding: 6px;
}