mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
c9dc273cb0
instead of having to offset the padding of children of the autohiding scrollbar container, which gets fiddly quickly, add a new child to the scrollbar container that gets a negative margin of the scrollbar width when needed (on hover and overflowing when overlay is not supported). This needs an extra DOM element, but as it doesn't do anything weird layout-wise (like set position), it shouldn't affect styling at all. It also makes the auto hide scrollbar workarounds completely transparent to the rest of the code.
157 lines
3.3 KiB
SCSS
157 lines
3.3 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_RoomSubList {
|
|
min-height: 31px;
|
|
flex: 0 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.mx_RoomSubList_nonEmpty {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.mx_RoomSubList_labelContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
flex: 0 0 auto;
|
|
margin: 8px 19px 0 0;
|
|
}
|
|
|
|
.mx_RoomSubList_label {
|
|
flex: 1;
|
|
position: relative;
|
|
text-transform: uppercase;
|
|
color: $roomsublist-label-fg-color;
|
|
font-weight: 700;
|
|
font-size: 12px;
|
|
margin-left: 16px;
|
|
padding-left: 16px; /* gutter */
|
|
padding-right: 16px; /* gutter */
|
|
padding-top: 6px;
|
|
padding-bottom: 6px;
|
|
cursor: pointer;
|
|
background-color: $secondary-accent-color;
|
|
}
|
|
|
|
.mx_RoomSubList_label.mx_RoomSubList_fixed {
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 5;
|
|
/* pointer-events: none; */
|
|
}
|
|
|
|
.mx_RoomSubList_badge {
|
|
flex: 0 1 content;
|
|
border-radius: 8px;
|
|
color: $accent-fg-color;
|
|
font-weight: 600;
|
|
font-size: 12px;
|
|
padding: 0 5px;
|
|
background-color: $accent-color;
|
|
}
|
|
|
|
.mx_RoomSubList_label .mx_RoomSubList_badge:hover {
|
|
filter: brightness($focus-brightness);
|
|
}
|
|
|
|
.mx_RoomSubList_addRoom, .mx_RoomSubList_badge {
|
|
margin: 5px;
|
|
}
|
|
|
|
.mx_RoomSubList_addRoom {
|
|
background-color: $roomheader-addroom-color;
|
|
color: $roomsublist-background;
|
|
background-image: url('../../img/icons-room-add.svg');
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
border-radius: 10px; // 16/2 + 2 padding
|
|
height: 16px;
|
|
flex: 0 0 16px;
|
|
background-clip: content-box;
|
|
padding: 2px;
|
|
}
|
|
|
|
.mx_RoomSubList_badgeHighlight {
|
|
background-color: $warning-color;
|
|
}
|
|
|
|
.mx_RoomSubList_chevron {
|
|
left: 0px;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 11px;
|
|
width: 10px;
|
|
height: 6px;
|
|
background-image: url('../../img/topleft-chevron.svg');
|
|
background-repeat: no-repeat;
|
|
transition: transform 0.2s ease-in;
|
|
}
|
|
|
|
.mx_RoomSubList_chevronDown {
|
|
transform: rotateZ(0deg);
|
|
}
|
|
|
|
.mx_RoomSubList_chevronUp {
|
|
transform: rotateZ(180deg);
|
|
}
|
|
|
|
.mx_RoomSubList_chevronRight {
|
|
transform: rotateZ(-90deg);
|
|
}
|
|
|
|
.mx_RoomSubList_scroll {
|
|
/* let rooms list grab all available space */
|
|
flex: 0 1 auto;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
.collapsed {
|
|
|
|
.mx_RoomSubList_scroll {
|
|
padding: 0;
|
|
}
|
|
.mx_RoomSubList_label {
|
|
height: 17px;
|
|
padding-right: 0;
|
|
width: 28px; /* collapsed LHS Panel width */
|
|
}
|
|
|
|
.mx_RoomSubList_labelContainer {
|
|
width: 28px; /* collapsed LHS Panel width */
|
|
}
|
|
|
|
.mx_RoomSubList_line {
|
|
display: none;
|
|
}
|
|
|
|
.mx_RoomSubList_moreBadge {
|
|
position: static;
|
|
margin-left: 16px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.mx_RoomSubList_ellipsis {
|
|
height: 20px;
|
|
}
|
|
|
|
.mx_RoomSubList_more {
|
|
display: none;
|
|
}
|
|
}
|