mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 11:34:21 +00:00
glass
: Wrap in a @supports
CSS guard
To prevent Safari from drawing background-less panels
This commit is contained in:
parent
892ae7055b
commit
178a4ec54c
1 changed files with 43 additions and 38 deletions
|
@ -9,6 +9,9 @@
|
|||
--b-panel-blur: 16px;
|
||||
}
|
||||
|
||||
// Ensure that browsers not supporting backdrop-filter do not apply this style
|
||||
@supports (backdrop-filter: blur(var(--b-panel-blur))) {
|
||||
|
||||
@{panel}, @{table}@{panel} > @{table-caption} {
|
||||
background-color: .hsl-group(background; 0.3)[@c];
|
||||
backdrop-filter:
|
||||
|
@ -62,4 +65,6 @@
|
|||
background-color: .hsl-group(todo-background)[@c];
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue