2020-06-05 06:34:04 +08:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-06-05 11:21:04 +08:00
|
|
|
// Note: the room tile expects to be in a flexbox column container
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile {
|
2020-06-06 04:08:20 +08:00
|
|
|
margin-bottom: 4px;
|
|
|
|
padding: 4px;
|
2020-06-05 11:21:04 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
// The tile is also a flexbox row itself
|
|
|
|
display: flex;
|
2021-06-03 23:26:20 +08:00
|
|
|
contain: content; // Not strict as it will break when resizing a sublist vertically
|
2021-06-01 18:21:59 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
font-size: $font-13px;
|
2020-06-05 11:21:04 +08:00
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
&.mx_RoomTile_selected,
|
2020-07-03 05:21:10 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus-within,
|
2020-07-18 05:43:29 +08:00
|
|
|
&.mx_RoomTile_hasMenuOpen {
|
2021-08-25 15:17:22 +08:00
|
|
|
background-color: $panel-actions;
|
2020-07-10 01:17:47 +08:00
|
|
|
border-radius: 8px;
|
2020-06-06 04:08:20 +08:00
|
|
|
}
|
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_DecoratedRoomAvatar, .mx_RoomTile_avatarContainer {
|
2022-03-23 06:14:11 +08:00
|
|
|
margin-right: 10px;
|
2020-06-05 11:21:04 +08:00
|
|
|
}
|
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
.mx_RoomTile_titleContainer {
|
|
|
|
height: 32px;
|
|
|
|
min-width: 0;
|
|
|
|
flex-basis: 0;
|
2020-06-10 13:09:15 +08:00
|
|
|
flex-grow: 1;
|
2022-04-01 22:36:10 +08:00
|
|
|
margin-right: 8px; // spacing to buttons/badges
|
|
|
|
|
|
|
|
// Create a new column layout flexbox for the title parts
|
2020-06-05 11:21:04 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2022-04-01 22:36:10 +08:00
|
|
|
justify-content: center;
|
2020-06-09 03:42:18 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
.mx_RoomTile_title, .mx_RoomTile_subtitle {
|
|
|
|
width: 100%;
|
2022-03-23 06:14:11 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
// Ellipsize any text overflow
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-03-23 06:14:11 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
.mx_RoomTile_title {
|
|
|
|
font-size: $font-14px;
|
|
|
|
line-height: $font-18px;
|
2022-03-23 06:14:11 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
&.mx_RoomTile_titleHasUnreadEvents {
|
|
|
|
font-weight: 600;
|
2022-03-23 06:14:11 +08:00
|
|
|
}
|
2022-04-01 22:36:10 +08:00
|
|
|
}
|
2020-07-02 19:18:48 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
.mx_RoomTile_subtitle {
|
|
|
|
line-height: $font-18px;
|
|
|
|
color: $secondary-content;
|
2020-06-05 11:21:04 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
.mx_RoomTile_videoIndicator {
|
2022-03-23 06:14:11 +08:00
|
|
|
&::before {
|
2022-04-01 22:36:10 +08:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: text-bottom;
|
2022-03-23 06:14:11 +08:00
|
|
|
content: '';
|
2022-04-01 22:36:10 +08:00
|
|
|
background-color: $secondary-content;
|
|
|
|
mask-image: url('$(res)/img/element-icons/call/video-call.svg');
|
|
|
|
mask-size: 16px;
|
2022-03-23 06:14:11 +08:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2022-04-01 22:36:10 +08:00
|
|
|
margin-right: 4px;
|
2022-03-23 06:14:11 +08:00
|
|
|
}
|
2020-07-03 03:39:20 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
&.mx_RoomTile_videoIndicator_active {
|
|
|
|
color: $accent;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
background-color: $accent;
|
|
|
|
}
|
|
|
|
}
|
2022-03-23 06:14:11 +08:00
|
|
|
}
|
2020-07-02 19:35:06 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
.mx_RoomTile_videoParticipants::before {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
content: '';
|
|
|
|
background-color: $secondary-content;
|
|
|
|
mask-image: url('$(res)/img/element-icons/group-members.svg');
|
|
|
|
mask-size: 16px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: 2px;
|
2022-03-23 06:14:11 +08:00
|
|
|
}
|
2020-07-02 19:18:48 +08:00
|
|
|
}
|
2020-06-10 13:09:15 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
.mx_RoomTile_titleWithSubtitle {
|
|
|
|
margin-top: -3px; // shift the title up a bit more
|
|
|
|
}
|
|
|
|
}
|
2020-06-10 13:09:15 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
.mx_RoomTile_notificationsButton {
|
|
|
|
margin-left: 4px; // spacing between buttons
|
|
|
|
}
|
2020-06-30 07:16:51 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
.mx_RoomTile_badgeContainer {
|
|
|
|
height: 16px;
|
|
|
|
// don't set width so that it takes no space when there is no badge to show
|
|
|
|
margin: auto 0; // vertically align
|
2022-03-23 06:14:11 +08:00
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
// Create a flexbox to make aligning dot badges easier
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.mx_NotificationBadge {
|
|
|
|
margin-right: 2px; // centering
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_NotificationBadge_dot {
|
|
|
|
// make the smaller dot occupy the same width for centering
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The context menu buttons are hidden by default
|
|
|
|
.mx_RoomTile_menuButton,
|
|
|
|
.mx_RoomTile_notificationsButton {
|
|
|
|
width: 20px;
|
|
|
|
min-width: 20px; // yay flex
|
|
|
|
height: 20px;
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
position: relative;
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
top: 2px;
|
|
|
|
left: 2px;
|
|
|
|
content: '';
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
position: absolute;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: contain;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
background: $primary-content;
|
2022-03-23 06:14:11 +08:00
|
|
|
}
|
2020-06-10 13:09:15 +08:00
|
|
|
}
|
|
|
|
|
2022-04-01 22:36:10 +08:00
|
|
|
// If the room has an overriden notification setting then we always show the notifications menu button
|
|
|
|
.mx_RoomTile_notificationsButton.mx_RoomTile_notificationsButton_show {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_menuButton::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/context-menu.svg');
|
|
|
|
}
|
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
&:not(.mx_RoomTile_minimized) {
|
2020-07-03 05:21:10 +08:00
|
|
|
&:hover,
|
|
|
|
&:focus-within,
|
2020-07-18 05:43:29 +08:00
|
|
|
&.mx_RoomTile_hasMenuOpen {
|
2020-06-12 04:39:28 +08:00
|
|
|
// Hide the badge container on hover because it'll be a menu button
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_badgeContainer {
|
2020-06-12 04:39:28 +08:00
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2020-07-02 19:18:48 +08:00
|
|
|
display: none;
|
2020-06-12 04:39:28 +08:00
|
|
|
}
|
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_notificationsButton,
|
|
|
|
.mx_RoomTile_menuButton {
|
2020-06-30 07:16:51 +08:00
|
|
|
display: block;
|
2020-06-12 04:39:28 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
&.mx_RoomTile_minimized {
|
2020-06-12 04:39:28 +08:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_DecoratedRoomAvatar, .mx_RoomTile_avatarContainer {
|
2020-06-12 04:39:28 +08:00
|
|
|
margin-right: 0;
|
2020-06-10 13:09:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-30 07:16:51 +08:00
|
|
|
// We use these both in context menus and the room tiles
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_iconBell::before {
|
2020-07-06 21:56:52 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/notifications.svg');
|
2020-06-30 07:16:51 +08:00
|
|
|
}
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_iconBellDot::before {
|
2020-07-06 21:56:52 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/notifications-default.svg');
|
2020-06-30 07:16:51 +08:00
|
|
|
}
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_iconBellCrossed::before {
|
2020-07-06 21:56:52 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/notifications-off.svg');
|
2020-06-30 07:16:51 +08:00
|
|
|
}
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_iconBellMentions::before {
|
2020-07-06 21:56:52 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/notifications-dm.svg');
|
2020-07-01 20:59:50 +08:00
|
|
|
}
|
2020-06-30 07:16:51 +08:00
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_contextMenu {
|
|
|
|
.mx_RoomTile_iconStar::before {
|
2020-07-06 21:56:52 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/favorite.svg');
|
2020-06-10 13:09:15 +08:00
|
|
|
}
|
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_iconArrowDown::before {
|
2020-07-06 21:56:52 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/low-priority.svg');
|
2020-06-10 13:09:15 +08:00
|
|
|
}
|
|
|
|
|
2021-11-15 19:39:25 +08:00
|
|
|
.mx_RoomTile_iconNotificationsDefault::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/notifications.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_iconNotificationsAllMessages::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/notifications-default.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_iconNotificationsMentionsKeywords::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/notifications-dm.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_iconNotificationsNone::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/roomlist/notifications-off.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_iconPeople::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/members.svg');
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_iconFiles::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/files.svg');
|
|
|
|
}
|
|
|
|
|
2022-02-28 22:52:16 +08:00
|
|
|
.mx_RoomTile_iconPins::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/pin-upright.svg');
|
|
|
|
}
|
|
|
|
|
2021-11-15 19:39:25 +08:00
|
|
|
.mx_RoomTile_iconWidgets::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/apps.svg');
|
|
|
|
}
|
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_iconSettings::before {
|
2020-07-06 21:56:52 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/settings.svg');
|
2020-06-10 13:09:15 +08:00
|
|
|
}
|
2021-02-15 23:22:19 +08:00
|
|
|
|
2021-11-15 19:39:25 +08:00
|
|
|
.mx_RoomTile_iconExport::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/export.svg');
|
|
|
|
}
|
|
|
|
|
2022-03-24 04:17:57 +08:00
|
|
|
.mx_RoomTile_iconDeveloperTools::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/settings/flask.svg');
|
|
|
|
}
|
|
|
|
|
2021-07-16 16:07:52 +08:00
|
|
|
.mx_RoomTile_iconCopyLink::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/link.svg');
|
|
|
|
}
|
|
|
|
|
2021-02-15 21:43:09 +08:00
|
|
|
.mx_RoomTile_iconInvite::before {
|
|
|
|
mask-image: url('$(res)/img/element-icons/room/invite.svg');
|
|
|
|
}
|
2020-06-10 13:09:15 +08:00
|
|
|
|
2020-07-18 05:43:29 +08:00
|
|
|
.mx_RoomTile_iconSignOut::before {
|
2020-07-06 21:56:52 +08:00
|
|
|
mask-image: url('$(res)/img/element-icons/leave.svg');
|
2020-06-10 13:09:15 +08:00
|
|
|
}
|
2020-06-05 06:34:04 +08:00
|
|
|
}
|