@gitlab/ui 62.12.1 → 63.0.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
|
@@ -2856,18 +2856,6 @@
|
|
|
2856
2856
|
display: none !important;
|
|
2857
2857
|
}
|
|
2858
2858
|
|
|
2859
|
-
.gl-xs-display-none {
|
|
2860
|
-
@include gl-media-breakpoint-down(sm) {
|
|
2861
|
-
display: none;
|
|
2862
|
-
}
|
|
2863
|
-
}
|
|
2864
|
-
|
|
2865
|
-
.gl-xs-display-none\! {
|
|
2866
|
-
@include gl-media-breakpoint-down(sm) {
|
|
2867
|
-
display: none !important;
|
|
2868
|
-
}
|
|
2869
|
-
}
|
|
2870
|
-
|
|
2871
2859
|
.gl-sm-display-none {
|
|
2872
2860
|
@include gl-media-breakpoint-up(sm) {
|
|
2873
2861
|
display: none;
|
|
@@ -6769,16 +6757,6 @@
|
|
|
6769
6757
|
margin-bottom: $gl-spacing-scale-3 !important;
|
|
6770
6758
|
}
|
|
6771
6759
|
}
|
|
6772
|
-
.gl-xs-mb-4 {
|
|
6773
|
-
@include gl-media-breakpoint-down(sm) {
|
|
6774
|
-
margin-bottom: $gl-spacing-scale-4;
|
|
6775
|
-
}
|
|
6776
|
-
}
|
|
6777
|
-
.gl-xs-mb-4\! {
|
|
6778
|
-
@include gl-media-breakpoint-down(sm) {
|
|
6779
|
-
margin-bottom: $gl-spacing-scale-4 !important;
|
|
6780
|
-
}
|
|
6781
|
-
}
|
|
6782
6760
|
.gl-sm-ml-3 {
|
|
6783
6761
|
@include gl-media-breakpoint-up(sm) {
|
|
6784
6762
|
margin-left: $gl-spacing-scale-3;
|
|
@@ -7171,26 +7149,6 @@
|
|
|
7171
7149
|
padding-right: $gl-spacing-scale-2 !important;
|
|
7172
7150
|
}
|
|
7173
7151
|
}
|
|
7174
|
-
.gl-sm-pr-3 {
|
|
7175
|
-
@include gl-media-breakpoint-down(sm) {
|
|
7176
|
-
padding-right: $gl-spacing-scale-3;
|
|
7177
|
-
}
|
|
7178
|
-
}
|
|
7179
|
-
.gl-sm-pr-3\! {
|
|
7180
|
-
@include gl-media-breakpoint-down(sm) {
|
|
7181
|
-
padding-right: $gl-spacing-scale-3 !important;
|
|
7182
|
-
}
|
|
7183
|
-
}
|
|
7184
|
-
.gl-sm-pr-5 {
|
|
7185
|
-
@include gl-media-breakpoint-down(sm) {
|
|
7186
|
-
padding-right: $gl-spacing-scale-5;
|
|
7187
|
-
}
|
|
7188
|
-
}
|
|
7189
|
-
.gl-sm-pr-5\! {
|
|
7190
|
-
@include gl-media-breakpoint-down(sm) {
|
|
7191
|
-
padding-right: $gl-spacing-scale-5 !important;
|
|
7192
|
-
}
|
|
7193
|
-
}
|
|
7194
7152
|
.gl-sm-pl-0 {
|
|
7195
7153
|
@include gl-media-breakpoint-up(sm) {
|
|
7196
7154
|
padding-left: 0;
|
|
@@ -7201,16 +7159,6 @@
|
|
|
7201
7159
|
padding-left: 0 !important;
|
|
7202
7160
|
}
|
|
7203
7161
|
}
|
|
7204
|
-
.gl-sm-pl-5 {
|
|
7205
|
-
@include gl-media-breakpoint-down(sm) {
|
|
7206
|
-
padding-left: $gl-spacing-scale-5;
|
|
7207
|
-
}
|
|
7208
|
-
}
|
|
7209
|
-
.gl-sm-pl-5\! {
|
|
7210
|
-
@include gl-media-breakpoint-down(sm) {
|
|
7211
|
-
padding-left: $gl-spacing-scale-5 !important;
|
|
7212
|
-
}
|
|
7213
|
-
}
|
|
7214
7162
|
.gl-sm-pl-6 {
|
|
7215
7163
|
@include gl-media-breakpoint-up(sm) {
|
|
7216
7164
|
padding-left: $gl-spacing-scale-6;
|
|
@@ -7,13 +7,6 @@
|
|
|
7
7
|
display: none;
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
@mixin gl-xs-display-none {
|
|
11
|
-
// stylelint-disable-next-line @gitlab/no-gl-media-breakpoint-down
|
|
12
|
-
@include gl-media-breakpoint-down(sm) {
|
|
13
|
-
@include gl-display-none;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
10
|
@mixin gl-sm-display-none {
|
|
18
11
|
@include gl-media-breakpoint-up(sm) {
|
|
19
12
|
@include gl-display-none;
|
|
@@ -917,13 +917,6 @@
|
|
|
917
917
|
}
|
|
918
918
|
}
|
|
919
919
|
|
|
920
|
-
@mixin gl-xs-mb-4 {
|
|
921
|
-
// stylelint-disable-next-line @gitlab/no-gl-media-breakpoint-down
|
|
922
|
-
@include gl-media-breakpoint-down(sm) {
|
|
923
|
-
@include gl-mb-4;
|
|
924
|
-
}
|
|
925
|
-
}
|
|
926
|
-
|
|
927
920
|
@mixin gl-sm-ml-3 {
|
|
928
921
|
@include gl-media-breakpoint-up(sm) {
|
|
929
922
|
@include gl-ml-3;
|
|
@@ -1161,33 +1154,12 @@
|
|
|
1161
1154
|
}
|
|
1162
1155
|
}
|
|
1163
1156
|
|
|
1164
|
-
@mixin gl-sm-pr-3 {
|
|
1165
|
-
// stylelint-disable-next-line @gitlab/no-gl-media-breakpoint-down
|
|
1166
|
-
@include gl-media-breakpoint-down(sm) {
|
|
1167
|
-
@include gl-pr-3;
|
|
1168
|
-
}
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
@mixin gl-sm-pr-5 {
|
|
1172
|
-
// stylelint-disable-next-line @gitlab/no-gl-media-breakpoint-down
|
|
1173
|
-
@include gl-media-breakpoint-down(sm) {
|
|
1174
|
-
@include gl-pr-5;
|
|
1175
|
-
}
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
1157
|
@mixin gl-sm-pl-0 {
|
|
1179
1158
|
@include gl-media-breakpoint-up(sm) {
|
|
1180
1159
|
@include gl-pl-0;
|
|
1181
1160
|
}
|
|
1182
1161
|
}
|
|
1183
1162
|
|
|
1184
|
-
@mixin gl-sm-pl-5 {
|
|
1185
|
-
// stylelint-disable-next-line @gitlab/no-gl-media-breakpoint-down
|
|
1186
|
-
@include gl-media-breakpoint-down(sm) {
|
|
1187
|
-
@include gl-pl-5;
|
|
1188
|
-
}
|
|
1189
|
-
}
|
|
1190
|
-
|
|
1191
1163
|
@mixin gl-sm-pl-6 {
|
|
1192
1164
|
@include gl-media-breakpoint-up(sm) {
|
|
1193
1165
|
@include gl-pl-6;
|