element-web/res/css/structures/_RoomDirectory.scss

158 lines
3.3 KiB
SCSS
Raw Normal View History

/*
Copyright 2015, 2016 OpenMarket Ltd
Copyright 2020 The Matrix.org Foundation C.I.C.
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-01-29 15:34:58 +01:00
.mx_RoomDirectory_dialogWrapper > .mx_Dialog {
max-width: 960px;
2019-01-29 15:34:58 +01:00
height: 100%;
}
.mx_RoomDirectory_dialog {
height: 100%;
display: flex;
flex-direction: column;
}
.mx_RoomDirectory {
margin-bottom: 12px;
color: $primary-fg-color;
word-break: break-word;
display: flex;
flex-direction: column;
2019-01-29 15:34:58 +01:00
flex: 1;
}
.mx_RoomDirectory_list {
flex: 1;
display: flex;
flex-direction: column;
}
.mx_RoomDirectory_list .mx_RoomView_messageListWrapper {
justify-content: flex-start;
}
.mx_RoomDirectory_listheader {
display: block;
margin-top: 13px;
}
.mx_RoomDirectory_searchbox {
2019-01-29 15:34:58 +01:00
flex: 1 !important;
}
.mx_RoomDirectory_listheader .mx_NetworkDropdown {
2019-01-29 15:34:58 +01:00
flex: 0 0 200px;
}
.mx_RoomDirectory_tableWrapper {
overflow-y: auto;
flex: 1 1 0;
}
.mx_RoomDirectory_table {
color: $primary-fg-color;
display: grid;
font-size: $font-12px;
grid-template-columns: max-content auto max-content max-content max-content;
row-gap: 24px;
text-align: left;
width: 100%;
}
.mx_RoomDirectory_roomAvatar {
padding: 2px 14px 0 0;
}
2019-09-11 15:36:29 +02:00
.mx_RoomDirectory_roomMemberCount {
align-self: center;
2019-09-11 15:36:29 +02:00
color: $light-fg-color;
padding: 3px 10px 0;
2019-09-11 15:36:29 +02:00
&::before {
background-color: $light-fg-color;
display: inline-block;
vertical-align: text-top;
margin-right: 2px;
content: "";
mask: url('$(res)/img/feather-customised/user.svg');
mask-repeat: no-repeat;
mask-position: center;
// scale it down and make the size slightly bigger (16 instead of 14px)
// to avoid rendering artifacts
mask-size: 80%;
width: 16px;
height: 16px;
}
}
.mx_RoomDirectory_join, .mx_RoomDirectory_preview {
align-self: center;
white-space: nowrap;
2019-09-11 15:36:29 +02:00
}
.mx_RoomDirectory_name {
display: inline-block;
font-size: $font-18px;
font-weight: 600;
}
.mx_RoomDirectory_perms {
display: inline-block;
}
.mx_RoomDirectory_perm {
border-radius: 10px;
display: inline-block;
height: 20px;
line-height: $font-20px;
padding: 0 5px;
color: $accent-fg-color;
background-color: $rte-room-pill-color;
}
.mx_RoomDirectory_topic {
cursor: initial;
2019-09-11 15:36:29 +02:00
color: $light-fg-color;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}
.mx_RoomDirectory_alias {
font-size: $font-12px;
color: $settings-grey-fg-color;
}
.mx_RoomDirectory_table tr {
padding-bottom: 10px;
cursor: pointer;
2019-09-11 15:36:29 +02:00
}
2019-09-11 15:36:29 +02:00
.mx_RoomDirectory .mx_RoomView_MessageList {
padding: 0;
}
.mx_RoomDirectory > span {
font-size: $font-15px;
2019-09-11 15:36:29 +02:00
margin-top: 0;
2019-09-11 15:36:29 +02:00
.mx_AccessibleButton {
padding: 0;
}
}