Merge pull request #5319 from matrix-org/t3chguy/fix/null-avatar

Fix background-image: url(null) for backdrop filter
This commit is contained in:
Michael Telatynski 2020-10-15 17:48:51 +01:00 committed by GitHub
commit 0c87df4957
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -6,7 +6,7 @@
@supports (backdrop-filter: none) {
.mx_LeftPanel {
background-image: var(--avatar-url);
background-image: var(--avatar-url, unset);
background-repeat: no-repeat;
background-size: cover;
background-position: left top;