2018-04-12 07:23:35 +08:00
|
|
|
/*
|
2023-08-01 15:32:53 +08:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
2018-04-12 07:23:35 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2023-08-01 21:47:09 +08:00
|
|
|
.mx_RoomHeader {
|
2023-08-02 18:54:06 +08:00
|
|
|
height: 64px;
|
|
|
|
padding: 0 var(--cpd-space-3x);
|
2023-07-13 01:46:49 +08:00
|
|
|
border-bottom: 1px solid $separator;
|
2023-08-02 18:54:06 +08:00
|
|
|
background-color: $background;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2023-08-02 18:54:06 +08:00
|
|
|
.mx_RoomHeader_topic {
|
|
|
|
height: 0;
|
|
|
|
opacity: 0;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 1;
|
|
|
|
|
2018-04-12 07:23:35 +08:00
|
|
|
overflow: hidden;
|
2023-08-02 18:54:06 +08:00
|
|
|
word-break: break-all;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
transition: all var(--transition-standard) ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomHeader:hover .mx_RoomHeader_topic {
|
|
|
|
/* height needed to compute the transition, it equals to the `line-height`
|
|
|
|
value in pixels */
|
|
|
|
height: calc($font-13px * 1.5);
|
|
|
|
opacity: 1;
|
2020-01-30 18:18:14 +08:00
|
|
|
}
|