mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 12:58:53 +03:00
5096e7b992
* Implement searching for public rooms and users in new search experience * Implement loading indicator for spotlight results * Moved spotlight dialog into own subfolder * Extract search result avatar into separate component * Build generic new dropdown menu component * Build new network menu based on new network dropdown component * Switch roomdirectory to use new network dropdown * Replace old networkdropdown with new networkdropdown * Added component for public room result details * Extract hooks and subcomponents from SpotlightDialog * Create new hook to get profile info based for an mxid * Add hook to automatically re-request search results * Add hook to prevent out-of-order search results * Extract member sort algorithm from InviteDialog * Keep sorting for non-room results stable * Sort people suggestions using sort algorithm from InviteDialog * Add copy/copied tooltip for invite link option in spotlight * Clamp length of topic for public room results * Add unit test for useDebouncedSearch * Add unit test for useProfileInfo * Create cypress test cases for spotlight dialog * Add test for useLatestResult to prevent out-of-order results
228 lines
4.7 KiB
SCSS
228 lines
4.7 KiB
SCSS
/*
|
|
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.
|
|
*/
|
|
|
|
.mx_RoomDirectory_dialogWrapper > .mx_Dialog {
|
|
max-width: 960px;
|
|
height: 100%;
|
|
}
|
|
|
|
.mx_RoomDirectory_dialog {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.mx_RoomDirectory {
|
|
margin-bottom: 12px;
|
|
color: $primary-content;
|
|
word-break: break-word;
|
|
display: flex;
|
|
flex-direction: column;
|
|
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 {
|
|
flex: 1 !important;
|
|
}
|
|
|
|
.mx_RoomDirectory_listheader .mx_GenericDropdownMenu_button {
|
|
margin: 0 9px 0 auto;
|
|
width: fit-content;
|
|
}
|
|
|
|
.mx_RoomDirectory_tableWrapper {
|
|
overflow-y: auto;
|
|
flex: 1 1 0;
|
|
|
|
.mx_RoomDirectory_footer {
|
|
margin-top: 24px;
|
|
text-align: center;
|
|
|
|
> h5 {
|
|
margin: 0;
|
|
font-weight: $font-semi-bold;
|
|
font-size: $font-15px;
|
|
line-height: $font-18px;
|
|
color: $primary-content;
|
|
}
|
|
|
|
> p {
|
|
margin: 40px auto 60px;
|
|
font-size: $font-14px;
|
|
line-height: $font-20px;
|
|
color: $secondary-content;
|
|
max-width: 464px; // easier reading
|
|
}
|
|
|
|
> hr {
|
|
margin: 0;
|
|
border: none;
|
|
height: 1px;
|
|
background-color: $header-panel-bg-color;
|
|
}
|
|
|
|
.mx_RoomDirectory_newRoom {
|
|
margin: 24px auto 0;
|
|
width: max-content;
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_RoomDirectory_table {
|
|
color: $primary-content;
|
|
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;
|
|
}
|
|
|
|
.mx_RoomDirectory_roomMemberCount {
|
|
align-self: center;
|
|
color: $light-fg-color;
|
|
padding: 3px 10px 0;
|
|
|
|
&::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;
|
|
}
|
|
|
|
.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: $pill-bg-color;
|
|
}
|
|
|
|
.mx_RoomDirectory_topic {
|
|
cursor: initial;
|
|
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 .mx_RoomView_MessageList {
|
|
padding: 0;
|
|
}
|
|
|
|
.mx_RoomDirectory > span {
|
|
font-size: $font-15px;
|
|
margin-top: 0;
|
|
|
|
.mx_AccessibleButton {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
.mx_RoomDirectory_roomMemberCount {
|
|
padding: 0px;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_secondary {
|
|
padding: 0px !important;
|
|
}
|
|
|
|
.mx_RoomDirectory_join {
|
|
margin-left: 0px;
|
|
}
|
|
|
|
.mx_RoomDirectory_alias {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.mx_RoomDirectory_roomDescription {
|
|
padding-bottom: 0px;
|
|
}
|
|
|
|
.mx_RoomDirectory_name {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.mx_RoomDirectory_roomAvatar {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.mx_RoomDirectory_table {
|
|
grid-template-columns: auto;
|
|
row-gap: 14px;
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
|
|
.mx_RoomDirectory_listItem {
|
|
display: contents;
|
|
}
|