@gitlab/ui 41.6.0 → 41.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "41.6.0",
3
+ "version": "41.7.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -881,6 +881,14 @@
881
881
  .gl-bg-chevron-down\! {
882
882
  background-image: url($gl-icon-chevron-down) !important
883
883
  }
884
+
885
+ .gl-backdrop-filter-blur-1 {
886
+ backdrop-filter: blur($gl-spacing-scale-1)
887
+ }
888
+
889
+ .gl-backdrop-filter-blur-1\! {
890
+ backdrop-filter: blur($gl-spacing-scale-1) !important
891
+ }
884
892
  .gl-border {
885
893
  border: solid $gl-border-size-1 $border-color;
886
894
  }
@@ -397,3 +397,13 @@
397
397
  @mixin gl-bg-chevron-down {
398
398
  background-image: url($gl-icon-chevron-down);
399
399
  }
400
+
401
+ /**
402
+ * Backdrop filter utilities
403
+ *
404
+ * naming convention: gl-filter-{filter-type}-{filter-intensity}
405
+ */
406
+
407
+ @mixin gl-backdrop-filter-blur-1 {
408
+ backdrop-filter: blur($gl-spacing-scale-1);
409
+ }