Files
ThreadNet-Web/src/skins/vector/css/matrix-react-sdk/structures/RoomView.css
T

349 lines
6.4 KiB
CSS
Raw Normal View History

/*
2016-01-07 04:17:56 +00:00
Copyright 2015, 2016 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
2015-10-24 20:19:54 +01:00
-webkit-flex: 0 0 83px;
flex: 0 0 83px;
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-25 23:13:03 +00:00
border: 2px #e1dddd solid;
border-bottom: none;
position: absolute;
2015-10-25 23:13:03 +00:00
top: 83px;
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-12-13 04:08:35 +00: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
2015-11-13 01:19:40 +00:00
width: 100%;
overflow-y: auto;
2015-07-13 01:51:24 +01:00
}
.mx_RoomView_messageListWrapper {
max-width: 960px;
margin: auto;
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
}
.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-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;
margin-left: 63px;
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;
}
2016-01-07 11:22:41 +00:00
hr.mx_RoomView_myReadMarker {
border-top: solid 1px #76cfa6;
border-bottom: none;
}
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%;
-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;
min-height: 36px;
2015-10-23 02:32:49 +01:00
}
.mx_RoomView_statusAreaBox_line {
border-top: 1px solid #eee;
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;
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;
cursor: pointer;
}
.mx_RoomView_voipButton object {
pointer-events: none;
}
.mx_RoomView_unreadMessagesBar {
2015-10-25 02:09:16 +00:00
color: #ff0064;
cursor: pointer;
2015-10-25 02:09:16 +00:00
margin-top: 5px;
}
.mx_RoomView_unreadMessagesBar img {
2015-10-25 02:09:16 +00:00
padding-left: 10px;
padding-right: 22px;
2015-10-25 02:09:16 +00:00
vertical-align: middle;
}
2015-12-14 23:38:24 +00:00
.mx_RoomView_callBar {
margin-top: 5px;
}
.mx_RoomView_callBar img {
padding-left: 13px;
padding-right: 30px;
vertical-align: middle;
}
2015-11-05 14:52:44 +00:00
.mx_RoomView_connectionLostBar {
margin-top: 19px;
height: 58px;
2015-11-05 14:52:44 +00:00
}
.mx_RoomView_connectionLostBar img {
padding-left: 10px;
padding-right: 22px;
vertical-align: middle;
float: left;
}
.mx_RoomView_connectionLostBar_title {
color: #ff0064;
2015-11-05 14:52:44 +00:00
}
.mx_RoomView_connectionLostBar_desc {
color: #454545;
font-size: 13px;
opacity: 0.5;
2015-11-05 14:52:44 +00:00
}
2015-11-05 15:59:03 +00:00
.mx_RoomView_resend_link {
color: #454545 ! important;
text-decoration: underline ! important;
2015-11-05 15:59:03 +00:00
cursor: pointer;
}
2015-12-22 00:47:33 +00:00
.mx_RoomView_tabCompleteBar {
margin-top: 5px;
margin-left: 65px;
color: #4a4a4a;
}
.mx_RoomView_typingBar {
2015-12-15 15:59:40 +00:00
margin-top: 6px;
margin-left: 65px;
2015-10-23 11:19:13 +01:00
color: #4a4a4a;
opacity: 0.5;
}
2015-12-22 00:47:33 +00:00
.mx_RoomView_tabCompleteImage,
2015-10-23 11:19:13 +01:00
.mx_RoomView_typingImage {
display: inline;
2015-12-22 00:47:33 +00:00
margin-left: -50px;
2015-10-23 11:19:13 +01:00
margin-top: -4px;
float: left;
}
2015-12-22 00:47:33 +00:00
.mx_RoomView_tabCompleteImage {
opacity: 0.5;
}
2015-12-15 15:59:40 +00:00
.mx_RoomView_typingText {
overflow-y: hidden;
display: block;
}
2015-12-22 00:47:33 +00:00
.mx_RoomView_tabCompleteWrapper {
display: flex;
display: -webkit-flex;
height: 24px;
}
.mx_RoomView_tabCompleteWrapper .mx_TabCompleteBar {
flex: 1 1 auto;
-webkit-flex: 1 1 auto;
}
.mx_RoomView_tabCompleteEol {
flex: 0 0 auto;
-webkit-flex: 0 0 auto;
color: #76CFA6;
}
.mx_RoomView_tabCompleteEol object {
2015-12-22 00:47:33 +00:00
vertical-align: middle;
margin-right: 8px;
margin-top: -2px;
}
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-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
.mx_RoomView_ongoingConfCallNotification {
width: 100%;
text-align: center;
background-color: #ff0064;
color: #fff;
font-weight: bold;
padding: 6px 0;
}