2024-03-19 11:53:35 +01:00
|
|
|
.set-blur-background(@color: @base-body-background, @opacity: 80%, @blur: saturate(180%) blur(20px)) {
|
2022-11-03 08:32:59 +01:00
|
|
|
&.uk-blur-background, .uk-blur-background {
|
|
|
|
background: fade(@color, 99%);
|
2022-07-17 15:05:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
|
2022-11-03 08:32:59 +01:00
|
|
|
&.uk-blur-background, .uk-blur-background {
|
2024-03-19 11:53:35 +01:00
|
|
|
-webkit-backdrop-filter: @blur;
|
|
|
|
backdrop-filter: @blur;
|
2023-08-25 14:40:45 +02:00
|
|
|
background: fade(@color, @opacity) !important;
|
2022-07-17 15:05:14 +02:00
|
|
|
}
|
|
|
|
}
|
2022-11-03 08:32:59 +01:00
|
|
|
|
|
|
|
/* for firefox */
|
|
|
|
@-moz-document url-prefix() {
|
|
|
|
&.uk-blur-background, .uk-blur-background {
|
|
|
|
background: fade(@color, 99%);
|
|
|
|
}
|
|
|
|
}
|
2022-07-17 15:05:14 +02:00
|
|
|
}
|