@clayui/css 3.78.0 → 3.82.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/lib/css/atlas.css +477 -100
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +471 -95
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +378 -127
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_alerts.scss +1 -1
- package/src/scss/atlas/variables/_clay-color.scss +23 -9
- package/src/scss/atlas/variables/_custom-forms.scss +16 -4
- package/src/scss/atlas/variables/_date-picker.scss +38 -15
- package/src/scss/atlas/variables/_links.scss +19 -2
- package/src/scss/atlas/variables/_modals.scss +60 -28
- package/src/scss/atlas/variables/_navigation-bar.scss +0 -1
- package/src/scss/atlas/variables/_panels.scss +3 -3
- package/src/scss/atlas/variables/_range.scss +1 -1
- package/src/scss/atlas/variables/_tbar.scss +7 -3
- package/src/scss/atlas/variables/_time.scss +4 -2
- package/src/scss/atlas/variables/_toggle-switch.scss +1 -1
- package/src/scss/cadmin/components/_alerts.scss +1 -1
- package/src/scss/cadmin/components/_clay-color.scss +15 -20
- package/src/scss/cadmin/components/_custom-forms.scss +32 -4
- package/src/scss/cadmin/components/_date-picker.scss +4 -4
- package/src/scss/cadmin/components/_forms.scss +5 -7
- package/src/scss/cadmin/components/_list-group.scss +2 -2
- package/src/scss/cadmin/components/_modals.scss +2 -4
- package/src/scss/cadmin/components/_range.scss +3 -3
- package/src/scss/cadmin/components/_time.scss +3 -3
- package/src/scss/cadmin/components/_utilities.scss +22 -0
- package/src/scss/cadmin/variables/_alerts.scss +1 -1
- package/src/scss/cadmin/variables/_cards.scss +48 -19
- package/src/scss/cadmin/variables/_clay-color.scss +41 -20
- package/src/scss/cadmin/variables/_custom-forms.scss +2 -2
- package/src/scss/cadmin/variables/_date-picker.scss +46 -26
- package/src/scss/cadmin/variables/_forms.scss +5 -5
- package/src/scss/cadmin/variables/_list-group.scss +2 -2
- package/src/scss/cadmin/variables/_modals.scss +60 -28
- package/src/scss/cadmin/variables/_range.scss +8 -4
- package/src/scss/cadmin/variables/_sheets.scss +9 -5
- package/src/scss/cadmin/variables/_tbar.scss +177 -91
- package/src/scss/cadmin/variables/_time.scss +11 -6
- package/src/scss/cadmin/variables/_utilities.scss +21 -6
- package/src/scss/components/_alerts.scss +6 -2
- package/src/scss/components/_buttons.scss +5 -1
- package/src/scss/components/_clay-color.scss +15 -20
- package/src/scss/components/_custom-forms.scss +62 -10
- package/src/scss/components/_date-picker.scss +4 -4
- package/src/scss/components/_dropdowns.scss +5 -1
- package/src/scss/components/_forms.scss +5 -5
- package/src/scss/components/_list-group.scss +2 -2
- package/src/scss/components/_modals.scss +2 -2
- package/src/scss/components/_panels.scss +56 -12
- package/src/scss/components/_progress-bars.scss +29 -2
- package/src/scss/components/_range.scss +3 -3
- package/src/scss/components/_sheets.scss +3 -1
- package/src/scss/components/_time.scss +3 -3
- package/src/scss/components/_timelines.scss +7 -1
- package/src/scss/components/_utilities.scss +22 -0
- package/src/scss/mixins/_globals.scss +2 -0
- package/src/scss/mixins/_input-groups.scss +6 -2
- package/src/scss/mixins/_modals.scss +8 -4
- package/src/scss/mixins/_panels.scss +4 -4
- package/src/scss/mixins/_tbar.scss +116 -28
- package/src/scss/variables/_alerts.scss +1 -1
- package/src/scss/variables/_application-bar.scss +32 -6
- package/src/scss/variables/_clay-color.scss +54 -23
- package/src/scss/variables/_custom-forms.scss +225 -48
- package/src/scss/variables/_date-picker.scss +42 -22
- package/src/scss/variables/_drilldown.scss +5 -1
- package/src/scss/variables/_forms.scss +12 -8
- package/src/scss/variables/_links.scss +10 -2
- package/src/scss/variables/_list-group.scss +2 -2
- package/src/scss/variables/_management-bar.scss +56 -10
- package/src/scss/variables/_modals.scss +60 -28
- package/src/scss/variables/_multi-step-nav.scss +5 -1
- package/src/scss/variables/_navigation-bar.scss +56 -9
- package/src/scss/variables/_panels.scss +8 -8
- package/src/scss/variables/_progress-bars.scss +24 -8
- package/src/scss/variables/_range.scss +6 -5
- package/src/scss/variables/_reorder.scss +18 -5
- package/src/scss/variables/_sidebar.scss +25 -5
- package/src/scss/variables/_stickers.scss +1 -1
- package/src/scss/variables/_tbar.scss +174 -88
- package/src/scss/variables/_time.scss +5 -4
- package/src/scss/variables/_toggle-switch.scss +22 -10
- package/src/scss/variables/_utilities.scss +17 -2
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.82.0
|
|
4
4
|
*
|
|
5
5
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
6
6
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -5029,6 +5029,7 @@ input[type=button].btn-block {
|
|
|
5029
5029
|
.sticker {
|
|
5030
5030
|
align-items: center;
|
|
5031
5031
|
border-radius: 0.25rem;
|
|
5032
|
+
color: #272833;
|
|
5032
5033
|
height: 2rem;
|
|
5033
5034
|
line-height: 2rem;
|
|
5034
5035
|
display: inline-flex;
|
|
@@ -8227,8 +8228,8 @@ button.link-outline {
|
|
|
8227
8228
|
font-size: 1rem;
|
|
8228
8229
|
font-weight: 700;
|
|
8229
8230
|
line-height: 1.25;
|
|
8230
|
-
margin-bottom: calc((2rem - (1em * 1.25)) / 2);
|
|
8231
|
-
margin-top: calc((2rem - (1em * 1.25)) / 2);
|
|
8231
|
+
margin-bottom: calc(( 2rem - (1em * 1.25) ) / 2);
|
|
8232
|
+
margin-top: calc(( 2rem - (1em * 1.25) ) / 2);
|
|
8232
8233
|
}
|
|
8233
8234
|
.component-title[href],
|
|
8234
8235
|
.component-title [href] {
|
|
@@ -8359,6 +8360,7 @@ button.link-outline {
|
|
|
8359
8360
|
flex-direction: column;
|
|
8360
8361
|
}
|
|
8361
8362
|
.clay-range .input-group-text {
|
|
8363
|
+
background-color: transparent;
|
|
8362
8364
|
border-width: 0px;
|
|
8363
8365
|
color: #a7a9bc;
|
|
8364
8366
|
font-size: 0.875rem;
|
|
@@ -8368,7 +8370,6 @@ button.link-outline {
|
|
|
8368
8370
|
padding-left: 0;
|
|
8369
8371
|
padding-right: 0;
|
|
8370
8372
|
padding-top: 0;
|
|
8371
|
-
background-color: transparent;
|
|
8372
8373
|
}
|
|
8373
8374
|
.clay-range.disabled .clay-range-title {
|
|
8374
8375
|
color: #a7a9bc;
|
|
@@ -8701,10 +8702,10 @@ button.link-outline {
|
|
|
8701
8702
|
padding-right: 0.5rem;
|
|
8702
8703
|
}
|
|
8703
8704
|
.clay-color > .input-group-item > .input-group-text {
|
|
8705
|
+
background-color: #fff;
|
|
8704
8706
|
border-color: #e7e7ed;
|
|
8705
8707
|
padding-left: 0;
|
|
8706
8708
|
padding-right: 0;
|
|
8707
|
-
background-color: #fff;
|
|
8708
8709
|
}
|
|
8709
8710
|
|
|
8710
8711
|
.clay-color-dropdown-menu {
|
|
@@ -8782,6 +8783,7 @@ button.link-outline {
|
|
|
8782
8783
|
border-color: #e7e7ed;
|
|
8783
8784
|
}
|
|
8784
8785
|
.clay-color-pointer {
|
|
8786
|
+
background-color: transparent;
|
|
8785
8787
|
border-radius: 100px;
|
|
8786
8788
|
border-color: #fff;
|
|
8787
8789
|
border-style: solid;
|
|
@@ -8794,7 +8796,6 @@ button.link-outline {
|
|
|
8794
8796
|
position: absolute;
|
|
8795
8797
|
transition: box-shadow 0.15s ease-in-out;
|
|
8796
8798
|
width: 0.875rem;
|
|
8797
|
-
background-color: transparent;
|
|
8798
8799
|
}
|
|
8799
8800
|
@media (prefers-reduced-motion: reduce) {
|
|
8800
8801
|
.clay-color-pointer {
|
|
@@ -8979,6 +8980,38 @@ button.link-outline {
|
|
|
8979
8980
|
position: static;
|
|
8980
8981
|
vertical-align: top;
|
|
8981
8982
|
}
|
|
8983
|
+
.custom-control-label::before {
|
|
8984
|
+
background-color: #fff;
|
|
8985
|
+
border-color: #cdced9;
|
|
8986
|
+
border-style: solid;
|
|
8987
|
+
border-width: 0.0625rem;
|
|
8988
|
+
box-shadow: none;
|
|
8989
|
+
content: "";
|
|
8990
|
+
display: block;
|
|
8991
|
+
float: left;
|
|
8992
|
+
font-size: 1rem;
|
|
8993
|
+
height: 1rem;
|
|
8994
|
+
left: 0;
|
|
8995
|
+
position: relative;
|
|
8996
|
+
top: 0.125rem;
|
|
8997
|
+
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
8998
|
+
width: 1rem;
|
|
8999
|
+
}
|
|
9000
|
+
@media (prefers-reduced-motion: reduce) {
|
|
9001
|
+
.custom-control-label::before {
|
|
9002
|
+
transition: none;
|
|
9003
|
+
}
|
|
9004
|
+
}
|
|
9005
|
+
.custom-control-label::after {
|
|
9006
|
+
background: no-repeat 50%/50% 50%;
|
|
9007
|
+
content: "";
|
|
9008
|
+
display: block;
|
|
9009
|
+
height: 1rem;
|
|
9010
|
+
left: 0;
|
|
9011
|
+
position: absolute;
|
|
9012
|
+
top: 0.125rem;
|
|
9013
|
+
width: 1rem;
|
|
9014
|
+
}
|
|
8982
9015
|
|
|
8983
9016
|
label.custom-control-label {
|
|
8984
9017
|
font-size: 0.875rem;
|
|
@@ -8995,7 +9028,6 @@ label.custom-control-label {
|
|
|
8995
9028
|
.custom-control-primary .custom-control-label-text {
|
|
8996
9029
|
font-weight: 600;
|
|
8997
9030
|
}
|
|
8998
|
-
|
|
8999
9031
|
.custom-control-label::before {
|
|
9000
9032
|
background-color: #fff;
|
|
9001
9033
|
border-color: #cdced9;
|
|
@@ -9223,7 +9255,7 @@ label.custom-control-label {
|
|
|
9223
9255
|
}
|
|
9224
9256
|
.custom-select:focus {
|
|
9225
9257
|
border-color: #80acff;
|
|
9226
|
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem
|
|
9258
|
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem #80acff;
|
|
9227
9259
|
outline: 0;
|
|
9228
9260
|
}
|
|
9229
9261
|
.custom-select:focus::-ms-value {
|
|
@@ -9522,12 +9554,12 @@ label.custom-control-label {
|
|
|
9522
9554
|
background-color: #b3d8fd;
|
|
9523
9555
|
}
|
|
9524
9556
|
.clay-time .input-group-text {
|
|
9557
|
+
background-color: transparent;
|
|
9525
9558
|
border-color: transparent;
|
|
9526
9559
|
padding-bottom: 0;
|
|
9527
9560
|
padding-left: 0;
|
|
9528
9561
|
padding-right: 0;
|
|
9529
9562
|
padding-top: 0;
|
|
9530
|
-
background-color: transparent;
|
|
9531
9563
|
}
|
|
9532
9564
|
.clay-time .clay-time-ampm {
|
|
9533
9565
|
font-weight: 500;
|
|
@@ -9591,11 +9623,11 @@ label.custom-control-label {
|
|
|
9591
9623
|
margin-top: -2px;
|
|
9592
9624
|
}
|
|
9593
9625
|
.date-picker .input-group-text {
|
|
9626
|
+
background-color: transparent;
|
|
9594
9627
|
border-color: transparent;
|
|
9595
9628
|
min-width: 2rem;
|
|
9596
9629
|
padding-left: 0.25rem;
|
|
9597
9630
|
padding-right: 0.25rem;
|
|
9598
|
-
background-color: transparent;
|
|
9599
9631
|
}
|
|
9600
9632
|
.date-picker-dropdown-menu {
|
|
9601
9633
|
max-height: none;
|
|
@@ -9625,8 +9657,8 @@ label.custom-control-label {
|
|
|
9625
9657
|
color: #272833;
|
|
9626
9658
|
}
|
|
9627
9659
|
.date-picker-nav .nav-btn:focus, .date-picker-nav .nav-btn.focus {
|
|
9628
|
-
background-color: #f1f2f5;
|
|
9629
9660
|
box-shadow: 0 0 0 0.2rem rgba(11, 95, 255, 0.25);
|
|
9661
|
+
background-color: #f1f2f5;
|
|
9630
9662
|
color: #272833;
|
|
9631
9663
|
}
|
|
9632
9664
|
.date-picker-nav .nav-btn:active {
|
|
@@ -9719,6 +9751,7 @@ label.custom-control-label {
|
|
|
9719
9751
|
|
|
9720
9752
|
.date-picker-calendar-item {
|
|
9721
9753
|
align-items: center;
|
|
9754
|
+
background-color: transparent;
|
|
9722
9755
|
border-width: 0px;
|
|
9723
9756
|
display: inline-flex;
|
|
9724
9757
|
flex-shrink: 0;
|
|
@@ -9740,7 +9773,6 @@ label.custom-control-label {
|
|
|
9740
9773
|
vertical-align: middle;
|
|
9741
9774
|
white-space: nowrap;
|
|
9742
9775
|
width: 2rem;
|
|
9743
|
-
background-color: transparent;
|
|
9744
9776
|
}
|
|
9745
9777
|
@media (prefers-reduced-motion: reduce) {
|
|
9746
9778
|
.date-picker-calendar-item {
|
|
@@ -9809,10 +9841,10 @@ label.custom-control-label {
|
|
|
9809
9841
|
color: #272833;
|
|
9810
9842
|
}
|
|
9811
9843
|
.date-picker-date:focus, .date-picker-date.focus {
|
|
9812
|
-
background-color: #f1f2f5;
|
|
9813
9844
|
box-shadow: 0 0 0 0.2rem rgba(11, 95, 255, 0.25);
|
|
9814
|
-
color: #272833;
|
|
9815
9845
|
outline: 0;
|
|
9846
|
+
background-color: #f1f2f5;
|
|
9847
|
+
color: #272833;
|
|
9816
9848
|
}
|
|
9817
9849
|
.date-picker-date:active {
|
|
9818
9850
|
background-color: #0b5fff;
|
|
@@ -11956,81 +11988,21 @@ label.custom-control-label {
|
|
|
11956
11988
|
}
|
|
11957
11989
|
}
|
|
11958
11990
|
|
|
11959
|
-
.modal-success .btn-monospaced {
|
|
11960
|
-
color: #287d3c;
|
|
11961
|
-
}
|
|
11962
|
-
.modal-success .close {
|
|
11963
|
-
color: #287d3c;
|
|
11964
|
-
}
|
|
11965
|
-
.modal-success .close:hover {
|
|
11966
|
-
color: inherit;
|
|
11967
|
-
}
|
|
11968
|
-
.modal-success .close:focus {
|
|
11969
|
-
color: inherit;
|
|
11970
|
-
}
|
|
11971
|
-
.modal-success .close:disabled, .modal-success .close.disabled {
|
|
11972
|
-
color: inherit;
|
|
11973
|
-
}
|
|
11974
11991
|
.modal-success .modal-header {
|
|
11975
11992
|
background-color: #edf9f0;
|
|
11976
11993
|
border-color: #5aca75;
|
|
11977
11994
|
color: #287d3c;
|
|
11978
11995
|
}
|
|
11979
|
-
.modal-info .btn-monospaced {
|
|
11980
|
-
color: #2e5aac;
|
|
11981
|
-
}
|
|
11982
|
-
.modal-info .close {
|
|
11983
|
-
color: #2e5aac;
|
|
11984
|
-
}
|
|
11985
|
-
.modal-info .close:hover {
|
|
11986
|
-
color: inherit;
|
|
11987
|
-
}
|
|
11988
|
-
.modal-info .close:focus {
|
|
11989
|
-
color: inherit;
|
|
11990
|
-
}
|
|
11991
|
-
.modal-info .close:disabled, .modal-info .close.disabled {
|
|
11992
|
-
color: inherit;
|
|
11993
|
-
}
|
|
11994
11996
|
.modal-info .modal-header {
|
|
11995
11997
|
background-color: #eef2fa;
|
|
11996
11998
|
border-color: #89a7e0;
|
|
11997
11999
|
color: #2e5aac;
|
|
11998
12000
|
}
|
|
11999
|
-
.modal-warning .btn-monospaced {
|
|
12000
|
-
color: #b95000;
|
|
12001
|
-
}
|
|
12002
|
-
.modal-warning .close {
|
|
12003
|
-
color: #b95000;
|
|
12004
|
-
}
|
|
12005
|
-
.modal-warning .close:hover {
|
|
12006
|
-
color: inherit;
|
|
12007
|
-
}
|
|
12008
|
-
.modal-warning .close:focus {
|
|
12009
|
-
color: inherit;
|
|
12010
|
-
}
|
|
12011
|
-
.modal-warning .close:disabled, .modal-warning .close.disabled {
|
|
12012
|
-
color: inherit;
|
|
12013
|
-
}
|
|
12014
12001
|
.modal-warning .modal-header {
|
|
12015
12002
|
background-color: #fff4ec;
|
|
12016
12003
|
border-color: #ff8f39;
|
|
12017
12004
|
color: #b95000;
|
|
12018
12005
|
}
|
|
12019
|
-
.modal-danger .btn-monospaced {
|
|
12020
|
-
color: #da1414;
|
|
12021
|
-
}
|
|
12022
|
-
.modal-danger .close {
|
|
12023
|
-
color: #da1414;
|
|
12024
|
-
}
|
|
12025
|
-
.modal-danger .close:hover {
|
|
12026
|
-
color: inherit;
|
|
12027
|
-
}
|
|
12028
|
-
.modal-danger .close:focus {
|
|
12029
|
-
color: inherit;
|
|
12030
|
-
}
|
|
12031
|
-
.modal-danger .close:disabled, .modal-danger .close.disabled {
|
|
12032
|
-
color: inherit;
|
|
12033
|
-
}
|
|
12034
12006
|
.modal-danger .modal-header {
|
|
12035
12007
|
background-color: #feefef;
|
|
12036
12008
|
border-color: #f48989;
|
|
@@ -20314,8 +20286,8 @@ caption {
|
|
|
20314
20286
|
display: inline;
|
|
20315
20287
|
}
|
|
20316
20288
|
.tbar-inline-xs-down .tbar-item {
|
|
20317
|
-
display: inline;
|
|
20318
20289
|
padding-left: 0;
|
|
20290
|
+
display: inline;
|
|
20319
20291
|
}
|
|
20320
20292
|
}
|
|
20321
20293
|
|
|
@@ -20333,8 +20305,8 @@ caption {
|
|
|
20333
20305
|
display: inline;
|
|
20334
20306
|
}
|
|
20335
20307
|
.tbar-inline-sm-down .tbar-item {
|
|
20336
|
-
display: inline;
|
|
20337
20308
|
padding-left: 0;
|
|
20309
|
+
display: inline;
|
|
20338
20310
|
}
|
|
20339
20311
|
}
|
|
20340
20312
|
|
|
@@ -20352,8 +20324,8 @@ caption {
|
|
|
20352
20324
|
display: inline;
|
|
20353
20325
|
}
|
|
20354
20326
|
.tbar-inline-md-down .tbar-item {
|
|
20355
|
-
display: inline;
|
|
20356
20327
|
padding-left: 0;
|
|
20328
|
+
display: inline;
|
|
20357
20329
|
}
|
|
20358
20330
|
}
|
|
20359
20331
|
|
|
@@ -20371,8 +20343,8 @@ caption {
|
|
|
20371
20343
|
display: inline;
|
|
20372
20344
|
}
|
|
20373
20345
|
.tbar-inline-lg-down .tbar-item {
|
|
20374
|
-
display: inline;
|
|
20375
20346
|
padding-left: 0;
|
|
20347
|
+
display: inline;
|
|
20376
20348
|
}
|
|
20377
20349
|
}
|
|
20378
20350
|
|
|
@@ -20389,8 +20361,8 @@ caption {
|
|
|
20389
20361
|
display: inline;
|
|
20390
20362
|
}
|
|
20391
20363
|
.tbar-inline-xl-down .tbar-item {
|
|
20392
|
-
display: inline;
|
|
20393
20364
|
padding-left: 0;
|
|
20365
|
+
display: inline;
|
|
20394
20366
|
}
|
|
20395
20367
|
|
|
20396
20368
|
.component-tbar {
|
|
@@ -20400,6 +20372,9 @@ caption {
|
|
|
20400
20372
|
height: 3.5rem;
|
|
20401
20373
|
color: #6b6c7e;
|
|
20402
20374
|
}
|
|
20375
|
+
.component-tbar .tbar-label {
|
|
20376
|
+
border-width: 0.0625rem;
|
|
20377
|
+
}
|
|
20403
20378
|
.subnav-tbar {
|
|
20404
20379
|
font-size: 0.875rem;
|
|
20405
20380
|
}
|
|
@@ -20421,6 +20396,9 @@ caption {
|
|
|
20421
20396
|
.subnav-tbar .component-link:hover {
|
|
20422
20397
|
color: #004ad7;
|
|
20423
20398
|
}
|
|
20399
|
+
.subnav-tbar .component-link:disabled, .subnav-tbar .component-link.disabled {
|
|
20400
|
+
box-shadow: none;
|
|
20401
|
+
}
|
|
20424
20402
|
.subnav-tbar .tbar-item {
|
|
20425
20403
|
padding-left: 0.5rem;
|
|
20426
20404
|
padding-right: 0.5rem;
|
|
@@ -20430,16 +20408,16 @@ caption {
|
|
|
20430
20408
|
line-height: 1;
|
|
20431
20409
|
margin-bottom: 0.125rem;
|
|
20432
20410
|
margin-top: 0.125rem;
|
|
20433
|
-
padding-
|
|
20434
|
-
padding-
|
|
20411
|
+
padding-left: 0;
|
|
20412
|
+
padding-right: 0;
|
|
20435
20413
|
}
|
|
20436
20414
|
.subnav-tbar .tbar-btn .c-inner {
|
|
20437
|
-
margin-
|
|
20438
|
-
margin-
|
|
20415
|
+
margin-left: 0;
|
|
20416
|
+
margin-right: 0;
|
|
20439
20417
|
}
|
|
20440
20418
|
.subnav-tbar .tbar-btn .c-inner {
|
|
20441
|
-
margin-
|
|
20442
|
-
margin-
|
|
20419
|
+
margin-left: 0;
|
|
20420
|
+
margin-right: 0;
|
|
20443
20421
|
}
|
|
20444
20422
|
.subnav-tbar .tbar-link {
|
|
20445
20423
|
margin-bottom: 0.125rem;
|
|
@@ -20462,10 +20440,10 @@ caption {
|
|
|
20462
20440
|
margin-top: -0.09375rem;
|
|
20463
20441
|
}
|
|
20464
20442
|
.subnav-tbar .tbar-btn-monospaced {
|
|
20465
|
-
height: 1.5rem;
|
|
20466
20443
|
margin-bottom: 0.125rem;
|
|
20467
20444
|
margin-top: 0.125rem;
|
|
20468
20445
|
padding: 0.25rem;
|
|
20446
|
+
height: 1.5rem;
|
|
20469
20447
|
width: 1.5rem;
|
|
20470
20448
|
}
|
|
20471
20449
|
.subnav-tbar .tbar-btn-monospaced .c-inner {
|
|
@@ -20499,6 +20477,9 @@ caption {
|
|
|
20499
20477
|
.subnav-tbar .component-label {
|
|
20500
20478
|
font-weight: 400;
|
|
20501
20479
|
}
|
|
20480
|
+
.subnav-tbar .tbar-label {
|
|
20481
|
+
border-width: 0.0625rem;
|
|
20482
|
+
}
|
|
20502
20483
|
.subnav-tbar-primary {
|
|
20503
20484
|
background-color: #b3cdff;
|
|
20504
20485
|
padding-bottom: 0.625rem;
|
|
@@ -20541,12 +20522,12 @@ caption {
|
|
|
20541
20522
|
.subnav-tbar-primary .tbar-label {
|
|
20542
20523
|
font-size: 0.75rem;
|
|
20543
20524
|
margin-right: 0;
|
|
20544
|
-
text-transform: none;
|
|
20545
|
-
border-width: 0.0625rem;
|
|
20546
20525
|
padding-bottom: 0.3125rem;
|
|
20547
20526
|
padding-left: 0.625rem;
|
|
20548
20527
|
padding-right: 0.625rem;
|
|
20549
20528
|
padding-top: 0.3125rem;
|
|
20529
|
+
text-transform: none;
|
|
20530
|
+
border-width: 0.0625rem;
|
|
20550
20531
|
}
|
|
20551
20532
|
.subnav-tbar-primary .tbar-label > .c-inner {
|
|
20552
20533
|
margin-bottom: -0.3125rem;
|
|
@@ -20555,18 +20536,24 @@ caption {
|
|
|
20555
20536
|
margin-top: -0.3125rem;
|
|
20556
20537
|
}
|
|
20557
20538
|
.subnav-tbar-primary.subnav-tbar-disabled {
|
|
20558
|
-
color: #8e94aa;
|
|
20559
20539
|
background-color: #cfddf8;
|
|
20540
|
+
color: #8e94aa;
|
|
20560
20541
|
}
|
|
20561
20542
|
.subnav-tbar-primary.subnav-tbar-disabled .component-label {
|
|
20562
20543
|
border-color: #8e94aa;
|
|
20563
20544
|
}
|
|
20545
|
+
.subnav-tbar-primary.subnav-tbar-disabled .tbar-label {
|
|
20546
|
+
border-width: 0.0625rem;
|
|
20547
|
+
}
|
|
20564
20548
|
.subnav-tbar-light {
|
|
20565
|
-
color: #6b6c7e;
|
|
20566
20549
|
background-color: white;
|
|
20550
|
+
color: #6b6c7e;
|
|
20567
20551
|
padding-bottom: 0.125rem;
|
|
20568
20552
|
padding-top: 0.125rem;
|
|
20569
20553
|
}
|
|
20554
|
+
.subnav-tbar-light .tbar-label {
|
|
20555
|
+
border-width: 0.0625rem;
|
|
20556
|
+
}
|
|
20570
20557
|
.tbar-stacked {
|
|
20571
20558
|
display: inline-flex;
|
|
20572
20559
|
height: 100%;
|
|
@@ -20633,6 +20620,9 @@ caption {
|
|
|
20633
20620
|
margin-right: 0;
|
|
20634
20621
|
margin-top: 0;
|
|
20635
20622
|
}
|
|
20623
|
+
.tbar-stacked .tbar-label {
|
|
20624
|
+
border-width: 0.0625rem;
|
|
20625
|
+
}
|
|
20636
20626
|
.tbar-light {
|
|
20637
20627
|
background-color: #fff;
|
|
20638
20628
|
box-shadow: inset 1px 0 0 0 #f1f2f5, inset -1px 0 0 0 #f1f2f5;
|
|
@@ -20665,6 +20655,9 @@ caption {
|
|
|
20665
20655
|
background-color: #f1f2f5;
|
|
20666
20656
|
color: #272833;
|
|
20667
20657
|
}
|
|
20658
|
+
.tbar-light .tbar-label {
|
|
20659
|
+
border-width: 0.0625rem;
|
|
20660
|
+
}
|
|
20668
20661
|
.tbar-dark-l2 {
|
|
20669
20662
|
background-color: #393a4a;
|
|
20670
20663
|
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06), inset -1px 0 0 0 rgba(255, 255, 255, 0.06);
|
|
@@ -20698,6 +20691,9 @@ caption {
|
|
|
20698
20691
|
background-color: rgba(255, 255, 255, 0.06);
|
|
20699
20692
|
color: #fff;
|
|
20700
20693
|
}
|
|
20694
|
+
.tbar-dark-l2 .tbar-label {
|
|
20695
|
+
border-width: 0.0625rem;
|
|
20696
|
+
}
|
|
20701
20697
|
.tbar-dark-d1 {
|
|
20702
20698
|
background-color: #1c1c24;
|
|
20703
20699
|
box-shadow: inset 1px 0 0 0 rgba(255, 255, 255, 0.06), inset -1px 0 0 0 rgba(255, 255, 255, 0.06);
|
|
@@ -20723,16 +20719,6 @@ caption {
|
|
|
20723
20719
|
background-color: rgba(255, 255, 255, 0.06);
|
|
20724
20720
|
color: #fff;
|
|
20725
20721
|
}
|
|
20726
|
-
.tbar-dark-d1 .tbar-btn-monospaced.active::after {
|
|
20727
|
-
background-color: #80acff;
|
|
20728
|
-
bottom: 0;
|
|
20729
|
-
content: "";
|
|
20730
|
-
display: block;
|
|
20731
|
-
left: 0;
|
|
20732
|
-
position: absolute;
|
|
20733
|
-
top: 0;
|
|
20734
|
-
width: 0.25rem;
|
|
20735
|
-
}
|
|
20736
20722
|
.tbar-dark-d1 .tbar-btn-monospaced:disabled, .tbar-dark-d1 .tbar-btn-monospaced.disabled {
|
|
20737
20723
|
color: inherit;
|
|
20738
20724
|
}
|
|
@@ -20740,6 +20726,9 @@ caption {
|
|
|
20740
20726
|
background-color: rgba(255, 255, 255, 0.06);
|
|
20741
20727
|
color: #fff;
|
|
20742
20728
|
}
|
|
20729
|
+
.tbar-dark-d1 .tbar-label {
|
|
20730
|
+
border-width: 0.0625rem;
|
|
20731
|
+
}
|
|
20743
20732
|
.timeline {
|
|
20744
20733
|
list-style: none;
|
|
20745
20734
|
padding-left: 0;
|
|
@@ -22172,6 +22161,370 @@ ul.autofit-row {
|
|
|
22172
22161
|
background-color: #fff;
|
|
22173
22162
|
}
|
|
22174
22163
|
|
|
22164
|
+
.c-gap-0 {
|
|
22165
|
+
gap: 0;
|
|
22166
|
+
}
|
|
22167
|
+
|
|
22168
|
+
.c-gapx-0 {
|
|
22169
|
+
column-gap: 0;
|
|
22170
|
+
}
|
|
22171
|
+
|
|
22172
|
+
.c-gapy-0 {
|
|
22173
|
+
row-gap: 0;
|
|
22174
|
+
}
|
|
22175
|
+
|
|
22176
|
+
.c-gap-1 {
|
|
22177
|
+
gap: 0.25rem;
|
|
22178
|
+
}
|
|
22179
|
+
|
|
22180
|
+
.c-gapx-1 {
|
|
22181
|
+
column-gap: 0.25rem;
|
|
22182
|
+
}
|
|
22183
|
+
|
|
22184
|
+
.c-gapy-1 {
|
|
22185
|
+
row-gap: 0.25rem;
|
|
22186
|
+
}
|
|
22187
|
+
|
|
22188
|
+
.c-gap-2 {
|
|
22189
|
+
gap: 0.5rem;
|
|
22190
|
+
}
|
|
22191
|
+
|
|
22192
|
+
.c-gapx-2 {
|
|
22193
|
+
column-gap: 0.5rem;
|
|
22194
|
+
}
|
|
22195
|
+
|
|
22196
|
+
.c-gapy-2 {
|
|
22197
|
+
row-gap: 0.5rem;
|
|
22198
|
+
}
|
|
22199
|
+
|
|
22200
|
+
.c-gap-3 {
|
|
22201
|
+
gap: 1rem;
|
|
22202
|
+
}
|
|
22203
|
+
|
|
22204
|
+
.c-gapx-3 {
|
|
22205
|
+
column-gap: 1rem;
|
|
22206
|
+
}
|
|
22207
|
+
|
|
22208
|
+
.c-gapy-3 {
|
|
22209
|
+
row-gap: 1rem;
|
|
22210
|
+
}
|
|
22211
|
+
|
|
22212
|
+
.c-gap-4 {
|
|
22213
|
+
gap: 1.5rem;
|
|
22214
|
+
}
|
|
22215
|
+
|
|
22216
|
+
.c-gapx-4 {
|
|
22217
|
+
column-gap: 1.5rem;
|
|
22218
|
+
}
|
|
22219
|
+
|
|
22220
|
+
.c-gapy-4 {
|
|
22221
|
+
row-gap: 1.5rem;
|
|
22222
|
+
}
|
|
22223
|
+
|
|
22224
|
+
.c-gap-5 {
|
|
22225
|
+
gap: 3rem;
|
|
22226
|
+
}
|
|
22227
|
+
|
|
22228
|
+
.c-gapx-5 {
|
|
22229
|
+
column-gap: 3rem;
|
|
22230
|
+
}
|
|
22231
|
+
|
|
22232
|
+
.c-gapy-5 {
|
|
22233
|
+
row-gap: 3rem;
|
|
22234
|
+
}
|
|
22235
|
+
|
|
22236
|
+
@media (min-width: 576px) {
|
|
22237
|
+
.c-gap-sm-0 {
|
|
22238
|
+
gap: 0;
|
|
22239
|
+
}
|
|
22240
|
+
|
|
22241
|
+
.c-gapx-sm-0 {
|
|
22242
|
+
column-gap: 0;
|
|
22243
|
+
}
|
|
22244
|
+
|
|
22245
|
+
.c-gapy-sm-0 {
|
|
22246
|
+
row-gap: 0;
|
|
22247
|
+
}
|
|
22248
|
+
|
|
22249
|
+
.c-gap-sm-1 {
|
|
22250
|
+
gap: 0.25rem;
|
|
22251
|
+
}
|
|
22252
|
+
|
|
22253
|
+
.c-gapx-sm-1 {
|
|
22254
|
+
column-gap: 0.25rem;
|
|
22255
|
+
}
|
|
22256
|
+
|
|
22257
|
+
.c-gapy-sm-1 {
|
|
22258
|
+
row-gap: 0.25rem;
|
|
22259
|
+
}
|
|
22260
|
+
|
|
22261
|
+
.c-gap-sm-2 {
|
|
22262
|
+
gap: 0.5rem;
|
|
22263
|
+
}
|
|
22264
|
+
|
|
22265
|
+
.c-gapx-sm-2 {
|
|
22266
|
+
column-gap: 0.5rem;
|
|
22267
|
+
}
|
|
22268
|
+
|
|
22269
|
+
.c-gapy-sm-2 {
|
|
22270
|
+
row-gap: 0.5rem;
|
|
22271
|
+
}
|
|
22272
|
+
|
|
22273
|
+
.c-gap-sm-3 {
|
|
22274
|
+
gap: 1rem;
|
|
22275
|
+
}
|
|
22276
|
+
|
|
22277
|
+
.c-gapx-sm-3 {
|
|
22278
|
+
column-gap: 1rem;
|
|
22279
|
+
}
|
|
22280
|
+
|
|
22281
|
+
.c-gapy-sm-3 {
|
|
22282
|
+
row-gap: 1rem;
|
|
22283
|
+
}
|
|
22284
|
+
|
|
22285
|
+
.c-gap-sm-4 {
|
|
22286
|
+
gap: 1.5rem;
|
|
22287
|
+
}
|
|
22288
|
+
|
|
22289
|
+
.c-gapx-sm-4 {
|
|
22290
|
+
column-gap: 1.5rem;
|
|
22291
|
+
}
|
|
22292
|
+
|
|
22293
|
+
.c-gapy-sm-4 {
|
|
22294
|
+
row-gap: 1.5rem;
|
|
22295
|
+
}
|
|
22296
|
+
|
|
22297
|
+
.c-gap-sm-5 {
|
|
22298
|
+
gap: 3rem;
|
|
22299
|
+
}
|
|
22300
|
+
|
|
22301
|
+
.c-gapx-sm-5 {
|
|
22302
|
+
column-gap: 3rem;
|
|
22303
|
+
}
|
|
22304
|
+
|
|
22305
|
+
.c-gapy-sm-5 {
|
|
22306
|
+
row-gap: 3rem;
|
|
22307
|
+
}
|
|
22308
|
+
}
|
|
22309
|
+
@media (min-width: 768px) {
|
|
22310
|
+
.c-gap-md-0 {
|
|
22311
|
+
gap: 0;
|
|
22312
|
+
}
|
|
22313
|
+
|
|
22314
|
+
.c-gapx-md-0 {
|
|
22315
|
+
column-gap: 0;
|
|
22316
|
+
}
|
|
22317
|
+
|
|
22318
|
+
.c-gapy-md-0 {
|
|
22319
|
+
row-gap: 0;
|
|
22320
|
+
}
|
|
22321
|
+
|
|
22322
|
+
.c-gap-md-1 {
|
|
22323
|
+
gap: 0.25rem;
|
|
22324
|
+
}
|
|
22325
|
+
|
|
22326
|
+
.c-gapx-md-1 {
|
|
22327
|
+
column-gap: 0.25rem;
|
|
22328
|
+
}
|
|
22329
|
+
|
|
22330
|
+
.c-gapy-md-1 {
|
|
22331
|
+
row-gap: 0.25rem;
|
|
22332
|
+
}
|
|
22333
|
+
|
|
22334
|
+
.c-gap-md-2 {
|
|
22335
|
+
gap: 0.5rem;
|
|
22336
|
+
}
|
|
22337
|
+
|
|
22338
|
+
.c-gapx-md-2 {
|
|
22339
|
+
column-gap: 0.5rem;
|
|
22340
|
+
}
|
|
22341
|
+
|
|
22342
|
+
.c-gapy-md-2 {
|
|
22343
|
+
row-gap: 0.5rem;
|
|
22344
|
+
}
|
|
22345
|
+
|
|
22346
|
+
.c-gap-md-3 {
|
|
22347
|
+
gap: 1rem;
|
|
22348
|
+
}
|
|
22349
|
+
|
|
22350
|
+
.c-gapx-md-3 {
|
|
22351
|
+
column-gap: 1rem;
|
|
22352
|
+
}
|
|
22353
|
+
|
|
22354
|
+
.c-gapy-md-3 {
|
|
22355
|
+
row-gap: 1rem;
|
|
22356
|
+
}
|
|
22357
|
+
|
|
22358
|
+
.c-gap-md-4 {
|
|
22359
|
+
gap: 1.5rem;
|
|
22360
|
+
}
|
|
22361
|
+
|
|
22362
|
+
.c-gapx-md-4 {
|
|
22363
|
+
column-gap: 1.5rem;
|
|
22364
|
+
}
|
|
22365
|
+
|
|
22366
|
+
.c-gapy-md-4 {
|
|
22367
|
+
row-gap: 1.5rem;
|
|
22368
|
+
}
|
|
22369
|
+
|
|
22370
|
+
.c-gap-md-5 {
|
|
22371
|
+
gap: 3rem;
|
|
22372
|
+
}
|
|
22373
|
+
|
|
22374
|
+
.c-gapx-md-5 {
|
|
22375
|
+
column-gap: 3rem;
|
|
22376
|
+
}
|
|
22377
|
+
|
|
22378
|
+
.c-gapy-md-5 {
|
|
22379
|
+
row-gap: 3rem;
|
|
22380
|
+
}
|
|
22381
|
+
}
|
|
22382
|
+
@media (min-width: 992px) {
|
|
22383
|
+
.c-gap-lg-0 {
|
|
22384
|
+
gap: 0;
|
|
22385
|
+
}
|
|
22386
|
+
|
|
22387
|
+
.c-gapx-lg-0 {
|
|
22388
|
+
column-gap: 0;
|
|
22389
|
+
}
|
|
22390
|
+
|
|
22391
|
+
.c-gapy-lg-0 {
|
|
22392
|
+
row-gap: 0;
|
|
22393
|
+
}
|
|
22394
|
+
|
|
22395
|
+
.c-gap-lg-1 {
|
|
22396
|
+
gap: 0.25rem;
|
|
22397
|
+
}
|
|
22398
|
+
|
|
22399
|
+
.c-gapx-lg-1 {
|
|
22400
|
+
column-gap: 0.25rem;
|
|
22401
|
+
}
|
|
22402
|
+
|
|
22403
|
+
.c-gapy-lg-1 {
|
|
22404
|
+
row-gap: 0.25rem;
|
|
22405
|
+
}
|
|
22406
|
+
|
|
22407
|
+
.c-gap-lg-2 {
|
|
22408
|
+
gap: 0.5rem;
|
|
22409
|
+
}
|
|
22410
|
+
|
|
22411
|
+
.c-gapx-lg-2 {
|
|
22412
|
+
column-gap: 0.5rem;
|
|
22413
|
+
}
|
|
22414
|
+
|
|
22415
|
+
.c-gapy-lg-2 {
|
|
22416
|
+
row-gap: 0.5rem;
|
|
22417
|
+
}
|
|
22418
|
+
|
|
22419
|
+
.c-gap-lg-3 {
|
|
22420
|
+
gap: 1rem;
|
|
22421
|
+
}
|
|
22422
|
+
|
|
22423
|
+
.c-gapx-lg-3 {
|
|
22424
|
+
column-gap: 1rem;
|
|
22425
|
+
}
|
|
22426
|
+
|
|
22427
|
+
.c-gapy-lg-3 {
|
|
22428
|
+
row-gap: 1rem;
|
|
22429
|
+
}
|
|
22430
|
+
|
|
22431
|
+
.c-gap-lg-4 {
|
|
22432
|
+
gap: 1.5rem;
|
|
22433
|
+
}
|
|
22434
|
+
|
|
22435
|
+
.c-gapx-lg-4 {
|
|
22436
|
+
column-gap: 1.5rem;
|
|
22437
|
+
}
|
|
22438
|
+
|
|
22439
|
+
.c-gapy-lg-4 {
|
|
22440
|
+
row-gap: 1.5rem;
|
|
22441
|
+
}
|
|
22442
|
+
|
|
22443
|
+
.c-gap-lg-5 {
|
|
22444
|
+
gap: 3rem;
|
|
22445
|
+
}
|
|
22446
|
+
|
|
22447
|
+
.c-gapx-lg-5 {
|
|
22448
|
+
column-gap: 3rem;
|
|
22449
|
+
}
|
|
22450
|
+
|
|
22451
|
+
.c-gapy-lg-5 {
|
|
22452
|
+
row-gap: 3rem;
|
|
22453
|
+
}
|
|
22454
|
+
}
|
|
22455
|
+
@media (min-width: 1280px) {
|
|
22456
|
+
.c-gap-xl-0 {
|
|
22457
|
+
gap: 0;
|
|
22458
|
+
}
|
|
22459
|
+
|
|
22460
|
+
.c-gapx-xl-0 {
|
|
22461
|
+
column-gap: 0;
|
|
22462
|
+
}
|
|
22463
|
+
|
|
22464
|
+
.c-gapy-xl-0 {
|
|
22465
|
+
row-gap: 0;
|
|
22466
|
+
}
|
|
22467
|
+
|
|
22468
|
+
.c-gap-xl-1 {
|
|
22469
|
+
gap: 0.25rem;
|
|
22470
|
+
}
|
|
22471
|
+
|
|
22472
|
+
.c-gapx-xl-1 {
|
|
22473
|
+
column-gap: 0.25rem;
|
|
22474
|
+
}
|
|
22475
|
+
|
|
22476
|
+
.c-gapy-xl-1 {
|
|
22477
|
+
row-gap: 0.25rem;
|
|
22478
|
+
}
|
|
22479
|
+
|
|
22480
|
+
.c-gap-xl-2 {
|
|
22481
|
+
gap: 0.5rem;
|
|
22482
|
+
}
|
|
22483
|
+
|
|
22484
|
+
.c-gapx-xl-2 {
|
|
22485
|
+
column-gap: 0.5rem;
|
|
22486
|
+
}
|
|
22487
|
+
|
|
22488
|
+
.c-gapy-xl-2 {
|
|
22489
|
+
row-gap: 0.5rem;
|
|
22490
|
+
}
|
|
22491
|
+
|
|
22492
|
+
.c-gap-xl-3 {
|
|
22493
|
+
gap: 1rem;
|
|
22494
|
+
}
|
|
22495
|
+
|
|
22496
|
+
.c-gapx-xl-3 {
|
|
22497
|
+
column-gap: 1rem;
|
|
22498
|
+
}
|
|
22499
|
+
|
|
22500
|
+
.c-gapy-xl-3 {
|
|
22501
|
+
row-gap: 1rem;
|
|
22502
|
+
}
|
|
22503
|
+
|
|
22504
|
+
.c-gap-xl-4 {
|
|
22505
|
+
gap: 1.5rem;
|
|
22506
|
+
}
|
|
22507
|
+
|
|
22508
|
+
.c-gapx-xl-4 {
|
|
22509
|
+
column-gap: 1.5rem;
|
|
22510
|
+
}
|
|
22511
|
+
|
|
22512
|
+
.c-gapy-xl-4 {
|
|
22513
|
+
row-gap: 1.5rem;
|
|
22514
|
+
}
|
|
22515
|
+
|
|
22516
|
+
.c-gap-xl-5 {
|
|
22517
|
+
gap: 3rem;
|
|
22518
|
+
}
|
|
22519
|
+
|
|
22520
|
+
.c-gapx-xl-5 {
|
|
22521
|
+
column-gap: 3rem;
|
|
22522
|
+
}
|
|
22523
|
+
|
|
22524
|
+
.c-gapy-xl-5 {
|
|
22525
|
+
row-gap: 3rem;
|
|
22526
|
+
}
|
|
22527
|
+
}
|
|
22175
22528
|
.c-m-0 {
|
|
22176
22529
|
margin: 0;
|
|
22177
22530
|
}
|
|
@@ -26390,6 +26743,10 @@ button.bg-dark:focus {
|
|
|
26390
26743
|
display: block !important;
|
|
26391
26744
|
}
|
|
26392
26745
|
|
|
26746
|
+
.d-grid {
|
|
26747
|
+
display: grid !important;
|
|
26748
|
+
}
|
|
26749
|
+
|
|
26393
26750
|
.d-table {
|
|
26394
26751
|
display: table !important;
|
|
26395
26752
|
}
|
|
@@ -26427,6 +26784,10 @@ button.bg-dark:focus {
|
|
|
26427
26784
|
display: block !important;
|
|
26428
26785
|
}
|
|
26429
26786
|
|
|
26787
|
+
.d-sm-grid {
|
|
26788
|
+
display: grid !important;
|
|
26789
|
+
}
|
|
26790
|
+
|
|
26430
26791
|
.d-sm-table {
|
|
26431
26792
|
display: table !important;
|
|
26432
26793
|
}
|
|
@@ -26464,6 +26825,10 @@ button.bg-dark:focus {
|
|
|
26464
26825
|
display: block !important;
|
|
26465
26826
|
}
|
|
26466
26827
|
|
|
26828
|
+
.d-md-grid {
|
|
26829
|
+
display: grid !important;
|
|
26830
|
+
}
|
|
26831
|
+
|
|
26467
26832
|
.d-md-table {
|
|
26468
26833
|
display: table !important;
|
|
26469
26834
|
}
|
|
@@ -26501,6 +26866,10 @@ button.bg-dark:focus {
|
|
|
26501
26866
|
display: block !important;
|
|
26502
26867
|
}
|
|
26503
26868
|
|
|
26869
|
+
.d-lg-grid {
|
|
26870
|
+
display: grid !important;
|
|
26871
|
+
}
|
|
26872
|
+
|
|
26504
26873
|
.d-lg-table {
|
|
26505
26874
|
display: table !important;
|
|
26506
26875
|
}
|
|
@@ -26538,6 +26907,10 @@ button.bg-dark:focus {
|
|
|
26538
26907
|
display: block !important;
|
|
26539
26908
|
}
|
|
26540
26909
|
|
|
26910
|
+
.d-xl-grid {
|
|
26911
|
+
display: grid !important;
|
|
26912
|
+
}
|
|
26913
|
+
|
|
26541
26914
|
.d-xl-table {
|
|
26542
26915
|
display: table !important;
|
|
26543
26916
|
}
|
|
@@ -26579,6 +26952,10 @@ button.bg-dark:focus {
|
|
|
26579
26952
|
display: block !important;
|
|
26580
26953
|
}
|
|
26581
26954
|
|
|
26955
|
+
.d-print-grid {
|
|
26956
|
+
display: grid !important;
|
|
26957
|
+
}
|
|
26958
|
+
|
|
26582
26959
|
.d-print-table {
|
|
26583
26960
|
display: table !important;
|
|
26584
26961
|
}
|