2020-07-01 16:02:20 +03:00
|
|
|
// sidebar blurred avatar background
|
|
|
|
//
|
2020-06-30 14:02:52 +03: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 14:22:13 +03:00
|
|
|
@supports (backdrop-filter: none) {
|
2020-07-18 00:22:18 +03:00
|
|
|
.mx_LeftPanel {
|
2020-06-30 14:02:52 +03:00
|
|
|
background-image: var(--avatar-url);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
2020-07-03 17:56:10 +03:00
|
|
|
background-position: left top;
|
2020-06-30 14:02:52 +03:00
|
|
|
}
|
|
|
|
|
2020-10-10 15:30:06 +03:00
|
|
|
.mx_GroupFilterPanel {
|
|
|
|
backdrop-filter: blur($GroupFilterPanel-background-blur-amount);
|
2020-06-30 14:02:52 +03:00
|
|
|
}
|
|
|
|
|
2020-07-18 00:22:18 +03:00
|
|
|
.mx_LeftPanel .mx_LeftPanel_roomListContainer {
|
2020-07-14 15:24:35 +03:00
|
|
|
backdrop-filter: blur($roomlist-background-blur-amount);
|
2020-06-30 14:02:52 +03:00
|
|
|
}
|
2020-07-03 17:50:01 +03:00
|
|
|
}
|
2020-07-03 17:53:06 +03:00
|
|
|
|
2020-07-18 00:46:46 +03:00
|
|
|
.mx_RoomSublist_showNButton {
|
2020-07-03 17:53:06 +03:00
|
|
|
background-color: transparent !important;
|
2020-06-30 14:02:52 +03:00
|
|
|
}
|
2020-07-14 13:52:28 +03:00
|
|
|
|
|
|
|
a:hover,
|
|
|
|
a:link,
|
|
|
|
a:visited {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|