chore(ui): tweak toast background

This commit is contained in:
Łukasz Mierzwa
2021-05-01 00:00:56 +01:00
committed by Łukasz Mierzwa
parent fd5dc0073d
commit e7e1bdb426
2 changed files with 12 additions and 1 deletions

View File

@@ -24,6 +24,11 @@ alertmanager:
proxy: true
cors:
credentials: same-origin
healthcheck:
filters:
DeadMansSwitch:
- alertname=Random Instances
- instance=server30
alertAcknowledgement:
enabled: true

View File

@@ -21,7 +21,13 @@
}
.bg-toast {
background-color: darken($dark, 5%);
@supports (backdrop-filter: blur(1px)) {
background-color: rgba(darken($dark, 5%), 0.85);
backdrop-filter: saturate(50%) blur(6px);
}
@supports not (backdrop-filter: blur(1px)) {
background-color: darken($dark, 5%);
}
}
.toast-upgrade-progressbar {