@gitlab/ui 43.3.0 → 43.4.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
package/src/scss/utilities.scss
CHANGED
|
@@ -3778,6 +3778,14 @@
|
|
|
3778
3778
|
overflow-wrap: anywhere !important
|
|
3779
3779
|
}
|
|
3780
3780
|
|
|
3781
|
+
.gl-overflow-x-scroll {
|
|
3782
|
+
overflow-x: scroll
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3785
|
+
.gl-overflow-x-scroll\! {
|
|
3786
|
+
overflow-x: scroll !important
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3781
3789
|
.gl-overflow-scroll {
|
|
3782
3790
|
overflow: scroll
|
|
3783
3791
|
}
|
|
@@ -7478,9 +7486,27 @@
|
|
|
7478
7486
|
.gl-text-decoration-underline {
|
|
7479
7487
|
text-decoration: underline;
|
|
7480
7488
|
}
|
|
7489
|
+
.gl-active-text-decoration-underline:active {
|
|
7490
|
+
text-decoration: underline;
|
|
7491
|
+
}
|
|
7492
|
+
.gl-focus-text-decoration-underline:focus {
|
|
7493
|
+
text-decoration: underline;
|
|
7494
|
+
}
|
|
7495
|
+
.gl-hover-text-decoration-underline:hover {
|
|
7496
|
+
text-decoration: underline;
|
|
7497
|
+
}
|
|
7481
7498
|
.gl-text-decoration-underline\! {
|
|
7482
7499
|
text-decoration: underline !important;
|
|
7483
7500
|
}
|
|
7501
|
+
.gl-active-text-decoration-underline\!:active {
|
|
7502
|
+
text-decoration: underline !important;
|
|
7503
|
+
}
|
|
7504
|
+
.gl-focus-text-decoration-underline\!:focus {
|
|
7505
|
+
text-decoration: underline !important;
|
|
7506
|
+
}
|
|
7507
|
+
.gl-hover-text-decoration-underline\!:hover {
|
|
7508
|
+
text-decoration: underline !important;
|
|
7509
|
+
}
|
|
7484
7510
|
.gl-reset-text-decoration-color {
|
|
7485
7511
|
text-decoration-color: inherit;
|
|
7486
7512
|
}
|