forked from matrix/element-web
308 lines
6.1 KiB
CSS
308 lines
6.1 KiB
CSS
/*
|
|
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 {
|
|
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 70px;
|
|
flex: 0 0 70px;
|
|
}
|
|
|
|
.mx_RoomView_fileDropTarget {
|
|
min-width: 0px;
|
|
max-width: 960px;
|
|
width: 100%;
|
|
font-size: 18px;
|
|
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);
|
|
border: 2px #e1dddd solid;
|
|
border-bottom: none;
|
|
position: absolute;
|
|
top: 70px;
|
|
bottom: 0px;
|
|
z-index: 3000;
|
|
}
|
|
|
|
.mx_RoomView_fileDropTargetLabel {
|
|
top: 50%;
|
|
width: 100%;
|
|
margin-top: -50px;
|
|
position: absolute;
|
|
}
|
|
|
|
.mx_RoomView_auxPanel {
|
|
-webkit-box-ordinal-group: 2;
|
|
-moz-box-ordinal-group: 2;
|
|
-ms-flex-order: 2;
|
|
-webkit-order: 2;
|
|
order: 2;
|
|
|
|
min-width: 0px;
|
|
max-width: 960px;
|
|
width: 100%;
|
|
margin: auto;
|
|
|
|
overflow: auto;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
|
|
-webkit-flex: 0 0 auto;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.mx_RoomView_topUnreadMessagesBar {
|
|
-webkit-box-ordinal-group: 3;
|
|
-moz-box-ordinal-group: 3;
|
|
-ms-flex-order: 3;
|
|
-webkit-order: 3;
|
|
order: 3;
|
|
}
|
|
|
|
.mx_RoomView_messagePanel {
|
|
-webkit-box-ordinal-group: 4;
|
|
-moz-box-ordinal-group: 4;
|
|
-ms-flex-order: 4;
|
|
-webkit-order: 4;
|
|
order: 4;
|
|
|
|
-webkit-flex: 1 1 0;
|
|
flex: 1 1 0;
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.mx_RoomView_searchResultsPanel .mx_RoomView_messageListWrapper {
|
|
justify-content: flex-start;
|
|
-webkit-justify-content: flex-start;
|
|
}
|
|
|
|
.mx_RoomView_MessageList {
|
|
width: 100%;
|
|
list-style-type: none;
|
|
padding: 0px;
|
|
}
|
|
|
|
.mx_RoomView_MessageList li {
|
|
clear: both;
|
|
}
|
|
|
|
.mx_RoomView_MessageList h2 {
|
|
clear: both;
|
|
margin-top: 32px;
|
|
margin-bottom: 8px;
|
|
margin-left: 63px;
|
|
padding-bottom: 6px;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
}
|
|
|
|
.mx_RoomView_invitePrompt {
|
|
-webkit-box-ordinal-group: 2;
|
|
-moz-box-ordinal-group: 2;
|
|
-ms-flex-order: 2;
|
|
-webkit-order: 2;
|
|
order: 2;
|
|
|
|
min-width: 0px;
|
|
max-width: 960px;
|
|
width: 100%;
|
|
margin: auto;
|
|
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
li.mx_RoomView_myReadMarker_container {
|
|
height: 0px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 0px;
|
|
}
|
|
|
|
hr.mx_RoomView_myReadMarker {
|
|
border-top: solid 1px #76cfa6;
|
|
border-bottom: solid 1px #76cfa6;
|
|
margin-top: 0px;
|
|
position: relative;
|
|
top: 5px;
|
|
}
|
|
|
|
.mx_RoomView_statusArea {
|
|
-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 auto;
|
|
flex: 0 0 auto;
|
|
|
|
max-height: 0px;
|
|
background-color: #fff;
|
|
z-index: 1000;
|
|
overflow: hidden;
|
|
|
|
-webkit-transition: all .2s ease-out;
|
|
-moz-transition: all .2s ease-out;
|
|
-ms-transition: all .2s ease-out;
|
|
-o-transition: all .2s ease-out;
|
|
}
|
|
|
|
.mx_RoomView_statusArea_expanded {
|
|
max-height: 50px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.mx_RoomView_statusArea_expanded.mx_RoomView_statusArea_mid_timeline {
|
|
margin-top: -50px;
|
|
|
|
-webkit-transition: all .2s ease-in;
|
|
-moz-transition: all .2s ease-in;
|
|
-ms-transition: all .2s ease-in;
|
|
-o-transition: all .2s ease-in;
|
|
}
|
|
|
|
.mx_RoomView_statusAreaBox {
|
|
max-width: 960px;
|
|
margin: auto;
|
|
min-height: 50px;
|
|
}
|
|
|
|
.mx_RoomView_statusAreaBox_line {
|
|
margin-left: 65px;
|
|
border-top: 1px solid #e5e5e5;
|
|
height: 1px;
|
|
}
|
|
|
|
.mx_RoomView_callStatusBar .mx_UploadBar_uploadProgressInner {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.mx_RoomView_callStatusBar .mx_UploadBar_uploadFilename {
|
|
color: #fff;
|
|
opacity: 1.0;
|
|
}
|
|
|
|
.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 {
|
|
background-color: #76CFA6;
|
|
color: #fff;
|
|
position: relative;
|
|
}
|
|
|
|
.mx_RoomView_voipChevron {
|
|
position: absolute;
|
|
bottom: -11px;
|
|
right: 11px;
|
|
}
|
|
|
|
.mx_RoomView_voipButton {
|
|
float: right;
|
|
margin-right: 13px;
|
|
margin-top: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_RoomView_voipButton object {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.mx_RoomView .mx_MessageComposer {
|
|
-webkit-box-ordinal-group: 6;
|
|
-moz-box-ordinal-group: 6;
|
|
-ms-flex-order: 6;
|
|
-webkit-order: 6;
|
|
order: 6;
|
|
|
|
width: 100%;
|
|
-webkit-flex: 0 0 auto;
|
|
flex: 0 0 auto;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.mx_RoomView_ongoingConfCallNotification {
|
|
width: 100%;
|
|
text-align: center;
|
|
background-color: #ff0064;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
padding: 6px 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_RoomView_ongoingConfCallNotification a {
|
|
color: #fff ! important;
|
|
} |