2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-06-16 18:51:20 +05:30
|
|
|
@import url('layout.css');
|
2020-05-03 04:38:53 +05:30
|
|
|
@import url('login.css');
|
2019-06-16 18:51:20 +05:30
|
|
|
@import url('left-panel.css');
|
|
|
|
@import url('room.css');
|
|
|
|
@import url('timeline.css');
|
|
|
|
@import url('avatar.css');
|
2020-04-30 21:58:21 +05:30
|
|
|
@import url('spinner.css');
|
2019-06-16 18:51:20 +05:30
|
|
|
|
2020-04-30 21:58:21 +05:30
|
|
|
.brawl {
|
2019-06-16 18:51:20 +05:30
|
|
|
margin: 0;
|
2020-04-29 13:40:20 +05:30
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, Cantarell, sans-serif,
|
|
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
2019-06-16 18:51:20 +05:30
|
|
|
background-color: black;
|
|
|
|
color: white;
|
2020-05-10 13:30:13 +05:30
|
|
|
/* make sure to disable rubber-banding and pull to refresh in a PWA if we'd end up having a scrollbar */
|
|
|
|
overscroll-behavior: none;
|
2020-08-07 15:46:46 +05:30
|
|
|
/* disable rubberband scrolling on document in IE11 */
|
|
|
|
overflow: hidden;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
|
|
|
|
2020-05-06 02:48:31 +05:30
|
|
|
.hiddenWithLayout {
|
2020-04-30 21:58:21 +05:30
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2020-05-06 02:48:31 +05:30
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionStatusView {
|
|
|
|
display: flex;
|
|
|
|
padding: 5px;
|
2019-06-16 18:51:20 +05:30
|
|
|
background-color: #555;
|
|
|
|
}
|
|
|
|
|
2020-05-06 02:48:31 +05:30
|
|
|
.SessionStatusView p {
|
|
|
|
margin: 0 10px;
|
2020-05-10 00:52:09 +05:30
|
|
|
word-break: break-all;
|
|
|
|
word-break: break-word;
|
2020-05-06 02:48:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.SessionStatusView button {
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
color: currentcolor;
|
|
|
|
text-decoration: underline;
|
2019-06-16 18:51:20 +05:30
|
|
|
}
|
2019-06-16 19:49:00 +05:30
|
|
|
|
2020-05-06 02:48:31 +05:30
|
|
|
|
2019-06-16 19:49:00 +05:30
|
|
|
.RoomPlaceholderView {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2019-09-08 14:10:05 +05:30
|
|
|
|
|
|
|
.SessionPickerView {
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView li {
|
|
|
|
margin: 0.4em 0;
|
|
|
|
font-size: 1.2em;
|
|
|
|
background-color: grey;
|
|
|
|
padding: 0.5em;
|
2019-10-13 11:59:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView .sessionInfo {
|
2019-09-08 14:10:05 +05:30
|
|
|
cursor: pointer;
|
2019-10-13 00:46:48 +05:30
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView li span.userId {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SessionPickerView li span.error {
|
|
|
|
margin: 0 20px;
|
2019-09-08 14:10:05 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
.LoginView {
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
2019-11-22 14:16:19 +05:30
|
|
|
a {
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2019-09-08 14:10:05 +05:30
|
|
|
.form > div {
|
|
|
|
margin: 0.4em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|