@gitlab/ui 58.3.0 → 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 +7 -0
- 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/scss/utilities.scss +307 -73
- package/src/scss/utility-mixins/background.scss +4 -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
|
}
|
|
@@ -2060,6 +2076,14 @@
|
|
|
2060
2076
|
box-shadow: inset $gl-border-size-3 0 0 0 $red-600 !important
|
|
2061
2077
|
}
|
|
2062
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
|
+
|
|
2063
2087
|
.gl-inset-border-b-2-theme-accent {
|
|
2064
2088
|
box-shadow: inset 0 -#{$gl-border-size-2} 0 0 var(--gl-theme-accent, $theme-indigo-500)
|
|
2065
2089
|
}
|
|
@@ -2172,6 +2196,14 @@
|
|
|
2172
2196
|
box-shadow: -4px 0 8px $gray-200 !important
|
|
2173
2197
|
}
|
|
2174
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
|
+
|
|
2175
2207
|
.gl-shadow-sm {
|
|
2176
2208
|
box-shadow: 0 1px 2px rgba($gray-950, 0.1)
|
|
2177
2209
|
}
|
|
@@ -2677,11 +2709,28 @@
|
|
|
2677
2709
|
@include gl-align-items-center;
|
|
2678
2710
|
@include gl-justify-content-center
|
|
2679
2711
|
}
|
|
2712
|
+
|
|
2680
2713
|
.gl--flex-center\!{
|
|
2681
2714
|
@include gl-display-flex;
|
|
2682
2715
|
@include gl-align-items-center;
|
|
2683
2716
|
@include gl-justify-content-center
|
|
2684
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
|
+
}
|
|
2685
2734
|
.gl-content-empty {
|
|
2686
2735
|
content: ''
|
|
2687
2736
|
}
|
|
@@ -3570,6 +3619,14 @@
|
|
|
3570
3619
|
flex-basis: 0 !important;
|
|
3571
3620
|
}
|
|
3572
3621
|
|
|
3622
|
+
.gl-flex-basis-quarter {
|
|
3623
|
+
flex-basis: 25%;
|
|
3624
|
+
}
|
|
3625
|
+
|
|
3626
|
+
.gl-flex-basis-quarter\! {
|
|
3627
|
+
flex-basis: 25% !important;
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3573
3630
|
.gl-flex-basis-third {
|
|
3574
3631
|
flex-basis: 33%;
|
|
3575
3632
|
}
|
|
@@ -3602,6 +3659,14 @@
|
|
|
3602
3659
|
flex-basis: 100% !important;
|
|
3603
3660
|
}
|
|
3604
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
|
+
|
|
3605
3670
|
.gl-justify-content-center {
|
|
3606
3671
|
justify-content: center;
|
|
3607
3672
|
}
|
|
@@ -3662,6 +3727,18 @@
|
|
|
3662
3727
|
justify-content: space-between !important;
|
|
3663
3728
|
}
|
|
3664
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
|
+
|
|
3665
3742
|
.gl-justify-content-start {
|
|
3666
3743
|
justify-content: flex-start;
|
|
3667
3744
|
}
|
|
@@ -3797,6 +3874,36 @@
|
|
|
3797
3874
|
}
|
|
3798
3875
|
}
|
|
3799
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
|
+
}
|
|
3800
3907
|
.gl-list-style-none {
|
|
3801
3908
|
list-style-type: none
|
|
3802
3909
|
}
|
|
@@ -4134,6 +4241,14 @@
|
|
|
4134
4241
|
top: 50% !important;
|
|
4135
4242
|
}
|
|
4136
4243
|
|
|
4244
|
+
.gl-top-66vh {
|
|
4245
|
+
top: 66vh;
|
|
4246
|
+
}
|
|
4247
|
+
|
|
4248
|
+
.gl-top-66vh\! {
|
|
4249
|
+
top: 66vh !important;
|
|
4250
|
+
}
|
|
4251
|
+
|
|
4137
4252
|
.gl-right-auto {
|
|
4138
4253
|
right: auto;
|
|
4139
4254
|
}
|
|
@@ -4613,6 +4728,22 @@
|
|
|
4613
4728
|
width: 100% !important;
|
|
4614
4729
|
}
|
|
4615
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
|
+
|
|
4616
4747
|
.gl-xs-w-full {
|
|
4617
4748
|
@include gl-media-breakpoint-down(sm) {
|
|
4618
4749
|
width: 100%;
|
|
@@ -5085,6 +5216,14 @@
|
|
|
5085
5216
|
max-width: $gl-spacing-scale-34 !important;
|
|
5086
5217
|
}
|
|
5087
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
|
+
|
|
5088
5227
|
.gl-max-w-62 {
|
|
5089
5228
|
max-width: $gl-spacing-scale-62;
|
|
5090
5229
|
}
|
|
@@ -5093,6 +5232,14 @@
|
|
|
5093
5232
|
max-width: $gl-spacing-scale-62 !important;
|
|
5094
5233
|
}
|
|
5095
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
|
+
|
|
5096
5243
|
.gl-max-w-80 {
|
|
5097
5244
|
max-width: $gl-spacing-scale-80;
|
|
5098
5245
|
}
|
|
@@ -5149,6 +5296,14 @@
|
|
|
5149
5296
|
max-width: 100vw !important;
|
|
5150
5297
|
}
|
|
5151
5298
|
|
|
5299
|
+
.gl-max-w-50p {
|
|
5300
|
+
max-width: 50%;
|
|
5301
|
+
}
|
|
5302
|
+
|
|
5303
|
+
.gl-max-w-50p\! {
|
|
5304
|
+
max-width: 50% !important;
|
|
5305
|
+
}
|
|
5306
|
+
|
|
5152
5307
|
.gl-md-max-w-26 {
|
|
5153
5308
|
@include gl-media-breakpoint-up(md) {
|
|
5154
5309
|
max-width: $gl-spacing-scale-26;
|
|
@@ -5740,6 +5895,14 @@
|
|
|
5740
5895
|
padding-top: $gl-spacing-scale-7 !important;
|
|
5741
5896
|
padding-bottom: $gl-spacing-scale-7 !important;
|
|
5742
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
|
+
}
|
|
5743
5906
|
.gl-py-13 {
|
|
5744
5907
|
padding-top: $gl-spacing-scale-13;
|
|
5745
5908
|
padding-bottom: $gl-spacing-scale-13;
|
|
@@ -5814,6 +5977,12 @@
|
|
|
5814
5977
|
.gl-mt-n1\! {
|
|
5815
5978
|
margin-top: -$gl-spacing-scale-1 !important;
|
|
5816
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
|
+
}
|
|
5817
5986
|
.gl-md-mt-n2 {
|
|
5818
5987
|
@include gl-media-breakpoint-up(md) {
|
|
5819
5988
|
margin-top: -$gl-spacing-scale-2;
|
|
@@ -5890,6 +6059,16 @@
|
|
|
5890
6059
|
.gl-mt-11\! {
|
|
5891
6060
|
margin-top: $gl-spacing-scale-11 !important;
|
|
5892
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
|
+
}
|
|
5893
6072
|
.gl-mr-auto {
|
|
5894
6073
|
margin-right: auto;
|
|
5895
6074
|
}
|
|
@@ -5914,6 +6093,12 @@
|
|
|
5914
6093
|
.gl-mr-n1\! {
|
|
5915
6094
|
margin-right: -$gl-spacing-scale-1 !important;
|
|
5916
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
|
+
}
|
|
5917
6102
|
.gl-mr-2 {
|
|
5918
6103
|
margin-right: $gl-spacing-scale-2;
|
|
5919
6104
|
}
|
|
@@ -5962,6 +6147,16 @@
|
|
|
5962
6147
|
.gl-mr-7\! {
|
|
5963
6148
|
margin-right: $gl-spacing-scale-7 !important;
|
|
5964
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
|
+
}
|
|
5965
6160
|
.gl-mb-auto {
|
|
5966
6161
|
margin-bottom: auto;
|
|
5967
6162
|
}
|
|
@@ -6052,6 +6247,12 @@
|
|
|
6052
6247
|
.gl-mb-11\! {
|
|
6053
6248
|
margin-bottom: $gl-spacing-scale-11 !important;
|
|
6054
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
|
+
}
|
|
6055
6256
|
.gl-ml-auto {
|
|
6056
6257
|
margin-left: auto;
|
|
6057
6258
|
}
|
|
@@ -6604,6 +6805,16 @@
|
|
|
6604
6805
|
margin-top: 0 !important;
|
|
6605
6806
|
}
|
|
6606
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
|
+
}
|
|
6607
6818
|
.gl-md-mb-0 {
|
|
6608
6819
|
@include gl-media-breakpoint-up(md) {
|
|
6609
6820
|
margin-bottom: 0;
|
|
@@ -6614,6 +6825,36 @@
|
|
|
6614
6825
|
margin-bottom: 0 !important;
|
|
6615
6826
|
}
|
|
6616
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
|
+
}
|
|
6617
6858
|
.gl-lg-mb-0 {
|
|
6618
6859
|
@include gl-media-breakpoint-up(lg) {
|
|
6619
6860
|
margin-bottom: 0;
|
|
@@ -6764,6 +7005,16 @@
|
|
|
6764
7005
|
margin-left: $gl-spacing-scale-12 !important;
|
|
6765
7006
|
}
|
|
6766
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
|
+
}
|
|
6767
7018
|
.gl-lg-mx-2 {
|
|
6768
7019
|
@include gl-media-breakpoint-up(lg) {
|
|
6769
7020
|
margin-left: $gl-spacing-scale-2;
|
|
@@ -6952,6 +7203,16 @@
|
|
|
6952
7203
|
padding-top: $gl-spacing-scale-5 !important;
|
|
6953
7204
|
}
|
|
6954
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
|
+
}
|
|
6955
7216
|
.gl-md-pr-0 {
|
|
6956
7217
|
@include gl-media-breakpoint-up(md) {
|
|
6957
7218
|
padding-right: 0;
|
|
@@ -7645,6 +7906,12 @@
|
|
|
7645
7906
|
.gl-text-transform-capitalize\! {
|
|
7646
7907
|
text-transform: capitalize !important;
|
|
7647
7908
|
}
|
|
7909
|
+
.gl-text-uppercase {
|
|
7910
|
+
text-transform: uppercase;
|
|
7911
|
+
}
|
|
7912
|
+
.gl-text-uppercase\! {
|
|
7913
|
+
text-transform: uppercase !important;
|
|
7914
|
+
}
|
|
7648
7915
|
.gl-text-overflow-ellipsis {
|
|
7649
7916
|
text-overflow: ellipsis;
|
|
7650
7917
|
}
|
|
@@ -7854,6 +8121,22 @@
|
|
|
7854
8121
|
transition-property: width !important
|
|
7855
8122
|
}
|
|
7856
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
|
+
|
|
7857
8140
|
.gl-transition-duration-slow {
|
|
7858
8141
|
transition-duration: $gl-transition-duration-slow
|
|
7859
8142
|
}
|
|
@@ -7897,303 +8180,254 @@
|
|
|
7897
8180
|
font-family: $gl-monospace-font;
|
|
7898
8181
|
font-variant-ligatures: none;
|
|
7899
8182
|
}
|
|
7900
|
-
|
|
7901
8183
|
.gl-font-monospace\! {
|
|
7902
8184
|
font-family: $gl-monospace-font !important;
|
|
7903
8185
|
font-variant-ligatures: none !important;
|
|
7904
8186
|
}
|
|
7905
|
-
|
|
7906
8187
|
.gl-font-regular {
|
|
7907
8188
|
font-family: $gl-regular-font;
|
|
7908
8189
|
}
|
|
7909
|
-
|
|
7910
8190
|
.gl-font-regular\! {
|
|
7911
8191
|
font-family: $gl-regular-font !important;
|
|
7912
8192
|
}
|
|
7913
|
-
|
|
7914
8193
|
.gl-font-style-italic {
|
|
7915
8194
|
font-style: italic;
|
|
7916
8195
|
}
|
|
7917
|
-
|
|
7918
8196
|
.gl-font-style-italic\! {
|
|
7919
8197
|
font-style: italic !important;
|
|
7920
8198
|
}
|
|
7921
|
-
|
|
7922
8199
|
.gl-font-style-normal {
|
|
7923
8200
|
font-style: normal;
|
|
7924
8201
|
}
|
|
7925
|
-
|
|
7926
8202
|
.gl-font-style-normal\! {
|
|
7927
8203
|
font-style: normal !important;
|
|
7928
8204
|
}
|
|
7929
|
-
|
|
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
|
+
}
|
|
7930
8211
|
.gl-font-sm {
|
|
7931
8212
|
font-size: $gl-font-size-sm;
|
|
7932
8213
|
}
|
|
7933
|
-
|
|
7934
8214
|
.gl-font-sm\! {
|
|
7935
8215
|
font-size: $gl-font-size-sm !important;
|
|
7936
8216
|
}
|
|
7937
|
-
|
|
7938
8217
|
.gl-font-base {
|
|
7939
8218
|
font-size: $gl-font-size;
|
|
7940
8219
|
}
|
|
7941
|
-
|
|
7942
8220
|
.gl-font-base\! {
|
|
7943
8221
|
font-size: $gl-font-size !important;
|
|
7944
8222
|
}
|
|
7945
|
-
|
|
7946
8223
|
.gl-font-lg {
|
|
7947
8224
|
font-size: $gl-font-size-lg;
|
|
7948
8225
|
}
|
|
7949
|
-
|
|
7950
8226
|
.gl-font-lg\! {
|
|
7951
8227
|
font-size: $gl-font-size-lg !important;
|
|
7952
8228
|
}
|
|
7953
|
-
|
|
7954
8229
|
.gl-font-size-h-display {
|
|
7955
8230
|
font-size: $gl-font-size-h-display;
|
|
7956
8231
|
}
|
|
7957
|
-
|
|
7958
8232
|
.gl-font-size-h-display\! {
|
|
7959
8233
|
font-size: $gl-font-size-h-display !important;
|
|
7960
8234
|
}
|
|
7961
|
-
|
|
7962
8235
|
.gl-font-size-h1 {
|
|
7963
8236
|
font-size: $gl-font-size-h1;
|
|
7964
8237
|
}
|
|
7965
|
-
|
|
7966
8238
|
.gl-font-size-h1\! {
|
|
7967
8239
|
font-size: $gl-font-size-h1 !important;
|
|
7968
8240
|
}
|
|
7969
|
-
|
|
7970
8241
|
.gl-font-size-h2 {
|
|
7971
8242
|
font-size: $gl-font-size-h2;
|
|
7972
8243
|
}
|
|
7973
|
-
|
|
7974
8244
|
.gl-font-size-h2\! {
|
|
7975
8245
|
font-size: $gl-font-size-h2 !important;
|
|
7976
8246
|
}
|
|
7977
|
-
|
|
7978
8247
|
.gl-font-size-h-display-xl {
|
|
7979
8248
|
font-size: $gl-font-size-h-display-xl;
|
|
7980
8249
|
}
|
|
7981
|
-
|
|
7982
8250
|
.gl-font-size-h-display-xl\! {
|
|
7983
8251
|
font-size: $gl-font-size-h-display-xl !important;
|
|
7984
8252
|
}
|
|
7985
|
-
|
|
7986
8253
|
.gl-font-size-h1-xl {
|
|
7987
8254
|
font-size: $gl-font-size-h1-xl;
|
|
7988
8255
|
}
|
|
7989
|
-
|
|
7990
8256
|
.gl-font-size-h1-xl\! {
|
|
7991
8257
|
font-size: $gl-font-size-h1-xl !important;
|
|
7992
8258
|
}
|
|
7993
|
-
|
|
7994
8259
|
.gl-font-size-h2-xl {
|
|
7995
8260
|
font-size: $gl-font-size-h2-xl;
|
|
7996
8261
|
}
|
|
7997
|
-
|
|
7998
8262
|
.gl-font-size-h2-xl\! {
|
|
7999
8263
|
font-size: $gl-font-size-h2-xl !important;
|
|
8000
8264
|
}
|
|
8001
|
-
|
|
8002
8265
|
.gl-font-icon-size {
|
|
8003
8266
|
font-size: $default-icon-size;
|
|
8004
8267
|
}
|
|
8005
|
-
|
|
8006
8268
|
.gl-font-icon-size\! {
|
|
8007
8269
|
font-size: $default-icon-size !important;
|
|
8008
8270
|
}
|
|
8009
|
-
|
|
8010
8271
|
.gl-font-size-markdown-sm {
|
|
8011
8272
|
font-size: $gl-font-size-markdown-sm;
|
|
8012
8273
|
}
|
|
8013
|
-
|
|
8014
8274
|
.gl-font-size-markdown-sm\! {
|
|
8015
8275
|
font-size: $gl-font-size-markdown-sm !important;
|
|
8016
8276
|
}
|
|
8017
|
-
|
|
8018
8277
|
.gl-font-size-markdown {
|
|
8019
8278
|
font-size: $gl-font-size-markdown;
|
|
8020
8279
|
}
|
|
8021
|
-
|
|
8022
8280
|
.gl-font-size-markdown\! {
|
|
8023
8281
|
font-size: $gl-font-size-markdown !important;
|
|
8024
8282
|
}
|
|
8025
|
-
|
|
8026
8283
|
.gl-font-size-markdown-h1 {
|
|
8027
8284
|
font-size: $gl-font-size-markdown-h1;
|
|
8028
8285
|
}
|
|
8029
|
-
|
|
8030
8286
|
.gl-font-size-markdown-h1\! {
|
|
8031
8287
|
font-size: $gl-font-size-markdown-h1 !important;
|
|
8032
8288
|
}
|
|
8033
|
-
|
|
8034
8289
|
.gl-font-size-markdown-h2 {
|
|
8035
8290
|
font-size: $gl-font-size-markdown-h2;
|
|
8036
8291
|
}
|
|
8037
|
-
|
|
8038
8292
|
.gl-font-size-markdown-h2\! {
|
|
8039
8293
|
font-size: $gl-font-size-markdown-h2 !important;
|
|
8040
8294
|
}
|
|
8041
|
-
|
|
8042
8295
|
.gl-font-size-markdown-h3 {
|
|
8043
8296
|
font-size: $gl-font-size-markdown-h3;
|
|
8044
8297
|
}
|
|
8045
|
-
|
|
8046
8298
|
.gl-font-size-markdown-h3\! {
|
|
8047
8299
|
font-size: $gl-font-size-markdown-h3 !important;
|
|
8048
8300
|
}
|
|
8049
|
-
|
|
8050
8301
|
.gl-font-size-compact-markdown-h1 {
|
|
8051
8302
|
font-size: $gl-font-size-compact-markdown-h1;
|
|
8052
8303
|
}
|
|
8053
|
-
|
|
8054
8304
|
.gl-font-size-compact-markdown-h1\! {
|
|
8055
8305
|
font-size: $gl-font-size-compact-markdown-h1 !important;
|
|
8056
8306
|
}
|
|
8057
|
-
|
|
8058
8307
|
.gl-reset-font-size {
|
|
8059
8308
|
font-size: inherit;
|
|
8060
8309
|
}
|
|
8061
|
-
|
|
8062
8310
|
.gl-reset-font-size\! {
|
|
8063
8311
|
font-size: inherit !important;
|
|
8064
8312
|
}
|
|
8065
|
-
|
|
8066
8313
|
.gl-font-weight-100 {
|
|
8067
8314
|
font-weight: 100;
|
|
8068
8315
|
}
|
|
8069
|
-
|
|
8070
8316
|
.gl-font-weight-100\! {
|
|
8071
8317
|
font-weight: 100 !important;
|
|
8072
8318
|
}
|
|
8073
|
-
|
|
8074
8319
|
.gl-font-weight-300 {
|
|
8075
8320
|
font-weight: 300;
|
|
8076
8321
|
}
|
|
8077
|
-
|
|
8078
8322
|
.gl-font-weight-300\! {
|
|
8079
8323
|
font-weight: 300 !important;
|
|
8080
8324
|
}
|
|
8081
|
-
|
|
8082
8325
|
.gl-font-weight-normal {
|
|
8083
8326
|
font-weight: $gl-font-weight-normal;
|
|
8084
8327
|
}
|
|
8085
|
-
|
|
8086
8328
|
.gl-font-weight-normal\! {
|
|
8087
8329
|
font-weight: $gl-font-weight-normal !important;
|
|
8088
8330
|
}
|
|
8089
|
-
|
|
8090
8331
|
.gl-font-weight-semibold {
|
|
8091
8332
|
font-weight: $gl-font-weight-semibold;
|
|
8092
8333
|
}
|
|
8093
|
-
|
|
8094
8334
|
.gl-font-weight-semibold\! {
|
|
8095
8335
|
font-weight: $gl-font-weight-semibold !important;
|
|
8096
8336
|
}
|
|
8097
|
-
|
|
8098
8337
|
.gl-font-weight-bold {
|
|
8099
8338
|
font-weight: $gl-font-weight-bold;
|
|
8100
8339
|
}
|
|
8101
|
-
|
|
8102
8340
|
.gl-font-weight-bold\! {
|
|
8103
8341
|
font-weight: $gl-font-weight-bold !important;
|
|
8104
8342
|
}
|
|
8105
|
-
|
|
8106
8343
|
.gl-sm-font-weight-bold {
|
|
8107
8344
|
@include gl-media-breakpoint-up(sm) {
|
|
8108
8345
|
font-weight: $gl-font-weight-bold;
|
|
8109
8346
|
}
|
|
8110
8347
|
}
|
|
8111
|
-
|
|
8112
8348
|
.gl-sm-font-weight-bold\! {
|
|
8113
8349
|
@include gl-media-breakpoint-up(sm) {
|
|
8114
8350
|
font-weight: $gl-font-weight-bold !important;
|
|
8115
8351
|
}
|
|
8116
8352
|
}
|
|
8117
|
-
|
|
8118
8353
|
.gl-line-height-0 {
|
|
8119
8354
|
line-height: 0;
|
|
8120
8355
|
}
|
|
8121
|
-
|
|
8122
8356
|
.gl-line-height-0\! {
|
|
8123
8357
|
line-height: 0 !important;
|
|
8124
8358
|
}
|
|
8125
|
-
|
|
8359
|
+
.gl-line-height-1 {
|
|
8360
|
+
line-height: 1;
|
|
8361
|
+
}
|
|
8362
|
+
.gl-line-height-1\! {
|
|
8363
|
+
line-height: 1 !important;
|
|
8364
|
+
}
|
|
8126
8365
|
.gl-line-height-normal {
|
|
8127
8366
|
line-height: $gl-line-height-16;
|
|
8128
8367
|
}
|
|
8129
|
-
|
|
8130
8368
|
.gl-line-height-normal\! {
|
|
8131
8369
|
line-height: $gl-line-height-16 !important;
|
|
8132
8370
|
}
|
|
8133
|
-
|
|
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
|
+
}
|
|
8134
8377
|
.gl-line-height-20 {
|
|
8135
8378
|
line-height: $gl-line-height-20;
|
|
8136
8379
|
}
|
|
8137
|
-
|
|
8138
8380
|
.gl-line-height-20\! {
|
|
8139
8381
|
line-height: $gl-line-height-20 !important;
|
|
8140
8382
|
}
|
|
8141
|
-
|
|
8142
8383
|
.gl-line-height-24 {
|
|
8143
8384
|
line-height: $gl-line-height-24;
|
|
8144
8385
|
}
|
|
8145
|
-
|
|
8146
8386
|
.gl-line-height-24\! {
|
|
8147
8387
|
line-height: $gl-line-height-24 !important;
|
|
8148
8388
|
}
|
|
8149
|
-
|
|
8150
8389
|
.gl-line-height-28 {
|
|
8151
8390
|
line-height: $gl-line-height-28;
|
|
8152
8391
|
}
|
|
8153
|
-
|
|
8154
8392
|
.gl-line-height-28\! {
|
|
8155
8393
|
line-height: $gl-line-height-28 !important;
|
|
8156
8394
|
}
|
|
8157
|
-
|
|
8158
8395
|
.gl-line-height-32 {
|
|
8159
8396
|
line-height: $gl-line-height-32;
|
|
8160
8397
|
}
|
|
8161
|
-
|
|
8162
8398
|
.gl-line-height-32\! {
|
|
8163
8399
|
line-height: $gl-line-height-32 !important;
|
|
8164
8400
|
}
|
|
8165
|
-
|
|
8166
8401
|
.gl-line-height-36 {
|
|
8167
8402
|
line-height: $gl-line-height-36;
|
|
8168
8403
|
}
|
|
8169
|
-
|
|
8170
8404
|
.gl-line-height-36\! {
|
|
8171
8405
|
line-height: $gl-line-height-36 !important;
|
|
8172
8406
|
}
|
|
8173
|
-
|
|
8174
8407
|
.gl-line-height-42 {
|
|
8175
8408
|
line-height: $gl-line-height-42;
|
|
8176
8409
|
}
|
|
8177
|
-
|
|
8178
8410
|
.gl-line-height-42\! {
|
|
8179
8411
|
line-height: $gl-line-height-42 !important;
|
|
8180
8412
|
}
|
|
8181
|
-
|
|
8182
8413
|
.gl-line-height-52 {
|
|
8183
8414
|
line-height: $gl-line-height-52;
|
|
8184
8415
|
}
|
|
8185
|
-
|
|
8186
8416
|
.gl-line-height-52\! {
|
|
8187
8417
|
line-height: $gl-line-height-52 !important;
|
|
8188
8418
|
}
|
|
8189
|
-
|
|
8190
8419
|
.gl-reset-line-height {
|
|
8191
8420
|
line-height: inherit;
|
|
8192
8421
|
}
|
|
8193
|
-
|
|
8194
8422
|
.gl-reset-line-height\! {
|
|
8195
8423
|
line-height: inherit !important;
|
|
8196
8424
|
}
|
|
8425
|
+
.gl-letter-spacing-06em {
|
|
8426
|
+
letter-spacing: 0.06em;
|
|
8427
|
+
}
|
|
8428
|
+
.gl-letter-spacing-06em\! {
|
|
8429
|
+
letter-spacing: 0.06em !important;
|
|
8430
|
+
}
|
|
8197
8431
|
.gl-user-select-none {
|
|
8198
8432
|
user-select: none
|
|
8199
8433
|
}
|