@gitlab/ui 66.33.0 → 66.34.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/CHANGELOG.md +7 -0
- package/dist/tokens/css/tokens.css +1 -1
- package/dist/tokens/css/tokens.dark.css +1 -1
- package/dist/tokens/js/tokens.dark.js +1 -1
- package/dist/tokens/js/tokens.js +1 -1
- package/dist/tokens/scss/_tokens.dark.scss +1 -1
- package/dist/tokens/scss/_tokens.scss +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/utilities.scss +8 -0
- package/src/scss/utility-mixins/z-index.scss +4 -0
package/package.json
CHANGED
package/src/scss/utilities.scss
CHANGED
|
@@ -9305,6 +9305,14 @@ $gl-animate-skeleton-loader-max-width: 64 * $grid-size;
|
|
|
9305
9305
|
z-index: 200 !important
|
|
9306
9306
|
}
|
|
9307
9307
|
|
|
9308
|
+
.gl-z-index-999 {
|
|
9309
|
+
z-index: 999
|
|
9310
|
+
}
|
|
9311
|
+
|
|
9312
|
+
.gl-z-index-999\! {
|
|
9313
|
+
z-index: 999 !important
|
|
9314
|
+
}
|
|
9315
|
+
|
|
9308
9316
|
.gl-z-index-9999 {
|
|
9309
9317
|
z-index: 9999
|
|
9310
9318
|
}
|