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-05-16 18:12:45 +08:00
|
|
|
:root {
|
|
|
|
--RoomHeader-indicator-dot-size: 8px;
|
|
|
|
--RoomHeader-indicator-dot-offset: -3px;
|
|
|
|
--RoomHeader-indicator-pulseColor: $alert;
|
|
|
|
}
|
|
|
|
|
2023-08-01 21:47:09 +08:00
|
|
|
.mx_RoomHeader {
|
2020-07-14 06:12:33 +08:00
|
|
|
flex: 0 0 50px;
|
2018-10-30 20:25:06 +08:00
|
|
|
border-bottom: 1px solid $primary-hairline-color;
|
2021-08-12 18:01:55 +08:00
|
|
|
background-color: $background;
|
2018-10-30 20:25:06 +08:00
|
|
|
}
|
|
|
|
|
2023-08-01 21:47:09 +08:00
|
|
|
.mx_RoomHeader_wrapper {
|
2021-11-15 19:39:25 +08:00
|
|
|
height: 44px;
|
2018-04-12 07:23:35 +08:00
|
|
|
display: flex;
|
2018-10-23 22:57:56 +08:00
|
|
|
align-items: center;
|
|
|
|
min-width: 0;
|
2021-11-15 19:39:25 +08:00
|
|
|
margin: 0 20px 0 16px;
|
2022-10-07 10:27:28 +08:00
|
|
|
padding-top: 6px;
|
2023-07-13 01:46:49 +08:00
|
|
|
border-bottom: 1px solid $separator;
|
2018-04-12 07:23:35 +08:00
|
|
|
}
|
|
|
|
|
2023-08-01 21:47:09 +08:00
|
|
|
.mx_RoomHeader_name {
|
2018-10-23 22:57:56 +08:00
|
|
|
flex: 0 1 auto;
|
2018-04-12 07:23:35 +08:00
|
|
|
overflow: hidden;
|
2021-11-15 19:39:25 +08:00
|
|
|
color: $primary-content;
|
2023-06-29 18:30:25 +08:00
|
|
|
font: var(--cpd-font-heading-sm-semibold);
|
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2022-10-07 10:27:28 +08:00
|
|
|
min-height: 24px;
|
|
|
|
align-items: center;
|
2021-11-15 19:39:25 +08:00
|
|
|
border-radius: 6px;
|
2022-10-07 10:27:28 +08:00
|
|
|
margin: 0 3px;
|
2021-11-15 19:39:25 +08:00
|
|
|
padding: 1px 4px;
|
2019-01-15 23:20:04 +08:00
|
|
|
display: flex;
|
2021-11-15 19:39:25 +08:00
|
|
|
user-select: none;
|
2023-05-30 17:23:23 +08:00
|
|
|
cursor: pointer;
|
2020-01-30 18:18:14 +08:00
|
|
|
}
|