2020-08-05 18:38:55 +02:00
|
|
|
/*
|
|
|
|
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 15:21:20 +02:00
|
|
|
|
|
|
|
.RoomHeader {
|
|
|
|
padding: 10px;
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
|
2019-06-26 23:14:39 +02:00
|
|
|
.RoomHeader > *:last-child {
|
|
|
|
margin-right: 0;
|
2019-06-16 15:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.RoomHeader > * {
|
2019-06-26 23:14:39 +02:00
|
|
|
margin-right: 10px;
|
|
|
|
flex: 0 0 auto;
|
2019-06-16 15:21:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.RoomHeader button {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
display: none;
|
|
|
|
font-size: 1.5em;
|
|
|
|
padding: 0;
|
|
|
|
display: block;
|
|
|
|
background: white;
|
|
|
|
border: none;
|
|
|
|
font-weight: bolder;
|
|
|
|
line-height: 40px;
|
|
|
|
}
|
|
|
|
|
2019-06-26 23:14:39 +02:00
|
|
|
.RoomHeader .back {
|
2019-06-16 15:21:20 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-06-26 23:14:39 +02:00
|
|
|
.RoomHeader .room-description {
|
2019-09-28 09:45:14 +02:00
|
|
|
flex: 1;
|
2019-06-26 23:14:39 +02:00
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
2019-06-16 15:21:20 +02:00
|
|
|
.RoomHeader .topic {
|
|
|
|
font-size: 0.8em;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.back::before {
|
|
|
|
content: "☰";
|
|
|
|
}
|
|
|
|
|
|
|
|
.more::before {
|
|
|
|
content: "⋮";
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomHeader {
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomHeader .description {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomHeader h2 {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.RoomView_error {
|
|
|
|
color: red;
|
|
|
|
}
|
2019-07-27 10:40:56 +02:00
|
|
|
|
|
|
|
.MessageComposer > input {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 0.8em;
|
|
|
|
border: none;
|
|
|
|
}
|