mirror of https://github.com/vector-im/riot-web
194 lines
3.8 KiB
SCSS
194 lines
3.8 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_menuButton {
|
|
display: none;
|
|
flex: 0 0 16px;
|
|
height: 16px;
|
|
background-image: url('../../img/icon_context.svg');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
// toggle menuButton and badge on hover/menu displayed
|
|
.mx_LeftPanel_container:not(.collapsed) .mx_RoomTile:hover, .mx_RoomTile_menuDisplayed {
|
|
.mx_RoomTile_menuButton {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.mx_RoomTile_labelContainer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
|
|
.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 {
|
|
flex: 1 5 auto;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
padding: 0 6px;
|
|
color: $roomtile-name-color;
|
|
white-space: nowrap;
|
|
overflow-x: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.collapsed {
|
|
.mx_RoomTile {
|
|
margin: 0 2px;
|
|
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
|
|
}
|
|
}
|
|
|
|
.mx_RoomTile_badge {
|
|
flex: 0 1 content;
|
|
border-radius: 0.8em;
|
|
padding: 0 0.4em;
|
|
color: $accent-fg-color;
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.mx_RoomTile_unreadNotify .mx_RoomTile_badge {
|
|
background-color: $roomtile-name-color;
|
|
}
|
|
|
|
.mx_RoomTile_highlight .mx_RoomTile_badge {
|
|
background-color: $warning-color;
|
|
}
|
|
|
|
.mx_RoomTile_unread, .mx_RoomTile_highlight {
|
|
font-weight: 800;
|
|
|
|
.mx_RoomTile_name {
|
|
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:focus {
|
|
filter: none ! important;
|
|
background-color: $roomtile-focused-bg-color;
|
|
}
|
|
|
|
.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;
|
|
}
|