mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08:00
15b7a5af31
when badges with and without highlighted state have a very different brightness (as they might do in dark mode), hardcoding the fg color of a badge independent of it's highlighted state to $accent-fg-color doesn't work well, so add an extra SASS variable we can reassign to something more specific in the custom theme
200 lines
4.0 KiB
SCSS
200 lines
4.0 KiB
SCSS
/*
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
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 hover/menu displayed
|
|
.mx_RoomTile_menuDisplayed,
|
|
.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;
|
|
}
|