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-06-30 13:02:52 +02:00
|
|
|
.mx_LeftPanel2 {
|
|
|
|
background-image: var(--avatar-url);
|
|
|
|
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-07-01 15:02:20 +02:00
|
|
|
.mx_TagPanel {
|
2020-06-30 13:02:52 +02:00
|
|
|
backdrop-filter: blur(100px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_LeftPanel2 .mx_LeftPanel2_roomListContainer {
|
|
|
|
backdrop-filter: blur(175px);
|
|
|
|
}
|
2020-07-03 16:50:01 +02:00
|
|
|
}
|
2020-07-03 16:53:06 +02:00
|
|
|
|
|
|
|
.mx_RoomSublist2_showNButton {
|
|
|
|
background-color: transparent !important;
|
2020-06-30 13:02:52 +02:00
|
|
|
}
|