mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
b55653ddf0
* Extract useIsVideoRoom hook Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Move useWidgets hook to WidgetUtils Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Extract Extensions into their own right panel tab Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove unused components & classes Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update screenshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
111 lines
2.6 KiB
Text
111 lines
2.6 KiB
Text
/*
|
|
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_RoomSummaryCard {
|
|
.mx_RoomSummaryCard_container {
|
|
text-align: center;
|
|
margin: $spacing-20 var(--cpd-space-4x) 0;
|
|
}
|
|
|
|
.mx_RoomSummaryCard_roomName,
|
|
.mx_RoomSummaryCard_alias {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
white-space: pre-wrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.mx_RoomSummaryCard_alias {
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.mx_RoomSummaryCard_topic {
|
|
padding: 0 12px;
|
|
color: var(--cpd-color-text-secondary);
|
|
|
|
.mx_Box {
|
|
width: 100%;
|
|
}
|
|
|
|
.mx_RoomSummaryCard_topic_container {
|
|
text-align: start;
|
|
display: flex;
|
|
}
|
|
|
|
.mx_RoomSummaryCard_topic_edit {
|
|
width: max-content;
|
|
}
|
|
|
|
p {
|
|
white-space: pre-wrap;
|
|
width: 100%;
|
|
min-width: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_RoomSummaryCard_topic_chevron {
|
|
transition: transform 0.3s;
|
|
}
|
|
|
|
&.mx_RoomSummaryCard_topic_collapsed {
|
|
p {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: normal;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
.mx_RoomSummaryCard_topic_chevron {
|
|
transform: rotate(-90deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_link {
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
font-size: $font-13px;
|
|
font-weight: var(--cpd-font-weight-semibold);
|
|
}
|
|
}
|
|
|
|
.mx_RoomSummaryCard_badges {
|
|
margin: var(--cpd-space-4x) 0;
|
|
}
|
|
|
|
.mx_RoomSummaryCard_header {
|
|
padding: 24px 12px 15px;
|
|
}
|
|
|
|
.mx_RoomSummaryCard_search {
|
|
flex-grow: 1;
|
|
min-width: 0;
|
|
|
|
input[type="search"]::-webkit-search-cancel-button {
|
|
display: unset; /* override _common.pcss which inhibits this */
|
|
}
|
|
}
|
|
|
|
.mx_RoomSummaryCard_roomName {
|
|
margin: $spacing-12 0 $spacing-4;
|
|
}
|