2015-06-23 16:41:25 +01:00
|
|
|
/*
|
2016-01-07 04:17:56 +00:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-06-23 16:41:25 +01:00
|
|
|
|
|
|
|
|
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 17:34:17 +01:00
|
|
|
.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-21 15:01:05 -07:00
|
|
|
|
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
|
|
|
|
2016-04-14 21:43:49 +01:00
|
|
|
-webkit-flex: 0 0 70px;
|
|
|
|
|
flex: 0 0 70px;
|
2015-07-07 02:10:10 +01:00
|
|
|
}
|
|
|
|
|
|
2015-08-14 13:20:39 +01:00
|
|
|
.mx_RoomView_fileDropTarget {
|
|
|
|
|
min-width: 0px;
|
2015-10-23 02:32:49 +01:00
|
|
|
max-width: 960px;
|
2015-08-14 13:20:39 +01:00
|
|
|
width: 100%;
|
2016-01-15 15:26:00 +00:00
|
|
|
font-size: 18px;
|
2015-08-14 13:20:39 +01:00
|
|
|
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-25 23:13:03 +00:00
|
|
|
border: 2px #e1dddd solid;
|
2015-08-14 13:20:39 +01:00
|
|
|
border-bottom: none;
|
|
|
|
|
position: absolute;
|
2016-04-14 21:43:49 +01:00
|
|
|
top: 70px;
|
2015-08-14 13:20:39 +01:00
|
|
|
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
|
|
|
|
2015-08-12 01:30:05 +01:00
|
|
|
overflow: auto;
|
2016-04-14 21:10:55 +01:00
|
|
|
border-bottom: 1px solid #e5e5e5;
|
2015-07-21 23:19:24 -07:00
|
|
|
|
2015-12-13 04:08:35 +00:00
|
|
|
-webkit-flex: 0 0 auto;
|
|
|
|
|
flex: 0 0 auto;
|
2015-06-12 17:34:17 +01:00
|
|
|
}
|
2015-06-16 10:41:05 +01:00
|
|
|
|
2016-02-15 17:22:55 +00:00
|
|
|
.mx_RoomView_topUnreadMessagesBar {
|
2015-07-13 01:51:24 +01:00
|
|
|
-webkit-box-ordinal-group: 3;
|
|
|
|
|
-moz-box-ordinal-group: 3;
|
|
|
|
|
-ms-flex-order: 3;
|
|
|
|
|
-webkit-order: 3;
|
|
|
|
|
order: 3;
|
2016-02-15 17:22:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_RoomView_messagePanel {
|
|
|
|
|
-webkit-box-ordinal-group: 4;
|
|
|
|
|
-moz-box-ordinal-group: 4;
|
|
|
|
|
-ms-flex-order: 4;
|
|
|
|
|
-webkit-order: 4;
|
|
|
|
|
order: 4;
|
2015-07-13 01:51:24 +01:00
|
|
|
|
2015-07-23 00:30:09 -07:00
|
|
|
-webkit-flex: 1 1 0;
|
2015-07-21 15:59:11 -07:00
|
|
|
flex: 1 1 0;
|
2015-07-23 00:30:09 -07:00
|
|
|
|
2015-11-13 01:19:40 +00:00
|
|
|
width: 100%;
|
2015-11-13 00:46:50 +00:00
|
|
|
|
2015-10-11 13:54:38 +01:00
|
|
|
overflow-y: auto;
|
2015-07-13 01:51:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_RoomView_messageListWrapper {
|
2015-11-13 02:29:18 +00:00
|
|
|
max-width: 960px;
|
|
|
|
|
margin: auto;
|
2016-03-15 18:38:24 +00:00
|
|
|
|
2016-01-05 18:49:21 +00:00
|
|
|
min-height: 100%;
|
|
|
|
|
|
|
|
|
|
display: -webkit-box;
|
|
|
|
|
display: -moz-box;
|
|
|
|
|
display: -ms-flexbox;
|
|
|
|
|
display: -webkit-flex;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
|
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
-webkit-justify-content: flex-end;
|
2015-07-13 01:51:24 +01:00
|
|
|
}
|
|
|
|
|
|
2016-03-18 16:24:48 +00:00
|
|
|
.mx_RoomView_searchResultsPanel .mx_RoomView_messageListWrapper {
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
-webkit-justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-13 01:51:24 +01:00
|
|
|
.mx_RoomView_MessageList {
|
|
|
|
|
width: 100%;
|
2015-08-10 15:17:15 +01:00
|
|
|
list-style-type: none;
|
|
|
|
|
padding: 0px;
|
2015-07-13 01:51:24 +01:00
|
|
|
}
|
|
|
|
|
|
2015-10-11 18:21:36 +01:00
|
|
|
.mx_RoomView_MessageList li {
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-29 03:20:19 +00:00
|
|
|
.mx_RoomView_MessageList h2 {
|
2015-07-17 00:12:36 +01:00
|
|
|
clear: both;
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 8px;
|
2015-11-08 12:48:23 +00:00
|
|
|
margin-left: 63px;
|
2015-07-17 00:12:36 +01:00
|
|
|
padding-bottom: 6px;
|
2016-04-14 21:10:55 +01:00
|
|
|
border-bottom: 1px solid #e5e5e5;
|
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-06-22 11:42:09 +01:00
|
|
|
}
|
|
|
|
|
|
2016-01-09 00:09:11 +00:00
|
|
|
li.mx_RoomView_myReadMarker_container {
|
|
|
|
|
height: 0px;
|
|
|
|
|
margin: 0px;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
border: 0px;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-07 11:22:41 +00:00
|
|
|
hr.mx_RoomView_myReadMarker {
|
|
|
|
|
border-top: solid 1px #76cfa6;
|
2016-01-11 10:52:29 +00:00
|
|
|
border-bottom: solid 1px #76cfa6;
|
2016-01-12 14:20:05 +00:00
|
|
|
margin-top: 0px;
|
2016-01-14 16:45:13 +00:00
|
|
|
position: relative;
|
|
|
|
|
top: 5px;
|
2016-01-07 11:22:41 +00:00
|
|
|
}
|
|
|
|
|
|
2015-07-18 01:21:56 +01:00
|
|
|
.mx_RoomView_statusArea {
|
2016-02-15 17:22:55 +00:00
|
|
|
-webkit-box-ordinal-group: 5;
|
|
|
|
|
-moz-box-ordinal-group: 5;
|
|
|
|
|
-ms-flex-order: 5;
|
|
|
|
|
-webkit-order: 5;
|
|
|
|
|
order: 5;
|
2015-07-13 01:51:24 +01:00
|
|
|
|
2015-07-18 01:21:56 +01:00
|
|
|
width: 100%;
|
2015-11-09 00:13:25 +00:00
|
|
|
-webkit-flex: 0 0 auto;
|
|
|
|
|
flex: 0 0 auto;
|
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;
|
2016-09-01 00:14:51 +01:00
|
|
|
min-height: 50px;
|
2015-10-23 02:32:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_RoomView_statusAreaBox_line {
|
2016-04-14 19:11:58 +01:00
|
|
|
margin-left: 65px;
|
2016-04-14 21:10:55 +01:00
|
|
|
border-top: 1px solid #e5e5e5;
|
2015-10-23 02:32:49 +01:00
|
|
|
height: 1px;
|
2015-07-18 01:21:56 +01:00
|
|
|
}
|
|
|
|
|
|
2015-12-14 23:38:24 +00:00
|
|
|
.mx_RoomView_inCall .mx_RoomView_statusAreaBox_line {
|
|
|
|
|
border-top: 1px hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_RoomView_inCall .mx_MessageComposer_wrapper {
|
|
|
|
|
border-top: 2px hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_RoomView_inCall .mx_RoomView_statusAreaBox {
|
2015-12-22 00:47:33 +00:00
|
|
|
background-color: #76CFA6;
|
2015-12-14 23:38:24 +00:00
|
|
|
color: #fff;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mx_RoomView_voipChevron {
|
|
|
|
|
position: absolute;
|
2016-01-05 03:34:25 +00:00
|
|
|
bottom: -11px;
|
2015-12-14 23:38:24 +00:00
|
|
|
right: 11px;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-15 00:01:32 +00:00
|
|
|
.mx_RoomView_voipButton {
|
2015-12-14 23:38:24 +00:00
|
|
|
float: right;
|
|
|
|
|
margin-right: 13px;
|
2016-09-01 00:14:51 +01:00
|
|
|
margin-top: 10px;
|
2015-12-14 23:38:24 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-03 22:30:14 +00:00
|
|
|
.mx_RoomView_voipButton object {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-18 01:21:56 +01:00
|
|
|
.mx_RoomView .mx_MessageComposer {
|
2016-02-15 17:22:55 +00:00
|
|
|
-webkit-box-ordinal-group: 6;
|
|
|
|
|
-moz-box-ordinal-group: 6;
|
|
|
|
|
-ms-flex-order: 6;
|
|
|
|
|
-webkit-order: 6;
|
|
|
|
|
order: 6;
|
2015-07-18 01:21:56 +01:00
|
|
|
|
2015-07-07 02:10:10 +01:00
|
|
|
width: 100%;
|
2015-12-21 23:16:44 +00:00
|
|
|
-webkit-flex: 0 0 auto;
|
|
|
|
|
flex: 0 0 auto;
|
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
|
|
|
|
2015-09-15 14:18:17 +01:00
|
|
|
.mx_RoomView_ongoingConfCallNotification {
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: #ff0064;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: bold;
|
2015-10-29 15:57:31 +00:00
|
|
|
padding: 6px 0;
|
2016-03-18 16:16:13 +00:00
|
|
|
cursor: pointer;
|
2015-10-29 15:57:31 +00:00
|
|
|
}
|