@gitlab/ui 40.4.0 → 40.5.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/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +1 -1
- package/src/scss/utilities.scss +32 -0
- package/src/scss/utility-mixins/background.scss +4 -0
- package/src/scss/utility-mixins/border.scss +4 -0
- package/src/scss/utility-mixins/color.scss +4 -0
- package/src/scss/utility-mixins/sizing.scss +4 -0
package/package.json
CHANGED
package/src/scss/utilities.scss
CHANGED
|
@@ -418,6 +418,14 @@
|
|
|
418
418
|
background-color: $purple-50 !important
|
|
419
419
|
}
|
|
420
420
|
|
|
421
|
+
.gl-bg-purple-800 {
|
|
422
|
+
background-color: $purple-800
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.gl-bg-purple-800\! {
|
|
426
|
+
background-color: $purple-800 !important
|
|
427
|
+
}
|
|
428
|
+
|
|
421
429
|
.gl-bg-red-50 {
|
|
422
430
|
background-color: $red-50
|
|
423
431
|
}
|
|
@@ -1197,6 +1205,14 @@
|
|
|
1197
1205
|
border-color: $blue-700 !important;
|
|
1198
1206
|
}
|
|
1199
1207
|
|
|
1208
|
+
.gl-border-purple-700 {
|
|
1209
|
+
border-color: $purple-700;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.gl-border-purple-700\! {
|
|
1213
|
+
border-color: $purple-700 !important;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1200
1216
|
.gl-border-gray-a-08 {
|
|
1201
1217
|
border-color: $t-gray-a-08;
|
|
1202
1218
|
}
|
|
@@ -2475,6 +2491,14 @@
|
|
|
2475
2491
|
color: $purple-700 !important;
|
|
2476
2492
|
}
|
|
2477
2493
|
|
|
2494
|
+
.gl-text-purple-800 {
|
|
2495
|
+
color: $purple-800;
|
|
2496
|
+
}
|
|
2497
|
+
|
|
2498
|
+
.gl-text-purple-800\! {
|
|
2499
|
+
color: $purple-800 !important;
|
|
2500
|
+
}
|
|
2501
|
+
|
|
2478
2502
|
.gl-text-theme-indigo-200 {
|
|
2479
2503
|
color: $theme-indigo-200;
|
|
2480
2504
|
}
|
|
@@ -4723,6 +4747,14 @@
|
|
|
4723
4747
|
min-height: $gl-spacing-scale-7 !important;
|
|
4724
4748
|
}
|
|
4725
4749
|
|
|
4750
|
+
.gl-min-h-8 {
|
|
4751
|
+
min-height: $gl-spacing-scale-8;
|
|
4752
|
+
}
|
|
4753
|
+
|
|
4754
|
+
.gl-min-h-8\! {
|
|
4755
|
+
min-height: $gl-spacing-scale-8 !important;
|
|
4756
|
+
}
|
|
4757
|
+
|
|
4726
4758
|
.gl-max-w-15 {
|
|
4727
4759
|
max-width: $gl-spacing-scale-15;
|
|
4728
4760
|
}
|