@gitlab/ui 43.18.0 → 43.20.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 +15 -0
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +3 -3
- package/src/components/base/datepicker/datepicker.spec.js +1 -1
- package/src/components/base/modal/modal.spec.js +1 -1
- package/src/components/base/new_dropdowns/listbox/listbox.spec.js +1 -1
- package/src/scss/utilities.scss +114 -92
- package/src/scss/utility-mixins/position.scss +6 -0
- package/src/scss/utility-mixins/spacing.scss +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitlab/ui",
|
|
3
|
-
"version": "43.
|
|
3
|
+
"version": "43.20.0",
|
|
4
4
|
"description": "GitLab UI Components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"@arkweid/lefthook": "0.7.7",
|
|
80
80
|
"@babel/core": "^7.19.1",
|
|
81
81
|
"@babel/preset-env": "^7.19.1",
|
|
82
|
-
"@gitlab/eslint-plugin": "
|
|
82
|
+
"@gitlab/eslint-plugin": "18.0.0",
|
|
83
83
|
"@gitlab/stylelint-config": "4.1.0",
|
|
84
84
|
"@gitlab/svgs": "3.3.0",
|
|
85
85
|
"@rollup/plugin-commonjs": "^11.1.0",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"bootstrap": "4.5.3",
|
|
105
105
|
"cypress": "^10.8.0",
|
|
106
106
|
"emoji-regex": "^10.0.0",
|
|
107
|
-
"eslint": "8.23.
|
|
107
|
+
"eslint": "8.23.1",
|
|
108
108
|
"eslint-import-resolver-jest": "3.0.2",
|
|
109
109
|
"eslint-plugin-cypress": "2.12.1",
|
|
110
110
|
"eslint-plugin-storybook": "0.6.4",
|
|
@@ -397,7 +397,7 @@ describe('datepicker component', () => {
|
|
|
397
397
|
${'2021-09-27'} | ${new Date(2021, 8, 27)}
|
|
398
398
|
${'2021/09/27'} | ${new Date(2021, 8, 27)}
|
|
399
399
|
${'foobarbaz'} | ${currentDate}
|
|
400
|
-
`('
|
|
400
|
+
`('parses $dateString correctly', ({ dateString, parsedDate }) => {
|
|
401
401
|
mountWithOptions();
|
|
402
402
|
|
|
403
403
|
const config = pikadayConfig();
|
|
@@ -237,7 +237,7 @@ describe('Modal component', () => {
|
|
|
237
237
|
});
|
|
238
238
|
});
|
|
239
239
|
|
|
240
|
-
it('
|
|
240
|
+
it('binds visible property to the BModal visible property', async () => {
|
|
241
241
|
createComponent({ stubModal: false });
|
|
242
242
|
|
|
243
243
|
expect(wrapper.props().visible).toBe(false);
|
|
@@ -102,7 +102,7 @@ describe('GlListbox', () => {
|
|
|
102
102
|
selected: [mockOptions[1].value, mockOptions[2].value],
|
|
103
103
|
items: mockOptions,
|
|
104
104
|
});
|
|
105
|
-
}).
|
|
105
|
+
}).toThrow('To allow multi-selection, please, set "multiple" property to "true"');
|
|
106
106
|
expect(wrapper).toHaveLoggedVueErrors();
|
|
107
107
|
});
|
|
108
108
|
|
package/src/scss/utilities.scss
CHANGED
|
@@ -3909,371 +3909,383 @@
|
|
|
3909
3909
|
pointer-events: auto !important
|
|
3910
3910
|
}
|
|
3911
3911
|
.gl-relative {
|
|
3912
|
-
position: relative
|
|
3912
|
+
position: relative;
|
|
3913
3913
|
}
|
|
3914
3914
|
|
|
3915
3915
|
.gl-relative\! {
|
|
3916
|
-
position: relative !important
|
|
3916
|
+
position: relative !important;
|
|
3917
3917
|
}
|
|
3918
3918
|
|
|
3919
3919
|
.gl-absolute {
|
|
3920
|
-
position: absolute
|
|
3920
|
+
position: absolute;
|
|
3921
3921
|
}
|
|
3922
3922
|
|
|
3923
3923
|
.gl-absolute\! {
|
|
3924
|
-
position: absolute !important
|
|
3924
|
+
position: absolute !important;
|
|
3925
3925
|
}
|
|
3926
3926
|
|
|
3927
3927
|
.gl-static {
|
|
3928
|
-
position: static
|
|
3928
|
+
position: static;
|
|
3929
3929
|
}
|
|
3930
3930
|
|
|
3931
3931
|
.gl-static\! {
|
|
3932
|
-
position: static !important
|
|
3932
|
+
position: static !important;
|
|
3933
3933
|
}
|
|
3934
3934
|
|
|
3935
3935
|
.gl-fixed {
|
|
3936
|
-
position: fixed
|
|
3936
|
+
position: fixed;
|
|
3937
3937
|
}
|
|
3938
3938
|
|
|
3939
3939
|
.gl-fixed\! {
|
|
3940
|
-
position: fixed !important
|
|
3940
|
+
position: fixed !important;
|
|
3941
3941
|
}
|
|
3942
3942
|
|
|
3943
3943
|
.gl-sticky {
|
|
3944
|
-
position: sticky
|
|
3944
|
+
position: sticky;
|
|
3945
3945
|
}
|
|
3946
3946
|
|
|
3947
3947
|
.gl-sticky\! {
|
|
3948
|
-
position: sticky !important
|
|
3948
|
+
position: sticky !important;
|
|
3949
|
+
}
|
|
3950
|
+
|
|
3951
|
+
.gl-lg-sticky {
|
|
3952
|
+
@include gl-media-breakpoint-up(lg) {
|
|
3953
|
+
position: sticky;
|
|
3954
|
+
}
|
|
3955
|
+
}
|
|
3956
|
+
|
|
3957
|
+
.gl-lg-sticky\! {
|
|
3958
|
+
@include gl-media-breakpoint-up(lg) {
|
|
3959
|
+
position: sticky !important;
|
|
3960
|
+
}
|
|
3949
3961
|
}
|
|
3950
3962
|
|
|
3951
3963
|
.gl-top-auto {
|
|
3952
|
-
top: auto
|
|
3964
|
+
top: auto;
|
|
3953
3965
|
}
|
|
3954
3966
|
|
|
3955
3967
|
.gl-top-auto\! {
|
|
3956
|
-
top: auto !important
|
|
3968
|
+
top: auto !important;
|
|
3957
3969
|
}
|
|
3958
3970
|
|
|
3959
3971
|
.gl-top-0 {
|
|
3960
|
-
top: 0
|
|
3972
|
+
top: 0;
|
|
3961
3973
|
}
|
|
3962
3974
|
|
|
3963
3975
|
.gl-top-0\! {
|
|
3964
|
-
top: 0 !important
|
|
3976
|
+
top: 0 !important;
|
|
3965
3977
|
}
|
|
3966
3978
|
|
|
3967
3979
|
.gl-top-1 {
|
|
3968
|
-
top: $gl-spacing-scale-1
|
|
3980
|
+
top: $gl-spacing-scale-1;
|
|
3969
3981
|
}
|
|
3970
3982
|
|
|
3971
3983
|
.gl-top-1\! {
|
|
3972
|
-
top: $gl-spacing-scale-1 !important
|
|
3984
|
+
top: $gl-spacing-scale-1 !important;
|
|
3973
3985
|
}
|
|
3974
3986
|
|
|
3975
3987
|
.gl-top-2 {
|
|
3976
|
-
top: $gl-spacing-scale-2
|
|
3988
|
+
top: $gl-spacing-scale-2;
|
|
3977
3989
|
}
|
|
3978
3990
|
|
|
3979
3991
|
.gl-top-2\! {
|
|
3980
|
-
top: $gl-spacing-scale-2 !important
|
|
3992
|
+
top: $gl-spacing-scale-2 !important;
|
|
3981
3993
|
}
|
|
3982
3994
|
|
|
3983
3995
|
.gl-top-3 {
|
|
3984
|
-
top: $gl-spacing-scale-3
|
|
3996
|
+
top: $gl-spacing-scale-3;
|
|
3985
3997
|
}
|
|
3986
3998
|
|
|
3987
3999
|
.gl-top-3\! {
|
|
3988
|
-
top: $gl-spacing-scale-3 !important
|
|
4000
|
+
top: $gl-spacing-scale-3 !important;
|
|
3989
4001
|
}
|
|
3990
4002
|
|
|
3991
4003
|
.gl-top-4 {
|
|
3992
|
-
top: $gl-spacing-scale-4
|
|
4004
|
+
top: $gl-spacing-scale-4;
|
|
3993
4005
|
}
|
|
3994
4006
|
|
|
3995
4007
|
.gl-top-4\! {
|
|
3996
|
-
top: $gl-spacing-scale-4 !important
|
|
4008
|
+
top: $gl-spacing-scale-4 !important;
|
|
3997
4009
|
}
|
|
3998
4010
|
|
|
3999
4011
|
.gl-top-5 {
|
|
4000
|
-
top: $gl-spacing-scale-5
|
|
4012
|
+
top: $gl-spacing-scale-5;
|
|
4001
4013
|
}
|
|
4002
4014
|
|
|
4003
4015
|
.gl-top-5\! {
|
|
4004
|
-
top: $gl-spacing-scale-5 !important
|
|
4016
|
+
top: $gl-spacing-scale-5 !important;
|
|
4005
4017
|
}
|
|
4006
4018
|
|
|
4007
4019
|
.gl-top-6 {
|
|
4008
|
-
top: $gl-spacing-scale-6
|
|
4020
|
+
top: $gl-spacing-scale-6;
|
|
4009
4021
|
}
|
|
4010
4022
|
|
|
4011
4023
|
.gl-top-6\! {
|
|
4012
|
-
top: $gl-spacing-scale-6 !important
|
|
4024
|
+
top: $gl-spacing-scale-6 !important;
|
|
4013
4025
|
}
|
|
4014
4026
|
|
|
4015
4027
|
.gl-top-7 {
|
|
4016
|
-
top: $gl-spacing-scale-7
|
|
4028
|
+
top: $gl-spacing-scale-7;
|
|
4017
4029
|
}
|
|
4018
4030
|
|
|
4019
4031
|
.gl-top-7\! {
|
|
4020
|
-
top: $gl-spacing-scale-7 !important
|
|
4032
|
+
top: $gl-spacing-scale-7 !important;
|
|
4021
4033
|
}
|
|
4022
4034
|
|
|
4023
4035
|
.gl-top-8 {
|
|
4024
|
-
top: $gl-spacing-scale-8
|
|
4036
|
+
top: $gl-spacing-scale-8;
|
|
4025
4037
|
}
|
|
4026
4038
|
|
|
4027
4039
|
.gl-top-8\! {
|
|
4028
|
-
top: $gl-spacing-scale-8 !important
|
|
4040
|
+
top: $gl-spacing-scale-8 !important;
|
|
4029
4041
|
}
|
|
4030
4042
|
|
|
4031
4043
|
.gl-top-half {
|
|
4032
|
-
top: 50
|
|
4044
|
+
top: 50%;
|
|
4033
4045
|
}
|
|
4034
4046
|
|
|
4035
4047
|
.gl-top-half\! {
|
|
4036
|
-
top: 50% !important
|
|
4048
|
+
top: 50% !important;
|
|
4037
4049
|
}
|
|
4038
4050
|
|
|
4039
4051
|
.gl-right-auto {
|
|
4040
|
-
right: auto
|
|
4052
|
+
right: auto;
|
|
4041
4053
|
}
|
|
4042
4054
|
|
|
4043
4055
|
.gl-right-auto\! {
|
|
4044
|
-
right: auto !important
|
|
4056
|
+
right: auto !important;
|
|
4045
4057
|
}
|
|
4046
4058
|
|
|
4047
4059
|
.gl-right-0 {
|
|
4048
|
-
right: 0
|
|
4060
|
+
right: 0;
|
|
4049
4061
|
}
|
|
4050
4062
|
|
|
4051
4063
|
.gl-right-0\! {
|
|
4052
|
-
right: 0 !important
|
|
4064
|
+
right: 0 !important;
|
|
4053
4065
|
}
|
|
4054
4066
|
|
|
4055
4067
|
.gl-right-1 {
|
|
4056
|
-
right: $gl-spacing-scale-1
|
|
4068
|
+
right: $gl-spacing-scale-1;
|
|
4057
4069
|
}
|
|
4058
4070
|
|
|
4059
4071
|
.gl-right-1\! {
|
|
4060
|
-
right: $gl-spacing-scale-1 !important
|
|
4072
|
+
right: $gl-spacing-scale-1 !important;
|
|
4061
4073
|
}
|
|
4062
4074
|
|
|
4063
4075
|
.gl-right-2 {
|
|
4064
|
-
right: $gl-spacing-scale-2
|
|
4076
|
+
right: $gl-spacing-scale-2;
|
|
4065
4077
|
}
|
|
4066
4078
|
|
|
4067
4079
|
.gl-right-2\! {
|
|
4068
|
-
right: $gl-spacing-scale-2 !important
|
|
4080
|
+
right: $gl-spacing-scale-2 !important;
|
|
4069
4081
|
}
|
|
4070
4082
|
|
|
4071
4083
|
.gl-right-3 {
|
|
4072
|
-
right: $gl-spacing-scale-3
|
|
4084
|
+
right: $gl-spacing-scale-3;
|
|
4073
4085
|
}
|
|
4074
4086
|
|
|
4075
4087
|
.gl-right-3\! {
|
|
4076
|
-
right: $gl-spacing-scale-3 !important
|
|
4088
|
+
right: $gl-spacing-scale-3 !important;
|
|
4077
4089
|
}
|
|
4078
4090
|
|
|
4079
4091
|
.gl-right-4 {
|
|
4080
|
-
right: $gl-spacing-scale-4
|
|
4092
|
+
right: $gl-spacing-scale-4;
|
|
4081
4093
|
}
|
|
4082
4094
|
|
|
4083
4095
|
.gl-right-4\! {
|
|
4084
|
-
right: $gl-spacing-scale-4 !important
|
|
4096
|
+
right: $gl-spacing-scale-4 !important;
|
|
4085
4097
|
}
|
|
4086
4098
|
|
|
4087
4099
|
.gl-right-5 {
|
|
4088
|
-
right: $gl-spacing-scale-5
|
|
4100
|
+
right: $gl-spacing-scale-5;
|
|
4089
4101
|
}
|
|
4090
4102
|
|
|
4091
4103
|
.gl-right-5\! {
|
|
4092
|
-
right: $gl-spacing-scale-5 !important
|
|
4104
|
+
right: $gl-spacing-scale-5 !important;
|
|
4093
4105
|
}
|
|
4094
4106
|
|
|
4095
4107
|
.gl-right-6 {
|
|
4096
|
-
right: $gl-spacing-scale-6
|
|
4108
|
+
right: $gl-spacing-scale-6;
|
|
4097
4109
|
}
|
|
4098
4110
|
|
|
4099
4111
|
.gl-right-6\! {
|
|
4100
|
-
right: $gl-spacing-scale-6 !important
|
|
4112
|
+
right: $gl-spacing-scale-6 !important;
|
|
4101
4113
|
}
|
|
4102
4114
|
|
|
4103
4115
|
.gl-right-7 {
|
|
4104
|
-
right: $gl-spacing-scale-7
|
|
4116
|
+
right: $gl-spacing-scale-7;
|
|
4105
4117
|
}
|
|
4106
4118
|
|
|
4107
4119
|
.gl-right-7\! {
|
|
4108
|
-
right: $gl-spacing-scale-7 !important
|
|
4120
|
+
right: $gl-spacing-scale-7 !important;
|
|
4109
4121
|
}
|
|
4110
4122
|
|
|
4111
4123
|
.gl-bottom-0 {
|
|
4112
|
-
bottom: 0
|
|
4124
|
+
bottom: 0;
|
|
4113
4125
|
}
|
|
4114
4126
|
|
|
4115
4127
|
.gl-bottom-0\! {
|
|
4116
|
-
bottom: 0 !important
|
|
4128
|
+
bottom: 0 !important;
|
|
4117
4129
|
}
|
|
4118
4130
|
|
|
4119
4131
|
.gl-bottom-1 {
|
|
4120
|
-
bottom: $gl-spacing-scale-1
|
|
4132
|
+
bottom: $gl-spacing-scale-1;
|
|
4121
4133
|
}
|
|
4122
4134
|
|
|
4123
4135
|
.gl-bottom-1\! {
|
|
4124
|
-
bottom: $gl-spacing-scale-1 !important
|
|
4136
|
+
bottom: $gl-spacing-scale-1 !important;
|
|
4125
4137
|
}
|
|
4126
4138
|
|
|
4127
4139
|
.gl-bottom-2 {
|
|
4128
|
-
bottom: $gl-spacing-scale-2
|
|
4140
|
+
bottom: $gl-spacing-scale-2;
|
|
4129
4141
|
}
|
|
4130
4142
|
|
|
4131
4143
|
.gl-bottom-2\! {
|
|
4132
|
-
bottom: $gl-spacing-scale-2 !important
|
|
4144
|
+
bottom: $gl-spacing-scale-2 !important;
|
|
4133
4145
|
}
|
|
4134
4146
|
|
|
4135
4147
|
.gl-bottom-3 {
|
|
4136
|
-
bottom: $gl-spacing-scale-3
|
|
4148
|
+
bottom: $gl-spacing-scale-3;
|
|
4137
4149
|
}
|
|
4138
4150
|
|
|
4139
4151
|
.gl-bottom-3\! {
|
|
4140
|
-
bottom: $gl-spacing-scale-3 !important
|
|
4152
|
+
bottom: $gl-spacing-scale-3 !important;
|
|
4141
4153
|
}
|
|
4142
4154
|
|
|
4143
4155
|
.gl-bottom-4 {
|
|
4144
|
-
bottom: $gl-spacing-scale-4
|
|
4156
|
+
bottom: $gl-spacing-scale-4;
|
|
4145
4157
|
}
|
|
4146
4158
|
|
|
4147
4159
|
.gl-bottom-4\! {
|
|
4148
|
-
bottom: $gl-spacing-scale-4 !important
|
|
4160
|
+
bottom: $gl-spacing-scale-4 !important;
|
|
4149
4161
|
}
|
|
4150
4162
|
|
|
4151
4163
|
.gl-bottom-5 {
|
|
4152
|
-
bottom: $gl-spacing-scale-5
|
|
4164
|
+
bottom: $gl-spacing-scale-5;
|
|
4153
4165
|
}
|
|
4154
4166
|
|
|
4155
4167
|
.gl-bottom-5\! {
|
|
4156
|
-
bottom: $gl-spacing-scale-5 !important
|
|
4168
|
+
bottom: $gl-spacing-scale-5 !important;
|
|
4157
4169
|
}
|
|
4158
4170
|
|
|
4159
4171
|
.gl-bottom-6 {
|
|
4160
|
-
bottom: $gl-spacing-scale-6
|
|
4172
|
+
bottom: $gl-spacing-scale-6;
|
|
4161
4173
|
}
|
|
4162
4174
|
|
|
4163
4175
|
.gl-bottom-6\! {
|
|
4164
|
-
bottom: $gl-spacing-scale-6 !important
|
|
4176
|
+
bottom: $gl-spacing-scale-6 !important;
|
|
4165
4177
|
}
|
|
4166
4178
|
|
|
4167
4179
|
.gl-bottom-7 {
|
|
4168
|
-
bottom: $gl-spacing-scale-7
|
|
4180
|
+
bottom: $gl-spacing-scale-7;
|
|
4169
4181
|
}
|
|
4170
4182
|
|
|
4171
4183
|
.gl-bottom-7\! {
|
|
4172
|
-
bottom: $gl-spacing-scale-7 !important
|
|
4184
|
+
bottom: $gl-spacing-scale-7 !important;
|
|
4173
4185
|
}
|
|
4174
4186
|
|
|
4175
4187
|
.gl-left-auto {
|
|
4176
|
-
left: auto
|
|
4188
|
+
left: auto;
|
|
4177
4189
|
}
|
|
4178
4190
|
|
|
4179
4191
|
.gl-left-auto\! {
|
|
4180
|
-
left: auto !important
|
|
4192
|
+
left: auto !important;
|
|
4181
4193
|
}
|
|
4182
4194
|
|
|
4183
4195
|
.gl-left-0 {
|
|
4184
|
-
left: 0
|
|
4196
|
+
left: 0;
|
|
4185
4197
|
}
|
|
4186
4198
|
|
|
4187
4199
|
.gl-left-0\! {
|
|
4188
|
-
left: 0 !important
|
|
4200
|
+
left: 0 !important;
|
|
4189
4201
|
}
|
|
4190
4202
|
|
|
4191
4203
|
.gl-left-1 {
|
|
4192
|
-
left: $gl-spacing-scale-1
|
|
4204
|
+
left: $gl-spacing-scale-1;
|
|
4193
4205
|
}
|
|
4194
4206
|
|
|
4195
4207
|
.gl-left-1\! {
|
|
4196
|
-
left: $gl-spacing-scale-1 !important
|
|
4208
|
+
left: $gl-spacing-scale-1 !important;
|
|
4197
4209
|
}
|
|
4198
4210
|
|
|
4199
4211
|
.gl-left-2 {
|
|
4200
|
-
left: $gl-spacing-scale-2
|
|
4212
|
+
left: $gl-spacing-scale-2;
|
|
4201
4213
|
}
|
|
4202
4214
|
|
|
4203
4215
|
.gl-left-2\! {
|
|
4204
|
-
left: $gl-spacing-scale-2 !important
|
|
4216
|
+
left: $gl-spacing-scale-2 !important;
|
|
4205
4217
|
}
|
|
4206
4218
|
|
|
4207
4219
|
.gl-left-3 {
|
|
4208
|
-
left: $gl-spacing-scale-3
|
|
4220
|
+
left: $gl-spacing-scale-3;
|
|
4209
4221
|
}
|
|
4210
4222
|
|
|
4211
4223
|
.gl-left-3\! {
|
|
4212
|
-
left: $gl-spacing-scale-3 !important
|
|
4224
|
+
left: $gl-spacing-scale-3 !important;
|
|
4213
4225
|
}
|
|
4214
4226
|
|
|
4215
4227
|
.gl-left-4 {
|
|
4216
|
-
left: $gl-spacing-scale-4
|
|
4228
|
+
left: $gl-spacing-scale-4;
|
|
4217
4229
|
}
|
|
4218
4230
|
|
|
4219
4231
|
.gl-left-4\! {
|
|
4220
|
-
left: $gl-spacing-scale-4 !important
|
|
4232
|
+
left: $gl-spacing-scale-4 !important;
|
|
4221
4233
|
}
|
|
4222
4234
|
|
|
4223
4235
|
.gl-left-5 {
|
|
4224
|
-
left: $gl-spacing-scale-5
|
|
4236
|
+
left: $gl-spacing-scale-5;
|
|
4225
4237
|
}
|
|
4226
4238
|
|
|
4227
4239
|
.gl-left-5\! {
|
|
4228
|
-
left: $gl-spacing-scale-5 !important
|
|
4240
|
+
left: $gl-spacing-scale-5 !important;
|
|
4229
4241
|
}
|
|
4230
4242
|
|
|
4231
4243
|
.gl-left-6 {
|
|
4232
|
-
left: $gl-spacing-scale-6
|
|
4244
|
+
left: $gl-spacing-scale-6;
|
|
4233
4245
|
}
|
|
4234
4246
|
|
|
4235
4247
|
.gl-left-6\! {
|
|
4236
|
-
left: $gl-spacing-scale-6 !important
|
|
4248
|
+
left: $gl-spacing-scale-6 !important;
|
|
4237
4249
|
}
|
|
4238
4250
|
|
|
4239
4251
|
.gl-left-7 {
|
|
4240
|
-
left: $gl-spacing-scale-7
|
|
4252
|
+
left: $gl-spacing-scale-7;
|
|
4241
4253
|
}
|
|
4242
4254
|
|
|
4243
4255
|
.gl-left-7\! {
|
|
4244
|
-
left: $gl-spacing-scale-7 !important
|
|
4256
|
+
left: $gl-spacing-scale-7 !important;
|
|
4245
4257
|
}
|
|
4246
4258
|
|
|
4247
4259
|
.gl-left-50p {
|
|
4248
|
-
left: 50
|
|
4260
|
+
left: 50%;
|
|
4249
4261
|
}
|
|
4250
4262
|
|
|
4251
4263
|
.gl-left-50p\! {
|
|
4252
|
-
left: 50% !important
|
|
4264
|
+
left: 50% !important;
|
|
4253
4265
|
}
|
|
4254
4266
|
|
|
4255
4267
|
.gl-top-n5 {
|
|
4256
|
-
top: -$gl-spacing-scale-5
|
|
4268
|
+
top: -$gl-spacing-scale-5;
|
|
4257
4269
|
}
|
|
4258
4270
|
|
|
4259
4271
|
.gl-top-n5\! {
|
|
4260
|
-
top: -$gl-spacing-scale-5 !important
|
|
4272
|
+
top: -$gl-spacing-scale-5 !important;
|
|
4261
4273
|
}
|
|
4262
4274
|
|
|
4263
4275
|
.gl-float-left {
|
|
4264
|
-
float: left
|
|
4276
|
+
float: left;
|
|
4265
4277
|
}
|
|
4266
4278
|
|
|
4267
4279
|
.gl-float-left\! {
|
|
4268
|
-
float: left !important
|
|
4280
|
+
float: left !important;
|
|
4269
4281
|
}
|
|
4270
4282
|
|
|
4271
4283
|
.gl-float-right {
|
|
4272
|
-
float: right
|
|
4284
|
+
float: right;
|
|
4273
4285
|
}
|
|
4274
4286
|
|
|
4275
4287
|
.gl-float-right\! {
|
|
4276
|
-
float: right !important
|
|
4288
|
+
float: right !important;
|
|
4277
4289
|
}
|
|
4278
4290
|
.gl-w-auto {
|
|
4279
4291
|
width: auto;
|
|
@@ -6486,6 +6498,16 @@
|
|
|
6486
6498
|
margin-bottom: $gl-spacing-scale-5 !important;
|
|
6487
6499
|
}
|
|
6488
6500
|
}
|
|
6501
|
+
.gl-md-ml-auto {
|
|
6502
|
+
@include gl-media-breakpoint-up(md) {
|
|
6503
|
+
margin-left: auto;
|
|
6504
|
+
}
|
|
6505
|
+
}
|
|
6506
|
+
.gl-md-ml-auto\! {
|
|
6507
|
+
@include gl-media-breakpoint-up(md) {
|
|
6508
|
+
margin-left: auto !important;
|
|
6509
|
+
}
|
|
6510
|
+
}
|
|
6489
6511
|
.gl-md-ml-2 {
|
|
6490
6512
|
@include gl-media-breakpoint-up(md) {
|
|
6491
6513
|
margin-left: $gl-spacing-scale-2;
|