@gitlab/ui 58.2.1 → 58.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/CHANGELOG.md +14 -0
- package/dist/components/base/new_dropdowns/listbox/listbox.js +11 -1
- package/dist/index.css.map +1 -1
- package/dist/utility_classes.css +1 -1
- package/dist/utility_classes.css.map +1 -1
- package/package.json +1 -1
- package/scss_to_js/scss_variables.js +4 -0
- package/scss_to_js/scss_variables.json +20 -0
- package/src/components/base/new_dropdowns/listbox/listbox.spec.js +30 -0
- package/src/components/base/new_dropdowns/listbox/listbox.stories.js +7 -3
- package/src/components/base/new_dropdowns/listbox/listbox.vue +12 -1
- package/src/scss/utilities.scss +317 -73
- package/src/scss/utility-mixins/background.scss +4 -0
- package/src/scss/utility-mixins/border.scss +5 -0
- package/src/scss/utility-mixins/box-shadow.scss +8 -0
- package/src/scss/utility-mixins/composite.scss +4 -0
- package/src/scss/utility-mixins/flex.scss +14 -0
- package/src/scss/utility-mixins/grid.scss +12 -0
- package/src/scss/utility-mixins/index.scss +1 -0
- package/src/scss/utility-mixins/isolation.scss +3 -0
- package/src/scss/utility-mixins/position.scss +4 -0
- package/src/scss/utility-mixins/sizing.scss +20 -0
- package/src/scss/utility-mixins/spacing.scss +65 -0
- package/src/scss/utility-mixins/text.scss +4 -0
- package/src/scss/utility-mixins/transition.scss +8 -0
- package/src/scss/utility-mixins/typography.scss +21 -0
- package/src/scss/variables.scss +4 -0
package/src/scss/utilities.scss
CHANGED
|
@@ -474,6 +474,22 @@
|
|
|
474
474
|
background-color: $red-700 !important
|
|
475
475
|
}
|
|
476
476
|
|
|
477
|
+
.gl-bg-t-gray-a-08 {
|
|
478
|
+
background-color: $t-gray-a-08
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.gl-hover-bg-t-gray-a-08:hover {
|
|
482
|
+
background-color: $t-gray-a-08
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.gl-bg-t-gray-a-08\! {
|
|
486
|
+
background-color: $t-gray-a-08 !important
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.gl-hover-bg-t-gray-a-08\!:hover {
|
|
490
|
+
background-color: $t-gray-a-08 !important
|
|
491
|
+
}
|
|
492
|
+
|
|
477
493
|
.gl-bg-theme-indigo-50 {
|
|
478
494
|
background-color: $theme-indigo-50
|
|
479
495
|
}
|
|
@@ -1743,6 +1759,16 @@
|
|
|
1743
1759
|
border-bottom-right-radius: 0 !important;
|
|
1744
1760
|
}
|
|
1745
1761
|
|
|
1762
|
+
.gl-rounded-bottom-base {
|
|
1763
|
+
border-bottom-left-radius: $gl-border-radius-base;
|
|
1764
|
+
border-bottom-right-radius: $gl-border-radius-base;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.gl-rounded-bottom-base\! {
|
|
1768
|
+
border-bottom-left-radius: $gl-border-radius-base !important;
|
|
1769
|
+
border-bottom-right-radius: $gl-border-radius-base !important;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1746
1772
|
.gl-rounded-top-left-small {
|
|
1747
1773
|
border-top-left-radius: $gl-border-radius-small;
|
|
1748
1774
|
}
|
|
@@ -2050,6 +2076,14 @@
|
|
|
2050
2076
|
box-shadow: inset $gl-border-size-3 0 0 0 $red-600 !important
|
|
2051
2077
|
}
|
|
2052
2078
|
|
|
2079
|
+
.gl-inset-border-1-gray-a-08 {
|
|
2080
|
+
box-shadow: inset 0 0 0 $gl-border-size-1 $t-gray-a-08
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
.gl-inset-border-1-gray-a-08\! {
|
|
2084
|
+
box-shadow: inset 0 0 0 $gl-border-size-1 $t-gray-a-08 !important
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2053
2087
|
.gl-inset-border-b-2-theme-accent {
|
|
2054
2088
|
box-shadow: inset 0 -#{$gl-border-size-2} 0 0 var(--gl-theme-accent, $theme-indigo-500)
|
|
2055
2089
|
}
|
|
@@ -2162,6 +2196,14 @@
|
|
|
2162
2196
|
box-shadow: -4px 0 8px $gray-200 !important
|
|
2163
2197
|
}
|
|
2164
2198
|
|
|
2199
|
+
.gl-shadow-x0-y0-b3-s1-blue-500 {
|
|
2200
|
+
box-shadow: inset 0 0 3px 1px $blue-500
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
.gl-shadow-x0-y0-b3-s1-blue-500\! {
|
|
2204
|
+
box-shadow: inset 0 0 3px 1px $blue-500 !important
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2165
2207
|
.gl-shadow-sm {
|
|
2166
2208
|
box-shadow: 0 1px 2px rgba($gray-950, 0.1)
|
|
2167
2209
|
}
|
|
@@ -2667,11 +2709,28 @@
|
|
|
2667
2709
|
@include gl-align-items-center;
|
|
2668
2710
|
@include gl-justify-content-center
|
|
2669
2711
|
}
|
|
2712
|
+
|
|
2670
2713
|
.gl--flex-center\!{
|
|
2671
2714
|
@include gl-display-flex;
|
|
2672
2715
|
@include gl-align-items-center;
|
|
2673
2716
|
@include gl-justify-content-center
|
|
2674
2717
|
}
|
|
2718
|
+
|
|
2719
|
+
.gl--focus{
|
|
2720
|
+
@include gl-focus
|
|
2721
|
+
}
|
|
2722
|
+
|
|
2723
|
+
.gl-focus--focus:focus{
|
|
2724
|
+
@include gl-focus
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
.gl--focus\!{
|
|
2728
|
+
@include gl-focus
|
|
2729
|
+
}
|
|
2730
|
+
|
|
2731
|
+
.gl-focus--focus\!:focus{
|
|
2732
|
+
@include gl-focus
|
|
2733
|
+
}
|
|
2675
2734
|
.gl-content-empty {
|
|
2676
2735
|
content: ''
|
|
2677
2736
|
}
|
|
@@ -3560,6 +3619,14 @@
|
|
|
3560
3619
|
flex-basis: 0 !important;
|
|
3561
3620
|
}
|
|
3562
3621
|
|
|
3622
|
+
.gl-flex-basis-quarter {
|
|
3623
|
+
flex-basis: 25%;
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
.gl-flex-basis-quarter\! {
|
|
3627
|
+
flex-basis: 25% !important;
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3563
3630
|
.gl-flex-basis-third {
|
|
3564
3631
|
flex-basis: 33%;
|
|
3565
3632
|
}
|
|
@@ -3592,6 +3659,14 @@
|
|
|
3592
3659
|
flex-basis: 100% !important;
|
|
3593
3660
|
}
|
|
3594
3661
|
|
|
3662
|
+
.gl-flex-flow-row-wrap {
|
|
3663
|
+
flex-flow: row wrap;
|
|
3664
|
+
}
|
|
3665
|
+
|
|
3666
|
+
.gl-flex-flow-row-wrap\! {
|
|
3667
|
+
flex-flow: row wrap !important;
|
|
3668
|
+
}
|
|
3669
|
+
|
|
3595
3670
|
.gl-justify-content-center {
|
|
3596
3671
|
justify-content: center;
|
|
3597
3672
|
}
|
|
@@ -3652,6 +3727,18 @@
|
|
|
3652
3727
|
justify-content: space-between !important;
|
|
3653
3728
|
}
|
|
3654
3729
|
|
|
3730
|
+
.gl-md-justify-content-space-between {
|
|
3731
|
+
@include gl-media-breakpoint-up(md) {
|
|
3732
|
+
justify-content: space-between;
|
|
3733
|
+
}
|
|
3734
|
+
}
|
|
3735
|
+
|
|
3736
|
+
.gl-md-justify-content-space-between\! {
|
|
3737
|
+
@include gl-media-breakpoint-up(md) {
|
|
3738
|
+
justify-content: space-between !important;
|
|
3739
|
+
}
|
|
3740
|
+
}
|
|
3741
|
+
|
|
3655
3742
|
.gl-justify-content-start {
|
|
3656
3743
|
justify-content: flex-start;
|
|
3657
3744
|
}
|
|
@@ -3787,6 +3874,36 @@
|
|
|
3787
3874
|
}
|
|
3788
3875
|
}
|
|
3789
3876
|
|
|
3877
|
+
.gl-md-grid-template-columns-3 {
|
|
3878
|
+
@include gl-media-breakpoint-up(md) {
|
|
3879
|
+
grid-template-columns: repeat(3, 1fr);
|
|
3880
|
+
}
|
|
3881
|
+
}
|
|
3882
|
+
|
|
3883
|
+
.gl-md-grid-template-columns-3\! {
|
|
3884
|
+
@include gl-media-breakpoint-up(md) {
|
|
3885
|
+
grid-template-columns: repeat(3, 1fr) !important;
|
|
3886
|
+
}
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
.gl-lg-grid-template-columns-4 {
|
|
3890
|
+
@include gl-media-breakpoint-up(lg) {
|
|
3891
|
+
grid-template-columns: repeat(4, 1fr);
|
|
3892
|
+
}
|
|
3893
|
+
}
|
|
3894
|
+
|
|
3895
|
+
.gl-lg-grid-template-columns-4\! {
|
|
3896
|
+
@include gl-media-breakpoint-up(lg) {
|
|
3897
|
+
grid-template-columns: repeat(4, 1fr) !important;
|
|
3898
|
+
}
|
|
3899
|
+
}
|
|
3900
|
+
|
|
3901
|
+
.gl-isolation-isolate {
|
|
3902
|
+
isolation: isolate
|
|
3903
|
+
}
|
|
3904
|
+
.gl-isolation-isolate\! {
|
|
3905
|
+
isolation: isolate !important
|
|
3906
|
+
}
|
|
3790
3907
|
.gl-list-style-none {
|
|
3791
3908
|
list-style-type: none
|
|
3792
3909
|
}
|
|
@@ -4124,6 +4241,14 @@
|
|
|
4124
4241
|
top: 50% !important;
|
|
4125
4242
|
}
|
|
4126
4243
|
|
|
4244
|
+
.gl-top-66vh {
|
|
4245
|
+
top: 66vh;
|
|
4246
|
+
}
|
|
4247
|
+
|
|
4248
|
+
.gl-top-66vh\! {
|
|
4249
|
+
top: 66vh !important;
|
|
4250
|
+
}
|
|
4251
|
+
|
|
4127
4252
|
.gl-right-auto {
|
|
4128
4253
|
right: auto;
|
|
4129
4254
|
}
|
|
@@ -4603,6 +4728,22 @@
|
|
|
4603
4728
|
width: 100% !important;
|
|
4604
4729
|
}
|
|
4605
4730
|
|
|
4731
|
+
.gl-w-grid-size-30 {
|
|
4732
|
+
width: $grid-size * 30;
|
|
4733
|
+
}
|
|
4734
|
+
|
|
4735
|
+
.gl-w-grid-size-30\! {
|
|
4736
|
+
width: $grid-size * 30 !important;
|
|
4737
|
+
}
|
|
4738
|
+
|
|
4739
|
+
.gl-w-grid-size-40 {
|
|
4740
|
+
width: $grid-size * 40;
|
|
4741
|
+
}
|
|
4742
|
+
|
|
4743
|
+
.gl-w-grid-size-40\! {
|
|
4744
|
+
width: $grid-size * 40 !important;
|
|
4745
|
+
}
|
|
4746
|
+
|
|
4606
4747
|
.gl-xs-w-full {
|
|
4607
4748
|
@include gl-media-breakpoint-down(sm) {
|
|
4608
4749
|
width: 100%;
|
|
@@ -5075,6 +5216,14 @@
|
|
|
5075
5216
|
max-width: $gl-spacing-scale-34 !important;
|
|
5076
5217
|
}
|
|
5077
5218
|
|
|
5219
|
+
.gl-max-w-48 {
|
|
5220
|
+
max-width: $gl-spacing-scale-48;
|
|
5221
|
+
}
|
|
5222
|
+
|
|
5223
|
+
.gl-max-w-48\! {
|
|
5224
|
+
max-width: $gl-spacing-scale-48 !important;
|
|
5225
|
+
}
|
|
5226
|
+
|
|
5078
5227
|
.gl-max-w-62 {
|
|
5079
5228
|
max-width: $gl-spacing-scale-62;
|
|
5080
5229
|
}
|
|
@@ -5083,6 +5232,14 @@
|
|
|
5083
5232
|
max-width: $gl-spacing-scale-62 !important;
|
|
5084
5233
|
}
|
|
5085
5234
|
|
|
5235
|
+
.gl-max-w-75 {
|
|
5236
|
+
max-width: $gl-spacing-scale-75;
|
|
5237
|
+
}
|
|
5238
|
+
|
|
5239
|
+
.gl-max-w-75\! {
|
|
5240
|
+
max-width: $gl-spacing-scale-75 !important;
|
|
5241
|
+
}
|
|
5242
|
+
|
|
5086
5243
|
.gl-max-w-80 {
|
|
5087
5244
|
max-width: $gl-spacing-scale-80;
|
|
5088
5245
|
}
|
|
@@ -5139,6 +5296,14 @@
|
|
|
5139
5296
|
max-width: 100vw !important;
|
|
5140
5297
|
}
|
|
5141
5298
|
|
|
5299
|
+
.gl-max-w-50p {
|
|
5300
|
+
max-width: 50%;
|
|
5301
|
+
}
|
|
5302
|
+
|
|
5303
|
+
.gl-max-w-50p\! {
|
|
5304
|
+
max-width: 50% !important;
|
|
5305
|
+
}
|
|
5306
|
+
|
|
5142
5307
|
.gl-md-max-w-26 {
|
|
5143
5308
|
@include gl-media-breakpoint-up(md) {
|
|
5144
5309
|
max-width: $gl-spacing-scale-26;
|
|
@@ -5730,6 +5895,14 @@
|
|
|
5730
5895
|
padding-top: $gl-spacing-scale-7 !important;
|
|
5731
5896
|
padding-bottom: $gl-spacing-scale-7 !important;
|
|
5732
5897
|
}
|
|
5898
|
+
.gl-py-8 {
|
|
5899
|
+
padding-top: $gl-spacing-scale-8;
|
|
5900
|
+
padding-bottom: $gl-spacing-scale-8;
|
|
5901
|
+
}
|
|
5902
|
+
.gl-py-8\! {
|
|
5903
|
+
padding-top: $gl-spacing-scale-8 !important;
|
|
5904
|
+
padding-bottom: $gl-spacing-scale-8 !important;
|
|
5905
|
+
}
|
|
5733
5906
|
.gl-py-13 {
|
|
5734
5907
|
padding-top: $gl-spacing-scale-13;
|
|
5735
5908
|
padding-bottom: $gl-spacing-scale-13;
|
|
@@ -5804,6 +5977,12 @@
|
|
|
5804
5977
|
.gl-mt-n1\! {
|
|
5805
5978
|
margin-top: -$gl-spacing-scale-1 !important;
|
|
5806
5979
|
}
|
|
5980
|
+
.gl-mt-n5 {
|
|
5981
|
+
margin-top: -$gl-spacing-scale-5;
|
|
5982
|
+
}
|
|
5983
|
+
.gl-mt-n5\! {
|
|
5984
|
+
margin-top: -$gl-spacing-scale-5 !important;
|
|
5985
|
+
}
|
|
5807
5986
|
.gl-md-mt-n2 {
|
|
5808
5987
|
@include gl-media-breakpoint-up(md) {
|
|
5809
5988
|
margin-top: -$gl-spacing-scale-2;
|
|
@@ -5880,6 +6059,16 @@
|
|
|
5880
6059
|
.gl-mt-11\! {
|
|
5881
6060
|
margin-top: $gl-spacing-scale-11 !important;
|
|
5882
6061
|
}
|
|
6062
|
+
.gl-md-mt-11 {
|
|
6063
|
+
@include gl-media-breakpoint-up(md) {
|
|
6064
|
+
margin-top: $gl-spacing-scale-11;
|
|
6065
|
+
}
|
|
6066
|
+
}
|
|
6067
|
+
.gl-md-mt-11\! {
|
|
6068
|
+
@include gl-media-breakpoint-up(md) {
|
|
6069
|
+
margin-top: $gl-spacing-scale-11 !important;
|
|
6070
|
+
}
|
|
6071
|
+
}
|
|
5883
6072
|
.gl-mr-auto {
|
|
5884
6073
|
margin-right: auto;
|
|
5885
6074
|
}
|
|
@@ -5904,6 +6093,12 @@
|
|
|
5904
6093
|
.gl-mr-n1\! {
|
|
5905
6094
|
margin-right: -$gl-spacing-scale-1 !important;
|
|
5906
6095
|
}
|
|
6096
|
+
.gl-mr-n2 {
|
|
6097
|
+
margin-right: -$gl-spacing-scale-2;
|
|
6098
|
+
}
|
|
6099
|
+
.gl-mr-n2\! {
|
|
6100
|
+
margin-right: -$gl-spacing-scale-2 !important;
|
|
6101
|
+
}
|
|
5907
6102
|
.gl-mr-2 {
|
|
5908
6103
|
margin-right: $gl-spacing-scale-2;
|
|
5909
6104
|
}
|
|
@@ -5952,6 +6147,16 @@
|
|
|
5952
6147
|
.gl-mr-7\! {
|
|
5953
6148
|
margin-right: $gl-spacing-scale-7 !important;
|
|
5954
6149
|
}
|
|
6150
|
+
.gl-sm-mr-3 {
|
|
6151
|
+
@include gl-media-breakpoint-up(sm) {
|
|
6152
|
+
margin-right: $gl-spacing-scale-3;
|
|
6153
|
+
}
|
|
6154
|
+
}
|
|
6155
|
+
.gl-sm-mr-3\! {
|
|
6156
|
+
@include gl-media-breakpoint-up(sm) {
|
|
6157
|
+
margin-right: $gl-spacing-scale-3 !important;
|
|
6158
|
+
}
|
|
6159
|
+
}
|
|
5955
6160
|
.gl-mb-auto {
|
|
5956
6161
|
margin-bottom: auto;
|
|
5957
6162
|
}
|
|
@@ -6042,6 +6247,12 @@
|
|
|
6042
6247
|
.gl-mb-11\! {
|
|
6043
6248
|
margin-bottom: $gl-spacing-scale-11 !important;
|
|
6044
6249
|
}
|
|
6250
|
+
.gl-mb-12 {
|
|
6251
|
+
margin-bottom: $gl-spacing-scale-12;
|
|
6252
|
+
}
|
|
6253
|
+
.gl-mb-12\! {
|
|
6254
|
+
margin-bottom: $gl-spacing-scale-12 !important;
|
|
6255
|
+
}
|
|
6045
6256
|
.gl-ml-auto {
|
|
6046
6257
|
margin-left: auto;
|
|
6047
6258
|
}
|
|
@@ -6594,6 +6805,16 @@
|
|
|
6594
6805
|
margin-top: 0 !important;
|
|
6595
6806
|
}
|
|
6596
6807
|
}
|
|
6808
|
+
.gl-md-mt-5 {
|
|
6809
|
+
@include gl-media-breakpoint-up(md) {
|
|
6810
|
+
margin-top: $gl-spacing-scale-5;
|
|
6811
|
+
}
|
|
6812
|
+
}
|
|
6813
|
+
.gl-md-mt-5\! {
|
|
6814
|
+
@include gl-media-breakpoint-up(md) {
|
|
6815
|
+
margin-top: $gl-spacing-scale-5 !important;
|
|
6816
|
+
}
|
|
6817
|
+
}
|
|
6597
6818
|
.gl-md-mb-0 {
|
|
6598
6819
|
@include gl-media-breakpoint-up(md) {
|
|
6599
6820
|
margin-bottom: 0;
|
|
@@ -6604,6 +6825,36 @@
|
|
|
6604
6825
|
margin-bottom: 0 !important;
|
|
6605
6826
|
}
|
|
6606
6827
|
}
|
|
6828
|
+
.gl-md-mb-3 {
|
|
6829
|
+
@include gl-media-breakpoint-up(md) {
|
|
6830
|
+
margin-bottom: $gl-spacing-scale-3;
|
|
6831
|
+
}
|
|
6832
|
+
}
|
|
6833
|
+
.gl-md-mb-3\! {
|
|
6834
|
+
@include gl-media-breakpoint-up(md) {
|
|
6835
|
+
margin-bottom: $gl-spacing-scale-3 !important;
|
|
6836
|
+
}
|
|
6837
|
+
}
|
|
6838
|
+
.gl-md-mb-6 {
|
|
6839
|
+
@include gl-media-breakpoint-up(md) {
|
|
6840
|
+
margin-bottom: $gl-spacing-scale-6;
|
|
6841
|
+
}
|
|
6842
|
+
}
|
|
6843
|
+
.gl-md-mb-6\! {
|
|
6844
|
+
@include gl-media-breakpoint-up(md) {
|
|
6845
|
+
margin-bottom: $gl-spacing-scale-6 !important;
|
|
6846
|
+
}
|
|
6847
|
+
}
|
|
6848
|
+
.gl-md-mb-12 {
|
|
6849
|
+
@include gl-media-breakpoint-up(md) {
|
|
6850
|
+
margin-bottom: $gl-spacing-scale-12;
|
|
6851
|
+
}
|
|
6852
|
+
}
|
|
6853
|
+
.gl-md-mb-12\! {
|
|
6854
|
+
@include gl-media-breakpoint-up(md) {
|
|
6855
|
+
margin-bottom: $gl-spacing-scale-12 !important;
|
|
6856
|
+
}
|
|
6857
|
+
}
|
|
6607
6858
|
.gl-lg-mb-0 {
|
|
6608
6859
|
@include gl-media-breakpoint-up(lg) {
|
|
6609
6860
|
margin-bottom: 0;
|
|
@@ -6754,6 +7005,16 @@
|
|
|
6754
7005
|
margin-left: $gl-spacing-scale-12 !important;
|
|
6755
7006
|
}
|
|
6756
7007
|
}
|
|
7008
|
+
.gl-xl-ml-3 {
|
|
7009
|
+
@include gl-media-breakpoint-up(xl) {
|
|
7010
|
+
margin-left: $gl-spacing-scale-3;
|
|
7011
|
+
}
|
|
7012
|
+
}
|
|
7013
|
+
.gl-xl-ml-3\! {
|
|
7014
|
+
@include gl-media-breakpoint-up(xl) {
|
|
7015
|
+
margin-left: $gl-spacing-scale-3 !important;
|
|
7016
|
+
}
|
|
7017
|
+
}
|
|
6757
7018
|
.gl-lg-mx-2 {
|
|
6758
7019
|
@include gl-media-breakpoint-up(lg) {
|
|
6759
7020
|
margin-left: $gl-spacing-scale-2;
|
|
@@ -6942,6 +7203,16 @@
|
|
|
6942
7203
|
padding-top: $gl-spacing-scale-5 !important;
|
|
6943
7204
|
}
|
|
6944
7205
|
}
|
|
7206
|
+
.gl-md-pt-11 {
|
|
7207
|
+
@include gl-media-breakpoint-up(md) {
|
|
7208
|
+
padding-top: $gl-spacing-scale-11;
|
|
7209
|
+
}
|
|
7210
|
+
}
|
|
7211
|
+
.gl-md-pt-11\! {
|
|
7212
|
+
@include gl-media-breakpoint-up(md) {
|
|
7213
|
+
padding-top: $gl-spacing-scale-11 !important;
|
|
7214
|
+
}
|
|
7215
|
+
}
|
|
6945
7216
|
.gl-md-pr-0 {
|
|
6946
7217
|
@include gl-media-breakpoint-up(md) {
|
|
6947
7218
|
padding-right: 0;
|
|
@@ -7635,6 +7906,12 @@
|
|
|
7635
7906
|
.gl-text-transform-capitalize\! {
|
|
7636
7907
|
text-transform: capitalize !important;
|
|
7637
7908
|
}
|
|
7909
|
+
.gl-text-uppercase {
|
|
7910
|
+
text-transform: uppercase;
|
|
7911
|
+
}
|
|
7912
|
+
.gl-text-uppercase\! {
|
|
7913
|
+
text-transform: uppercase !important;
|
|
7914
|
+
}
|
|
7638
7915
|
.gl-text-overflow-ellipsis {
|
|
7639
7916
|
text-overflow: ellipsis;
|
|
7640
7917
|
}
|
|
@@ -7844,6 +8121,22 @@
|
|
|
7844
8121
|
transition-property: width !important
|
|
7845
8122
|
}
|
|
7846
8123
|
|
|
8124
|
+
.gl-transition-property-stroke {
|
|
8125
|
+
transition-property: stroke
|
|
8126
|
+
}
|
|
8127
|
+
|
|
8128
|
+
.gl-transition-property-stroke\! {
|
|
8129
|
+
transition-property: stroke !important
|
|
8130
|
+
}
|
|
8131
|
+
|
|
8132
|
+
.gl-transition-property-stroke-opacity {
|
|
8133
|
+
transition-property: stroke-opacity
|
|
8134
|
+
}
|
|
8135
|
+
|
|
8136
|
+
.gl-transition-property-stroke-opacity\! {
|
|
8137
|
+
transition-property: stroke-opacity !important
|
|
8138
|
+
}
|
|
8139
|
+
|
|
7847
8140
|
.gl-transition-duration-slow {
|
|
7848
8141
|
transition-duration: $gl-transition-duration-slow
|
|
7849
8142
|
}
|
|
@@ -7887,303 +8180,254 @@
|
|
|
7887
8180
|
font-family: $gl-monospace-font;
|
|
7888
8181
|
font-variant-ligatures: none;
|
|
7889
8182
|
}
|
|
7890
|
-
|
|
7891
8183
|
.gl-font-monospace\! {
|
|
7892
8184
|
font-family: $gl-monospace-font !important;
|
|
7893
8185
|
font-variant-ligatures: none !important;
|
|
7894
8186
|
}
|
|
7895
|
-
|
|
7896
8187
|
.gl-font-regular {
|
|
7897
8188
|
font-family: $gl-regular-font;
|
|
7898
8189
|
}
|
|
7899
|
-
|
|
7900
8190
|
.gl-font-regular\! {
|
|
7901
8191
|
font-family: $gl-regular-font !important;
|
|
7902
8192
|
}
|
|
7903
|
-
|
|
7904
8193
|
.gl-font-style-italic {
|
|
7905
8194
|
font-style: italic;
|
|
7906
8195
|
}
|
|
7907
|
-
|
|
7908
8196
|
.gl-font-style-italic\! {
|
|
7909
8197
|
font-style: italic !important;
|
|
7910
8198
|
}
|
|
7911
|
-
|
|
7912
8199
|
.gl-font-style-normal {
|
|
7913
8200
|
font-style: normal;
|
|
7914
8201
|
}
|
|
7915
|
-
|
|
7916
8202
|
.gl-font-style-normal\! {
|
|
7917
8203
|
font-style: normal !important;
|
|
7918
8204
|
}
|
|
7919
|
-
|
|
8205
|
+
.gl-font-xs {
|
|
8206
|
+
font-size: $gl-font-size-xs;
|
|
8207
|
+
}
|
|
8208
|
+
.gl-font-xs\! {
|
|
8209
|
+
font-size: $gl-font-size-xs !important;
|
|
8210
|
+
}
|
|
7920
8211
|
.gl-font-sm {
|
|
7921
8212
|
font-size: $gl-font-size-sm;
|
|
7922
8213
|
}
|
|
7923
|
-
|
|
7924
8214
|
.gl-font-sm\! {
|
|
7925
8215
|
font-size: $gl-font-size-sm !important;
|
|
7926
8216
|
}
|
|
7927
|
-
|
|
7928
8217
|
.gl-font-base {
|
|
7929
8218
|
font-size: $gl-font-size;
|
|
7930
8219
|
}
|
|
7931
|
-
|
|
7932
8220
|
.gl-font-base\! {
|
|
7933
8221
|
font-size: $gl-font-size !important;
|
|
7934
8222
|
}
|
|
7935
|
-
|
|
7936
8223
|
.gl-font-lg {
|
|
7937
8224
|
font-size: $gl-font-size-lg;
|
|
7938
8225
|
}
|
|
7939
|
-
|
|
7940
8226
|
.gl-font-lg\! {
|
|
7941
8227
|
font-size: $gl-font-size-lg !important;
|
|
7942
8228
|
}
|
|
7943
|
-
|
|
7944
8229
|
.gl-font-size-h-display {
|
|
7945
8230
|
font-size: $gl-font-size-h-display;
|
|
7946
8231
|
}
|
|
7947
|
-
|
|
7948
8232
|
.gl-font-size-h-display\! {
|
|
7949
8233
|
font-size: $gl-font-size-h-display !important;
|
|
7950
8234
|
}
|
|
7951
|
-
|
|
7952
8235
|
.gl-font-size-h1 {
|
|
7953
8236
|
font-size: $gl-font-size-h1;
|
|
7954
8237
|
}
|
|
7955
|
-
|
|
7956
8238
|
.gl-font-size-h1\! {
|
|
7957
8239
|
font-size: $gl-font-size-h1 !important;
|
|
7958
8240
|
}
|
|
7959
|
-
|
|
7960
8241
|
.gl-font-size-h2 {
|
|
7961
8242
|
font-size: $gl-font-size-h2;
|
|
7962
8243
|
}
|
|
7963
|
-
|
|
7964
8244
|
.gl-font-size-h2\! {
|
|
7965
8245
|
font-size: $gl-font-size-h2 !important;
|
|
7966
8246
|
}
|
|
7967
|
-
|
|
7968
8247
|
.gl-font-size-h-display-xl {
|
|
7969
8248
|
font-size: $gl-font-size-h-display-xl;
|
|
7970
8249
|
}
|
|
7971
|
-
|
|
7972
8250
|
.gl-font-size-h-display-xl\! {
|
|
7973
8251
|
font-size: $gl-font-size-h-display-xl !important;
|
|
7974
8252
|
}
|
|
7975
|
-
|
|
7976
8253
|
.gl-font-size-h1-xl {
|
|
7977
8254
|
font-size: $gl-font-size-h1-xl;
|
|
7978
8255
|
}
|
|
7979
|
-
|
|
7980
8256
|
.gl-font-size-h1-xl\! {
|
|
7981
8257
|
font-size: $gl-font-size-h1-xl !important;
|
|
7982
8258
|
}
|
|
7983
|
-
|
|
7984
8259
|
.gl-font-size-h2-xl {
|
|
7985
8260
|
font-size: $gl-font-size-h2-xl;
|
|
7986
8261
|
}
|
|
7987
|
-
|
|
7988
8262
|
.gl-font-size-h2-xl\! {
|
|
7989
8263
|
font-size: $gl-font-size-h2-xl !important;
|
|
7990
8264
|
}
|
|
7991
|
-
|
|
7992
8265
|
.gl-font-icon-size {
|
|
7993
8266
|
font-size: $default-icon-size;
|
|
7994
8267
|
}
|
|
7995
|
-
|
|
7996
8268
|
.gl-font-icon-size\! {
|
|
7997
8269
|
font-size: $default-icon-size !important;
|
|
7998
8270
|
}
|
|
7999
|
-
|
|
8000
8271
|
.gl-font-size-markdown-sm {
|
|
8001
8272
|
font-size: $gl-font-size-markdown-sm;
|
|
8002
8273
|
}
|
|
8003
|
-
|
|
8004
8274
|
.gl-font-size-markdown-sm\! {
|
|
8005
8275
|
font-size: $gl-font-size-markdown-sm !important;
|
|
8006
8276
|
}
|
|
8007
|
-
|
|
8008
8277
|
.gl-font-size-markdown {
|
|
8009
8278
|
font-size: $gl-font-size-markdown;
|
|
8010
8279
|
}
|
|
8011
|
-
|
|
8012
8280
|
.gl-font-size-markdown\! {
|
|
8013
8281
|
font-size: $gl-font-size-markdown !important;
|
|
8014
8282
|
}
|
|
8015
|
-
|
|
8016
8283
|
.gl-font-size-markdown-h1 {
|
|
8017
8284
|
font-size: $gl-font-size-markdown-h1;
|
|
8018
8285
|
}
|
|
8019
|
-
|
|
8020
8286
|
.gl-font-size-markdown-h1\! {
|
|
8021
8287
|
font-size: $gl-font-size-markdown-h1 !important;
|
|
8022
8288
|
}
|
|
8023
|
-
|
|
8024
8289
|
.gl-font-size-markdown-h2 {
|
|
8025
8290
|
font-size: $gl-font-size-markdown-h2;
|
|
8026
8291
|
}
|
|
8027
|
-
|
|
8028
8292
|
.gl-font-size-markdown-h2\! {
|
|
8029
8293
|
font-size: $gl-font-size-markdown-h2 !important;
|
|
8030
8294
|
}
|
|
8031
|
-
|
|
8032
8295
|
.gl-font-size-markdown-h3 {
|
|
8033
8296
|
font-size: $gl-font-size-markdown-h3;
|
|
8034
8297
|
}
|
|
8035
|
-
|
|
8036
8298
|
.gl-font-size-markdown-h3\! {
|
|
8037
8299
|
font-size: $gl-font-size-markdown-h3 !important;
|
|
8038
8300
|
}
|
|
8039
|
-
|
|
8040
8301
|
.gl-font-size-compact-markdown-h1 {
|
|
8041
8302
|
font-size: $gl-font-size-compact-markdown-h1;
|
|
8042
8303
|
}
|
|
8043
|
-
|
|
8044
8304
|
.gl-font-size-compact-markdown-h1\! {
|
|
8045
8305
|
font-size: $gl-font-size-compact-markdown-h1 !important;
|
|
8046
8306
|
}
|
|
8047
|
-
|
|
8048
8307
|
.gl-reset-font-size {
|
|
8049
8308
|
font-size: inherit;
|
|
8050
8309
|
}
|
|
8051
|
-
|
|
8052
8310
|
.gl-reset-font-size\! {
|
|
8053
8311
|
font-size: inherit !important;
|
|
8054
8312
|
}
|
|
8055
|
-
|
|
8056
8313
|
.gl-font-weight-100 {
|
|
8057
8314
|
font-weight: 100;
|
|
8058
8315
|
}
|
|
8059
|
-
|
|
8060
8316
|
.gl-font-weight-100\! {
|
|
8061
8317
|
font-weight: 100 !important;
|
|
8062
8318
|
}
|
|
8063
|
-
|
|
8064
8319
|
.gl-font-weight-300 {
|
|
8065
8320
|
font-weight: 300;
|
|
8066
8321
|
}
|
|
8067
|
-
|
|
8068
8322
|
.gl-font-weight-300\! {
|
|
8069
8323
|
font-weight: 300 !important;
|
|
8070
8324
|
}
|
|
8071
|
-
|
|
8072
8325
|
.gl-font-weight-normal {
|
|
8073
8326
|
font-weight: $gl-font-weight-normal;
|
|
8074
8327
|
}
|
|
8075
|
-
|
|
8076
8328
|
.gl-font-weight-normal\! {
|
|
8077
8329
|
font-weight: $gl-font-weight-normal !important;
|
|
8078
8330
|
}
|
|
8079
|
-
|
|
8080
8331
|
.gl-font-weight-semibold {
|
|
8081
8332
|
font-weight: $gl-font-weight-semibold;
|
|
8082
8333
|
}
|
|
8083
|
-
|
|
8084
8334
|
.gl-font-weight-semibold\! {
|
|
8085
8335
|
font-weight: $gl-font-weight-semibold !important;
|
|
8086
8336
|
}
|
|
8087
|
-
|
|
8088
8337
|
.gl-font-weight-bold {
|
|
8089
8338
|
font-weight: $gl-font-weight-bold;
|
|
8090
8339
|
}
|
|
8091
|
-
|
|
8092
8340
|
.gl-font-weight-bold\! {
|
|
8093
8341
|
font-weight: $gl-font-weight-bold !important;
|
|
8094
8342
|
}
|
|
8095
|
-
|
|
8096
8343
|
.gl-sm-font-weight-bold {
|
|
8097
8344
|
@include gl-media-breakpoint-up(sm) {
|
|
8098
8345
|
font-weight: $gl-font-weight-bold;
|
|
8099
8346
|
}
|
|
8100
8347
|
}
|
|
8101
|
-
|
|
8102
8348
|
.gl-sm-font-weight-bold\! {
|
|
8103
8349
|
@include gl-media-breakpoint-up(sm) {
|
|
8104
8350
|
font-weight: $gl-font-weight-bold !important;
|
|
8105
8351
|
}
|
|
8106
8352
|
}
|
|
8107
|
-
|
|
8108
8353
|
.gl-line-height-0 {
|
|
8109
8354
|
line-height: 0;
|
|
8110
8355
|
}
|
|
8111
|
-
|
|
8112
8356
|
.gl-line-height-0\! {
|
|
8113
8357
|
line-height: 0 !important;
|
|
8114
8358
|
}
|
|
8115
|
-
|
|
8359
|
+
.gl-line-height-1 {
|
|
8360
|
+
line-height: 1;
|
|
8361
|
+
}
|
|
8362
|
+
.gl-line-height-1\! {
|
|
8363
|
+
line-height: 1 !important;
|
|
8364
|
+
}
|
|
8116
8365
|
.gl-line-height-normal {
|
|
8117
8366
|
line-height: $gl-line-height-16;
|
|
8118
8367
|
}
|
|
8119
|
-
|
|
8120
8368
|
.gl-line-height-normal\! {
|
|
8121
8369
|
line-height: $gl-line-height-16 !important;
|
|
8122
8370
|
}
|
|
8123
|
-
|
|
8371
|
+
.gl-line-height-12 {
|
|
8372
|
+
line-height: $gl-line-height-12;
|
|
8373
|
+
}
|
|
8374
|
+
.gl-line-height-12\! {
|
|
8375
|
+
line-height: $gl-line-height-12 !important;
|
|
8376
|
+
}
|
|
8124
8377
|
.gl-line-height-20 {
|
|
8125
8378
|
line-height: $gl-line-height-20;
|
|
8126
8379
|
}
|
|
8127
|
-
|
|
8128
8380
|
.gl-line-height-20\! {
|
|
8129
8381
|
line-height: $gl-line-height-20 !important;
|
|
8130
8382
|
}
|
|
8131
|
-
|
|
8132
8383
|
.gl-line-height-24 {
|
|
8133
8384
|
line-height: $gl-line-height-24;
|
|
8134
8385
|
}
|
|
8135
|
-
|
|
8136
8386
|
.gl-line-height-24\! {
|
|
8137
8387
|
line-height: $gl-line-height-24 !important;
|
|
8138
8388
|
}
|
|
8139
|
-
|
|
8140
8389
|
.gl-line-height-28 {
|
|
8141
8390
|
line-height: $gl-line-height-28;
|
|
8142
8391
|
}
|
|
8143
|
-
|
|
8144
8392
|
.gl-line-height-28\! {
|
|
8145
8393
|
line-height: $gl-line-height-28 !important;
|
|
8146
8394
|
}
|
|
8147
|
-
|
|
8148
8395
|
.gl-line-height-32 {
|
|
8149
8396
|
line-height: $gl-line-height-32;
|
|
8150
8397
|
}
|
|
8151
|
-
|
|
8152
8398
|
.gl-line-height-32\! {
|
|
8153
8399
|
line-height: $gl-line-height-32 !important;
|
|
8154
8400
|
}
|
|
8155
|
-
|
|
8156
8401
|
.gl-line-height-36 {
|
|
8157
8402
|
line-height: $gl-line-height-36;
|
|
8158
8403
|
}
|
|
8159
|
-
|
|
8160
8404
|
.gl-line-height-36\! {
|
|
8161
8405
|
line-height: $gl-line-height-36 !important;
|
|
8162
8406
|
}
|
|
8163
|
-
|
|
8164
8407
|
.gl-line-height-42 {
|
|
8165
8408
|
line-height: $gl-line-height-42;
|
|
8166
8409
|
}
|
|
8167
|
-
|
|
8168
8410
|
.gl-line-height-42\! {
|
|
8169
8411
|
line-height: $gl-line-height-42 !important;
|
|
8170
8412
|
}
|
|
8171
|
-
|
|
8172
8413
|
.gl-line-height-52 {
|
|
8173
8414
|
line-height: $gl-line-height-52;
|
|
8174
8415
|
}
|
|
8175
|
-
|
|
8176
8416
|
.gl-line-height-52\! {
|
|
8177
8417
|
line-height: $gl-line-height-52 !important;
|
|
8178
8418
|
}
|
|
8179
|
-
|
|
8180
8419
|
.gl-reset-line-height {
|
|
8181
8420
|
line-height: inherit;
|
|
8182
8421
|
}
|
|
8183
|
-
|
|
8184
8422
|
.gl-reset-line-height\! {
|
|
8185
8423
|
line-height: inherit !important;
|
|
8186
8424
|
}
|
|
8425
|
+
.gl-letter-spacing-06em {
|
|
8426
|
+
letter-spacing: 0.06em;
|
|
8427
|
+
}
|
|
8428
|
+
.gl-letter-spacing-06em\! {
|
|
8429
|
+
letter-spacing: 0.06em !important;
|
|
8430
|
+
}
|
|
8187
8431
|
.gl-user-select-none {
|
|
8188
8432
|
user-select: none
|
|
8189
8433
|
}
|