2018-04-12 01:23:35 +02:00
|
|
|
/*
|
|
|
|
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 {
|
2018-09-24 17:06:57 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2018-04-12 01:23:35 +02:00
|
|
|
cursor: pointer;
|
|
|
|
height: 34px;
|
2018-11-01 16:34:12 +01:00
|
|
|
margin: 0;
|
2018-11-06 14:02:43 +01:00
|
|
|
padding: 0 8px 0 10px;
|
2018-10-16 14:54:30 +02:00
|
|
|
position: relative;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
2018-11-05 17:42:25 +01:00
|
|
|
.mx_RoomTile_menuButton {
|
|
|
|
display: none;
|
|
|
|
flex: 0 0 16px;
|
|
|
|
height: 16px;
|
2019-01-01 00:22:40 +01:00
|
|
|
background-image: url('$(res)/img/icon_context.svg');
|
2018-11-05 17:42:25 +01:00
|
|
|
background-repeat: no-repeat;
|
2018-11-06 14:02:43 +01:00
|
|
|
background-position: center;
|
2018-11-05 17:42:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// toggle menuButton and badge on hover/menu displayed
|
2018-11-06 10:20:04 +01:00
|
|
|
.mx_LeftPanel_container:not(.collapsed) .mx_RoomTile:hover, .mx_RoomTile_menuDisplayed {
|
2018-11-05 17:42:25 +01:00
|
|
|
.mx_RoomTile_menuButton {
|
|
|
|
display: block;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_tooltip {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
top: -54px;
|
|
|
|
left: -12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.mx_RoomTile_nameContainer {
|
2019-01-04 01:36:57 +01:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2019-01-04 02:05:32 +01:00
|
|
|
flex: 1;
|
2018-12-12 05:40:11 +01:00
|
|
|
vertical-align: middle;
|
2019-01-07 20:54:01 +01:00
|
|
|
min-width: 0;
|
2018-12-12 05:40:11 +01:00
|
|
|
}
|
|
|
|
|
2019-01-04 01:36:57 +01:00
|
|
|
.mx_RoomTile_labelContainer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
2019-01-07 20:54:01 +01:00
|
|
|
min-width: 0;
|
2019-01-04 01:36:57 +01:00
|
|
|
}
|
|
|
|
|
2018-12-12 05:40:11 +01:00
|
|
|
.mx_RoomTile_subtext {
|
|
|
|
display: inline-block;
|
2018-12-12 20:57:48 +01:00
|
|
|
font-size: 11px;
|
2018-12-12 05:40:11 +01:00
|
|
|
padding: 0 0 0 7px;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: clip;
|
|
|
|
position: relative;
|
|
|
|
bottom: 4px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_avatar_container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_avatar {
|
2019-01-04 02:07:34 +01:00
|
|
|
flex: 0;
|
|
|
|
padding: 4px;
|
2018-04-12 01:23:35 +02:00
|
|
|
width: 24px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2018-12-12 20:57:48 +01:00
|
|
|
.mx_RoomTile_hasSubtext .mx_RoomTile_avatar {
|
|
|
|
padding-top: 0;
|
|
|
|
vertical-align: super;
|
|
|
|
}
|
|
|
|
|
2018-04-12 01:23:35 +02:00
|
|
|
.mx_RoomTile_dm {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
right: -5px;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_name {
|
2018-10-24 14:03:16 +02:00
|
|
|
font-size: 14px;
|
2018-05-26 01:07:39 +02:00
|
|
|
font-weight: 600;
|
2019-01-04 01:36:57 +01:00
|
|
|
padding: 0 6px;
|
2018-04-12 01:23:35 +02:00
|
|
|
color: $roomtile-name-color;
|
|
|
|
white-space: nowrap;
|
2018-09-24 17:06:57 +02:00
|
|
|
overflow-x: hidden;
|
2018-04-12 01:23:35 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2018-10-16 14:54:30 +02:00
|
|
|
.collapsed {
|
2018-10-22 18:17:51 +02:00
|
|
|
.mx_RoomTile {
|
2018-11-06 14:02:43 +01:00
|
|
|
margin: 0 2px;
|
|
|
|
padding: 0 2px;
|
2018-11-05 14:23:28 +01:00
|
|
|
position: relative;
|
2018-11-06 14:02:43 +01:00
|
|
|
justify-content: center;
|
2018-10-22 18:17:51 +02:00
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2018-10-16 14:54:30 +02:00
|
|
|
.mx_RoomTile_name {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2018-10-16 14:54:30 +02:00
|
|
|
.mx_RoomTile_badge {
|
2018-10-22 18:16:36 +02:00
|
|
|
position: absolute;
|
2018-11-05 14:23:28 +01:00
|
|
|
right: 6px;
|
|
|
|
top: 0px;
|
2018-10-16 14:54:30 +02:00
|
|
|
border-radius: 16px;
|
|
|
|
z-index: 3;
|
2018-11-05 14:23:28 +01:00
|
|
|
border: 0.18em solid $secondary-accent-color;
|
2018-10-16 14:54:30 +02:00
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
|
2018-11-05 17:42:25 +01:00
|
|
|
.mx_RoomTile_menuButton {
|
|
|
|
display: none; //no design for this for now
|
2018-10-16 14:54:30 +02:00
|
|
|
}
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_badge {
|
2018-09-24 17:06:57 +02:00
|
|
|
flex: 0 1 content;
|
2018-11-05 14:23:28 +01:00
|
|
|
border-radius: 0.8em;
|
|
|
|
padding: 0 0.4em;
|
2018-04-12 01:23:35 +02:00
|
|
|
color: $accent-fg-color;
|
|
|
|
font-weight: 600;
|
2018-10-22 18:16:36 +02:00
|
|
|
font-size: 12px;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_unreadNotify .mx_RoomTile_badge {
|
2018-12-20 12:35:21 +01:00
|
|
|
background-color: $roomtile-name-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_highlight .mx_RoomTile_badge {
|
|
|
|
background-color: $warning-color;
|
|
|
|
}
|
|
|
|
|
2019-02-12 13:06:53 +01:00
|
|
|
.mx_RoomTile_unread, .mx_RoomTile_highlight .mx_RoomTile_name {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $roomtile-selected-color;
|
2018-04-12 01:23:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_RoomTile_selected {
|
2018-05-25 04:17:29 +02:00
|
|
|
border-radius: 4px;
|
2018-04-12 01:23:35 +02:00
|
|
|
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 {
|
2019-02-11 14:31:06 +01:00
|
|
|
filter: none !important;
|
2018-04-12 01:23:35 +02:00
|
|
|
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;
|
|
|
|
}
|