@gitlab/ui 37.5.2 → 37.6.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": "37.5.2",
3
+ "version": "37.6.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -1896,6 +1896,14 @@
1896
1896
  box-shadow: inset 0 0 0 $gl-border-size-1 $red-600 !important
1897
1897
  }
1898
1898
 
1899
+ .gl-inset-border-l-3-red-600 {
1900
+ box-shadow: inset $gl-border-size-3 0 0 0 $red-600
1901
+ }
1902
+
1903
+ .gl-inset-border-l-3-red-600\! {
1904
+ box-shadow: inset $gl-border-size-3 0 0 0 $red-600 !important
1905
+ }
1906
+
1899
1907
  .gl-inset-border-b-2-theme-accent {
1900
1908
  box-shadow: inset 0 -#{$gl-border-size-2} 0 0 var(--gl-theme-accent, $theme-indigo-500)
1901
1909
  }
@@ -104,6 +104,10 @@
104
104
  box-shadow: inset 0 0 0 $gl-border-size-1 $red-600;
105
105
  }
106
106
 
107
+ @mixin gl-inset-border-l-3-red-600 {
108
+ box-shadow: inset $gl-border-size-3 0 0 0 $red-600;
109
+ }
110
+
107
111
  @mixin gl-inset-border-b-2-theme-accent {
108
112
  box-shadow: inset 0 -#{$gl-border-size-2} 0 0 var(--gl-theme-accent, $theme-indigo-500);
109
113
  }