rename file to mod, for all theme modifications

This commit is contained in:
Bruno Windels 2020-07-01 15:02:20 +02:00
parent dad47148ae
commit ae0bb2a2aa
2 changed files with 4 additions and 3 deletions

View file

@ -0,0 +1,22 @@
// sidebar blurred avatar background
//
// 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
@supports (backdrop-filter: blur(100px)) {
.mx_LeftPanel2 {
background-image: var(--avatar-url);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.mx_TagPanel {
backdrop-filter: blur(100px);
}
.mx_LeftPanel2 .mx_LeftPanel2_roomListContainer {
backdrop-filter: blur(175px);
}
}