2020-07-01 15:02:20 +02:00
|
|
|
// sidebar blurred avatar background
|
|
|
|
//
|
2020-06-30 13:02:52 +02:00
|
|
|
// if backdrop-filter is supported,
|
|
|
|
// set the user avatar (if any) as a background so
|
|
|
|
// it can be blurred by the tag panel and room list
|
|
|
|
|
2020-07-07 13:22:13 +02:00
|
|
|
@supports (backdrop-filter: none) {
|
2020-07-17 23:22:18 +02:00
|
|
|
.mx_LeftPanel {
|
2020-10-14 12:41:24 +02:00
|
|
|
background-image: var(--avatar-url, unset);
|
2020-06-30 13:02:52 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
2020-07-03 16:56:10 +02:00
|
|
|
background-position: left top;
|
2020-06-30 13:02:52 +02:00
|
|
|
}
|
|
|
|
|
2020-10-10 14:30:06 +02:00
|
|
|
.mx_GroupFilterPanel {
|
2020-10-15 00:30:38 +02:00
|
|
|
backdrop-filter: blur($groupFilterPanel-background-blur-amount);
|
2020-06-30 13:02:52 +02:00
|
|
|
}
|
|
|
|
|
2021-02-26 11:23:09 +01:00
|
|
|
.mx_SpacePanel {
|
|
|
|
backdrop-filter: blur($groupFilterPanel-background-blur-amount);
|
|
|
|
}
|
|
|
|
|
2020-07-17 23:22:18 +02:00
|
|
|
.mx_LeftPanel .mx_LeftPanel_roomListContainer {
|
2020-07-14 14:24:35 +02:00
|
|
|
backdrop-filter: blur($roomlist-background-blur-amount);
|
2020-06-30 13:02:52 +02:00
|
|
|
}
|
2020-07-03 16:50:01 +02:00
|
|
|
}
|
2020-07-03 16:53:06 +02:00
|
|
|
|
2020-07-17 23:46:46 +02:00
|
|
|
.mx_RoomSublist_showNButton {
|
2020-07-03 16:53:06 +02:00
|
|
|
background-color: transparent !important;
|
2020-06-30 13:02:52 +02:00
|
|
|
}
|
2020-07-14 12:52:28 +02:00
|
|
|
|
|
|
|
a:hover,
|
|
|
|
a:link,
|
|
|
|
a:visited {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|