/* Copyright 2015, 2016 OpenMarket Ltd Copyright 2019 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_RoomTile { display: flex; flex-direction: row; align-items: center; cursor: pointer; height: 34px; margin: 0; padding: 0 8px 0 10px; position: relative; } .mx_RoomTile:focus { filter: none !important; background-color: $roomtile-focused-bg-color; } .mx_RoomTile_menuButton { display: none; flex: 0 0 16px; height: 16px; background-image: url('$(res)/img/icon_context.svg'); background-repeat: no-repeat; background-position: center; } .mx_RoomTile_tooltip { display: inline-block; position: relative; top: -54px; left: -12px; } .mx_RoomTile_nameContainer { display: flex; align-items: center; flex: 1; vertical-align: middle; min-width: 0; } .mx_RoomTile_labelContainer { display: flex; flex-direction: column; flex: 1; min-width: 0; } .mx_RoomTile_subtext { display: inline-block; font-size: 11px; padding: 0 0 0 7px; margin: 0; overflow: hidden; white-space: nowrap; text-overflow: clip; position: relative; bottom: 4px; } .mx_RoomTile_avatar_container { position: relative; } .mx_RoomTile_avatar { flex: 0; padding: 4px; width: 24px; vertical-align: middle; } .mx_RoomTile_hasSubtext .mx_RoomTile_avatar { padding-top: 0; vertical-align: super; } .mx_RoomTile_dm { display: block; position: absolute; bottom: 0; right: -5px; z-index: 2; } .mx_RoomTile_name { font-size: 14px; padding: 0 6px; color: $roomtile-name-color; white-space: nowrap; overflow-x: hidden; text-overflow: ellipsis; } .mx_RoomTile_badge { flex: 0 1 content; border-radius: 0.8em; padding: 0 0.4em; color: $roomtile-badge-fg-color; font-weight: 600; font-size: 12px; } .collapsed { .mx_RoomTile { margin: 0 6px; padding: 0 2px; position: relative; justify-content: center; } .mx_RoomTile_name { display: none; } .mx_RoomTile_badge { position: absolute; right: 6px; top: 0px; border-radius: 16px; z-index: 3; border: 0.18em solid $secondary-accent-color; } .mx_RoomTile_menuButton { display: none; //no design for this for now } } // toggle menuButton and badge on menu displayed .mx_RoomTile_menuDisplayed, // or on keyboard focus of room tile .mx_LeftPanel_container:not(.collapsed) .mx_RoomTile:focus-within, // or on pointer hover .mx_LeftPanel_container:not(.collapsed) .mx_RoomTile:hover { .mx_RoomTile_menuButton { display: block; } } .mx_RoomTile_unreadNotify .mx_RoomTile_badge, .mx_RoomTile_badge.mx_RoomTile_badgeUnread { background-color: $roomtile-name-color; } .mx_RoomTile_highlight .mx_RoomTile_badge, .mx_RoomTile_badge.mx_RoomTile_badgeRed { color: $accent-fg-color; background-color: $warning-color; } .mx_RoomTile_unread, .mx_RoomTile_highlight { .mx_RoomTile_name { font-weight: 600; color: $roomtile-selected-color; } } .mx_RoomTile_selected { border-radius: 4px; background-color: $roomtile-selected-bg-color; } .mx_DNDRoomTile { transform: none; transition: transform 0.2s; } .mx_DNDRoomTile_dragging { transform: scale(1.05, 1.05); } .mx_RoomTile_arrow { position: absolute; right: 0px; } .mx_RoomTile.mx_RoomTile_transparent { background-color: transparent; } .mx_RoomTile.mx_RoomTile_transparent:focus { background-color: $roomtile-transparent-focused-color; } .mx_GroupInviteTile .mx_RoomTile_name { flex: 1; } .mx_RoomTile.mx_RoomTile.mx_RoomTile_isPrivate .mx_RoomTile_name { // Scoot the padding in a bit from 6px to make it look better padding-left: 3px; } .mx_RoomTile.mx_RoomTile_isPrivate .mx_RoomTile_PrivateIcon { width: 12px; height: 12px; position: relative; display: block !important; // Align the padlock with unencrypted room names margin-left: 6px; &::before { background-color: $roomtile-name-color; mask-image: url('$(res)/img/feather-customised/lock-solid.svg'); mask-position: center; mask-repeat: no-repeat; mask-size: contain; content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; } }