@clayui/css 3.136.0 → 3.138.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 +418 -48
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +379 -15
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +383 -20
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/anonymize.svg +1 -0
- package/lib/images/icons/bell-full.svg +1 -0
- package/lib/images/icons/comments.svg +3 -5
- package/lib/images/icons/devices.svg +1 -0
- package/lib/images/icons/environment-connected.svg +1 -0
- package/lib/images/icons/environment-disconnected.svg +1 -0
- package/lib/images/icons/environment.svg +1 -0
- package/lib/images/icons/flags-bs-BA.svg +13 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/info-panel-closed.svg +1 -0
- package/lib/images/icons/info-panel-open.svg +1 -0
- package/lib/images/icons/megaphone-full.svg +1 -0
- package/lib/images/icons/paste-plaintext.svg +1 -3
- package/lib/images/icons/paste-word.svg +1 -3
- package/lib/images/icons/paste.svg +1 -3
- package/lib/images/icons/pin-full.svg +1 -0
- package/lib/images/icons/repeat.svg +7 -0
- package/lib/images/icons/reset.svg +3 -3
- package/lib/images/icons/send.svg +1 -0
- package/lib/images/icons/share-alt.svg +1 -0
- package/lib/images/icons/social-twitter.svg +1 -0
- package/lib/images/icons/third-party.svg +1 -0
- package/package.json +2 -2
- package/src/images/icons/anonymize.svg +1 -0
- package/src/images/icons/bell-full.svg +1 -0
- package/src/images/icons/comments.svg +3 -5
- package/src/images/icons/devices.svg +1 -0
- package/src/images/icons/environment-connected.svg +1 -0
- package/src/images/icons/environment-disconnected.svg +1 -0
- package/src/images/icons/environment.svg +1 -0
- package/src/images/icons/flags-bs-BA.svg +13 -0
- package/src/images/icons/info-panel-closed.svg +1 -0
- package/src/images/icons/info-panel-open.svg +1 -0
- package/src/images/icons/megaphone-full.svg +1 -0
- package/src/images/icons/paste-plaintext.svg +1 -3
- package/src/images/icons/paste-word.svg +1 -3
- package/src/images/icons/paste.svg +1 -3
- package/src/images/icons/pin-full.svg +1 -0
- package/src/images/icons/repeat.svg +7 -0
- package/src/images/icons/reset.svg +3 -3
- package/src/images/icons/send.svg +1 -0
- package/src/images/icons/share-alt.svg +1 -0
- package/src/images/icons/social-twitter.svg +1 -0
- package/src/images/icons/third-party.svg +1 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_forms.scss +6 -9
- package/src/scss/atlas/variables/_sidebar.scss +12 -7
- package/src/scss/cadmin/components/_form-validation.scss +16 -0
- package/src/scss/cadmin/components/_sidebar.scss +32 -0
- package/src/scss/cadmin/components/_slideout.scss +12 -0
- package/src/scss/cadmin/components/_utilities-functional-important.scss +8 -0
- package/src/scss/cadmin/variables/_clay-color.scss +2 -0
- package/src/scss/cadmin/variables/_forms.scss +39 -3
- package/src/scss/cadmin/variables/_sidebar.scss +36 -7
- package/src/scss/cadmin/variables/_slideout.scss +51 -3
- package/src/scss/cadmin/variables/_stickers.scss +6 -0
- package/src/scss/components/_form-validation.scss +16 -0
- package/src/scss/components/_sidebar.scss +32 -0
- package/src/scss/components/_slideout.scss +12 -0
- package/src/scss/components/_utilities-functional-important.scss +8 -0
- package/src/scss/functions/_lx-icons-generated.scss +9 -5
- package/src/scss/mixins/_globals.scss +7 -0
- package/src/scss/mixins/_grid.scss +6 -0
- package/src/scss/mixins/_sidebar.scss +2 -0
- package/src/scss/mixins/_slideout.scss +11 -1
- package/src/scss/variables/_forms.scss +36 -0
- package/src/scss/variables/_sidebar.scss +26 -9
- package/src/scss/variables/_slideout.scss +51 -3
- package/src/scss/variables/_stickers.scss +6 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.138.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>
|
|
@@ -5547,6 +5547,12 @@ input[type=button].btn-block {
|
|
|
5547
5547
|
border-radius: 5000px;
|
|
5548
5548
|
box-shadow: 0 0 0 1px #e7e7ed;
|
|
5549
5549
|
}
|
|
5550
|
+
.sticker-xs {
|
|
5551
|
+
font-size: 0.5rem;
|
|
5552
|
+
height: 1rem;
|
|
5553
|
+
line-height: 1rem;
|
|
5554
|
+
width: 1rem;
|
|
5555
|
+
}
|
|
5550
5556
|
.sticker-sm {
|
|
5551
5557
|
font-size: 0.75rem;
|
|
5552
5558
|
height: 1.5rem;
|
|
@@ -10745,6 +10751,26 @@ label.custom-control-label {
|
|
|
10745
10751
|
min-width: 1.5rem;
|
|
10746
10752
|
}
|
|
10747
10753
|
}
|
|
10754
|
+
@media (max-width: 575.98px) {
|
|
10755
|
+
.date-picker .input-group-text {
|
|
10756
|
+
font-size: inherit;
|
|
10757
|
+
height: 2rem;
|
|
10758
|
+
min-width: 1.5rem;
|
|
10759
|
+
}
|
|
10760
|
+
}
|
|
10761
|
+
@media (max-width: 575.98px) {
|
|
10762
|
+
.date-picker .clay-time .form-control {
|
|
10763
|
+
border-radius: 0.25rem;
|
|
10764
|
+
font-size: 0.875rem;
|
|
10765
|
+
height: 2rem;
|
|
10766
|
+
line-height: 1.5;
|
|
10767
|
+
min-height: 2rem;
|
|
10768
|
+
padding-bottom: 0.25rem;
|
|
10769
|
+
padding-left: 0.75rem;
|
|
10770
|
+
padding-right: 0.75rem;
|
|
10771
|
+
padding-top: 0.25rem;
|
|
10772
|
+
}
|
|
10773
|
+
}
|
|
10748
10774
|
@media (max-width: 575.98px) {
|
|
10749
10775
|
.date-picker .clay-time .form-control {
|
|
10750
10776
|
border-radius: 0.25rem;
|
|
@@ -10776,6 +10802,14 @@ label.custom-control-label {
|
|
|
10776
10802
|
max-width: 264px;
|
|
10777
10803
|
}
|
|
10778
10804
|
}
|
|
10805
|
+
@media (max-width: 575.98px) {
|
|
10806
|
+
.date-picker-dropdown-menu {
|
|
10807
|
+
font-size: 0.75rem;
|
|
10808
|
+
margin: 0;
|
|
10809
|
+
max-height: 255px;
|
|
10810
|
+
max-width: 264px;
|
|
10811
|
+
}
|
|
10812
|
+
}
|
|
10779
10813
|
|
|
10780
10814
|
.date-picker-nav {
|
|
10781
10815
|
display: flex;
|
|
@@ -10834,6 +10868,15 @@ label.custom-control-label {
|
|
|
10834
10868
|
min-width: 1.5rem;
|
|
10835
10869
|
}
|
|
10836
10870
|
}
|
|
10871
|
+
@media (max-width: 575.98px) {
|
|
10872
|
+
.date-picker-nav .nav-btn-monospaced {
|
|
10873
|
+
font-size: 0.75rem;
|
|
10874
|
+
height: 1.5rem;
|
|
10875
|
+
max-height: 1.5rem;
|
|
10876
|
+
max-width: 1.5rem;
|
|
10877
|
+
min-width: 1.5rem;
|
|
10878
|
+
}
|
|
10879
|
+
}
|
|
10837
10880
|
.date-picker-nav select.form-control {
|
|
10838
10881
|
background-color: transparent;
|
|
10839
10882
|
border-color: transparent;
|
|
@@ -10851,6 +10894,12 @@ label.custom-control-label {
|
|
|
10851
10894
|
height: 1.5rem;
|
|
10852
10895
|
}
|
|
10853
10896
|
}
|
|
10897
|
+
@media (max-width: 575.98px) {
|
|
10898
|
+
.date-picker-nav select.form-control {
|
|
10899
|
+
font-size: 0.75rem;
|
|
10900
|
+
height: 1.5rem;
|
|
10901
|
+
}
|
|
10902
|
+
}
|
|
10854
10903
|
.date-picker-nav select.form-control:hover, .date-picker-nav select.form-control.hover {
|
|
10855
10904
|
background-color: #f1f2f5;
|
|
10856
10905
|
color: #272833;
|
|
@@ -10881,6 +10930,12 @@ label.custom-control-label {
|
|
|
10881
10930
|
height: 1.5rem;
|
|
10882
10931
|
}
|
|
10883
10932
|
}
|
|
10933
|
+
@media (max-width: 575.98px) {
|
|
10934
|
+
.date-picker-nav .form-control-select {
|
|
10935
|
+
font-size: 0.75rem;
|
|
10936
|
+
height: 1.5rem;
|
|
10937
|
+
}
|
|
10938
|
+
}
|
|
10884
10939
|
.date-picker-nav .form-control-select:hover, .date-picker-nav .form-control-select.hover {
|
|
10885
10940
|
background-color: #f1f2f5;
|
|
10886
10941
|
color: #272833;
|
|
@@ -10929,6 +10984,14 @@ label.custom-control-label {
|
|
|
10929
10984
|
padding-top: 0.5rem;
|
|
10930
10985
|
}
|
|
10931
10986
|
}
|
|
10987
|
+
@media (max-width: 575.98px) {
|
|
10988
|
+
.date-picker-calendar-header {
|
|
10989
|
+
padding-bottom: 0.25rem;
|
|
10990
|
+
padding-left: 0.375rem;
|
|
10991
|
+
padding-right: 0.375rem;
|
|
10992
|
+
padding-top: 0.5rem;
|
|
10993
|
+
}
|
|
10994
|
+
}
|
|
10932
10995
|
|
|
10933
10996
|
.date-picker-calendar-body {
|
|
10934
10997
|
padding-left: 0.5rem;
|
|
@@ -10942,6 +11005,13 @@ label.custom-control-label {
|
|
|
10942
11005
|
padding-bottom: 0.25rem;
|
|
10943
11006
|
}
|
|
10944
11007
|
}
|
|
11008
|
+
@media (max-width: 575.98px) {
|
|
11009
|
+
.date-picker-calendar-body {
|
|
11010
|
+
padding-left: 0.375rem;
|
|
11011
|
+
padding-right: 0.375rem;
|
|
11012
|
+
padding-bottom: 0.25rem;
|
|
11013
|
+
}
|
|
11014
|
+
}
|
|
10945
11015
|
|
|
10946
11016
|
.date-picker-calendar-footer {
|
|
10947
11017
|
border-color: #cdced9;
|
|
@@ -10959,6 +11029,13 @@ label.custom-control-label {
|
|
|
10959
11029
|
padding-top: 0.4375rem;
|
|
10960
11030
|
}
|
|
10961
11031
|
}
|
|
11032
|
+
@media (max-width: 575.98px) {
|
|
11033
|
+
.date-picker-calendar-footer {
|
|
11034
|
+
padding-left: 0.375rem;
|
|
11035
|
+
padding-right: 0.375rem;
|
|
11036
|
+
padding-top: 0.4375rem;
|
|
11037
|
+
}
|
|
11038
|
+
}
|
|
10962
11039
|
|
|
10963
11040
|
.date-picker-calendar-item {
|
|
10964
11041
|
align-items: center;
|
|
@@ -10994,6 +11071,12 @@ label.custom-control-label {
|
|
|
10994
11071
|
transition: none;
|
|
10995
11072
|
}
|
|
10996
11073
|
|
|
11074
|
+
@media (max-width: 575.98px) {
|
|
11075
|
+
.date-picker-calendar-item {
|
|
11076
|
+
height: 1.5rem;
|
|
11077
|
+
width: 1.5rem;
|
|
11078
|
+
}
|
|
11079
|
+
}
|
|
10997
11080
|
.date-picker-calendar-item:disabled, .date-picker-calendar-item.disabled {
|
|
10998
11081
|
cursor: not-allowed;
|
|
10999
11082
|
}
|
|
@@ -11024,6 +11107,12 @@ label.custom-control-label {
|
|
|
11024
11107
|
margin-top: 0.25rem;
|
|
11025
11108
|
}
|
|
11026
11109
|
}
|
|
11110
|
+
@media (max-width: 575.98px) {
|
|
11111
|
+
.date-picker-row {
|
|
11112
|
+
margin-bottom: 0.25rem;
|
|
11113
|
+
margin-top: 0.25rem;
|
|
11114
|
+
}
|
|
11115
|
+
}
|
|
11027
11116
|
|
|
11028
11117
|
.date-picker-col {
|
|
11029
11118
|
display: flex;
|
|
@@ -11060,6 +11149,11 @@ label.custom-control-label {
|
|
|
11060
11149
|
margin-bottom: 0.25rem;
|
|
11061
11150
|
}
|
|
11062
11151
|
}
|
|
11152
|
+
@media (max-width: 575.98px) {
|
|
11153
|
+
.date-picker-days-row {
|
|
11154
|
+
margin-bottom: 0.25rem;
|
|
11155
|
+
}
|
|
11156
|
+
}
|
|
11063
11157
|
|
|
11064
11158
|
.date-picker-day {
|
|
11065
11159
|
height: 1.3125rem;
|
|
@@ -11363,29 +11457,47 @@ label.custom-control-label {
|
|
|
11363
11457
|
overflow-wrap: break-word;
|
|
11364
11458
|
word-wrap: break-word;
|
|
11365
11459
|
}
|
|
11460
|
+
.form-text.blockquote {
|
|
11461
|
+
font-style: italic;
|
|
11462
|
+
font-weight: 400;
|
|
11463
|
+
margin-bottom: 0;
|
|
11464
|
+
margin-top: 0.75rem;
|
|
11465
|
+
padding-left: 0.75rem;
|
|
11466
|
+
position: relative;
|
|
11467
|
+
}
|
|
11468
|
+
.form-text.blockquote::before {
|
|
11469
|
+
background-color: #a7a9bc;
|
|
11470
|
+
bottom: 0;
|
|
11471
|
+
content: "";
|
|
11472
|
+
display: block;
|
|
11473
|
+
left: 0;
|
|
11474
|
+
position: absolute;
|
|
11475
|
+
top: 0;
|
|
11476
|
+
width: 0.125rem;
|
|
11477
|
+
}
|
|
11366
11478
|
|
|
11367
11479
|
.was-validated .form-control:valid,
|
|
11368
11480
|
.was-validated .form-control.is-valid {
|
|
11369
11481
|
background-color: #edf9f0;
|
|
11370
11482
|
border-color: #5aca75;
|
|
11371
|
-
box-shadow:
|
|
11483
|
+
box-shadow: c-unset;
|
|
11372
11484
|
color: #272833;
|
|
11373
11485
|
}
|
|
11374
11486
|
.was-validated .form-control:valid:focus,
|
|
11375
11487
|
.was-validated .form-control.is-valid:focus {
|
|
11376
|
-
box-shadow:
|
|
11488
|
+
box-shadow: c-unset;
|
|
11377
11489
|
}
|
|
11378
11490
|
|
|
11379
11491
|
.was-validated .form-control:invalid,
|
|
11380
11492
|
.was-validated .form-control.is-invalid {
|
|
11381
11493
|
background-color: #feefef;
|
|
11382
11494
|
border-color: #f48989;
|
|
11383
|
-
box-shadow:
|
|
11495
|
+
box-shadow: c-unset;
|
|
11384
11496
|
color: #272833;
|
|
11385
11497
|
}
|
|
11386
11498
|
.was-validated .form-control:invalid:focus,
|
|
11387
11499
|
.was-validated .form-control.is-invalid:focus {
|
|
11388
|
-
box-shadow:
|
|
11500
|
+
box-shadow: c-unset;
|
|
11389
11501
|
}
|
|
11390
11502
|
|
|
11391
11503
|
.has-error .custom-control-label,
|
|
@@ -11395,11 +11507,12 @@ label.custom-control-label {
|
|
|
11395
11507
|
.has-error .form-control {
|
|
11396
11508
|
background-color: #feefef;
|
|
11397
11509
|
border-color: #f48989;
|
|
11398
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
11399
11510
|
color: #272833;
|
|
11400
11511
|
}
|
|
11401
|
-
.has-error .form-control
|
|
11402
|
-
|
|
11512
|
+
.has-error .form-control:focus-within:has(input:focus) {
|
|
11513
|
+
background-color: #feefef;
|
|
11514
|
+
border-color: #f48989;
|
|
11515
|
+
color: #272833;
|
|
11403
11516
|
}
|
|
11404
11517
|
.has-error .form-control[readonly] {
|
|
11405
11518
|
background-color: #fff;
|
|
@@ -11420,9 +11533,6 @@ label.custom-control-label {
|
|
|
11420
11533
|
.has-error select.form-control[multiple] {
|
|
11421
11534
|
background-image: none;
|
|
11422
11535
|
}
|
|
11423
|
-
.has-error .input-group-item.focus {
|
|
11424
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
11425
|
-
}
|
|
11426
11536
|
.has-error .input-group-item.focus .input-group-inset {
|
|
11427
11537
|
background-color: #feefef;
|
|
11428
11538
|
border-color: #f48989;
|
|
@@ -11434,7 +11544,6 @@ label.custom-control-label {
|
|
|
11434
11544
|
.has-error .input-group-item .input-group-inset ~ .input-group-inset-item {
|
|
11435
11545
|
background-color: #feefef;
|
|
11436
11546
|
border-color: #f48989;
|
|
11437
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
11438
11547
|
}
|
|
11439
11548
|
.has-error .input-group-item .input-group-inset:focus {
|
|
11440
11549
|
box-shadow: none;
|
|
@@ -11451,11 +11560,12 @@ label.custom-control-label {
|
|
|
11451
11560
|
.has-warning .form-control {
|
|
11452
11561
|
background-color: #fff4ec;
|
|
11453
11562
|
border-color: #ff8f39;
|
|
11454
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
11455
11563
|
color: #272833;
|
|
11456
11564
|
}
|
|
11457
|
-
.has-warning .form-control
|
|
11458
|
-
|
|
11565
|
+
.has-warning .form-control:focus-within:has(input:focus) {
|
|
11566
|
+
background-color: #fff4ec;
|
|
11567
|
+
border-color: #ff8f39;
|
|
11568
|
+
color: #272833;
|
|
11459
11569
|
}
|
|
11460
11570
|
.has-warning .form-control[readonly] {
|
|
11461
11571
|
background-color: #fff;
|
|
@@ -11476,9 +11586,6 @@ label.custom-control-label {
|
|
|
11476
11586
|
.has-warning select.form-control[multiple] {
|
|
11477
11587
|
background-image: none;
|
|
11478
11588
|
}
|
|
11479
|
-
.has-warning .input-group-item.focus {
|
|
11480
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
11481
|
-
}
|
|
11482
11589
|
.has-warning .input-group-item.focus .input-group-inset {
|
|
11483
11590
|
background-color: #fff4ec;
|
|
11484
11591
|
border-color: #ff8f39;
|
|
@@ -11490,7 +11597,6 @@ label.custom-control-label {
|
|
|
11490
11597
|
.has-warning .input-group-item .input-group-inset ~ .input-group-inset-item {
|
|
11491
11598
|
background-color: #fff4ec;
|
|
11492
11599
|
border-color: #ff8f39;
|
|
11493
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
11494
11600
|
}
|
|
11495
11601
|
.has-warning .input-group-item .input-group-inset:focus {
|
|
11496
11602
|
box-shadow: none;
|
|
@@ -11507,11 +11613,12 @@ label.custom-control-label {
|
|
|
11507
11613
|
.has-success .form-control {
|
|
11508
11614
|
background-color: #edf9f0;
|
|
11509
11615
|
border-color: #5aca75;
|
|
11510
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
11511
11616
|
color: #272833;
|
|
11512
11617
|
}
|
|
11513
|
-
.has-success .form-control
|
|
11514
|
-
|
|
11618
|
+
.has-success .form-control:focus-within:has(input:focus) {
|
|
11619
|
+
background-color: #edf9f0;
|
|
11620
|
+
border-color: #5aca75;
|
|
11621
|
+
color: #272833;
|
|
11515
11622
|
}
|
|
11516
11623
|
.has-success .form-control[readonly] {
|
|
11517
11624
|
background-color: #fff;
|
|
@@ -11532,9 +11639,6 @@ label.custom-control-label {
|
|
|
11532
11639
|
.has-success select.form-control[multiple] {
|
|
11533
11640
|
background-image: none;
|
|
11534
11641
|
}
|
|
11535
|
-
.has-success .input-group-item.focus {
|
|
11536
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
11537
|
-
}
|
|
11538
11642
|
.has-success .input-group-item.focus .input-group-inset {
|
|
11539
11643
|
background-color: #edf9f0;
|
|
11540
11644
|
border-color: #5aca75;
|
|
@@ -11546,7 +11650,6 @@ label.custom-control-label {
|
|
|
11546
11650
|
.has-success .input-group-item .input-group-inset ~ .input-group-inset-item {
|
|
11547
11651
|
background-color: #edf9f0;
|
|
11548
11652
|
border-color: #5aca75;
|
|
11549
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
11550
11653
|
}
|
|
11551
11654
|
.has-success .input-group-item .input-group-inset:focus {
|
|
11552
11655
|
box-shadow: none;
|
|
@@ -14353,6 +14456,12 @@ label.custom-control-label {
|
|
|
14353
14456
|
.menubar-vertical-expand-md {
|
|
14354
14457
|
max-width: 15.625rem;
|
|
14355
14458
|
}
|
|
14459
|
+
@media (max-width: 767.98px) {
|
|
14460
|
+
.menubar-vertical-expand-md {
|
|
14461
|
+
margin-bottom: 1rem;
|
|
14462
|
+
max-width: none;
|
|
14463
|
+
}
|
|
14464
|
+
}
|
|
14356
14465
|
.menubar-vertical-expand-md .menubar-collapse {
|
|
14357
14466
|
display: block;
|
|
14358
14467
|
}
|
|
@@ -14417,6 +14526,11 @@ label.custom-control-label {
|
|
|
14417
14526
|
color: #272833;
|
|
14418
14527
|
}
|
|
14419
14528
|
}
|
|
14529
|
+
@media (max-width: 767.98px) {
|
|
14530
|
+
.menubar-vertical-expand-md.menubar-transparent {
|
|
14531
|
+
background-color: #fff;
|
|
14532
|
+
}
|
|
14533
|
+
}
|
|
14420
14534
|
.menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
14421
14535
|
border-radius: 0.25rem;
|
|
14422
14536
|
color: #6b6c7e;
|
|
@@ -14601,6 +14715,12 @@ label.custom-control-label {
|
|
|
14601
14715
|
.menubar-vertical-expand-lg {
|
|
14602
14716
|
max-width: 15.625rem;
|
|
14603
14717
|
}
|
|
14718
|
+
@media (max-width: 991.98px) {
|
|
14719
|
+
.menubar-vertical-expand-lg {
|
|
14720
|
+
margin-bottom: 1rem;
|
|
14721
|
+
max-width: none;
|
|
14722
|
+
}
|
|
14723
|
+
}
|
|
14604
14724
|
.menubar-vertical-expand-lg .menubar-collapse {
|
|
14605
14725
|
display: block;
|
|
14606
14726
|
}
|
|
@@ -14665,6 +14785,11 @@ label.custom-control-label {
|
|
|
14665
14785
|
color: #272833;
|
|
14666
14786
|
}
|
|
14667
14787
|
}
|
|
14788
|
+
@media (max-width: 991.98px) {
|
|
14789
|
+
.menubar-vertical-expand-lg.menubar-transparent {
|
|
14790
|
+
background-color: #fff;
|
|
14791
|
+
}
|
|
14792
|
+
}
|
|
14668
14793
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
14669
14794
|
border-radius: 0.25rem;
|
|
14670
14795
|
color: #6b6c7e;
|
|
@@ -18798,6 +18923,12 @@ label.custom-control-label {
|
|
|
18798
18923
|
display: flex;
|
|
18799
18924
|
flex-wrap: wrap;
|
|
18800
18925
|
}
|
|
18926
|
+
@media (max-width: 767.98px) {
|
|
18927
|
+
.pagination-bar {
|
|
18928
|
+
flex-direction: column;
|
|
18929
|
+
justify-content: center;
|
|
18930
|
+
}
|
|
18931
|
+
}
|
|
18801
18932
|
@media (max-width: 767.98px) {
|
|
18802
18933
|
.pagination-bar {
|
|
18803
18934
|
flex-direction: column;
|
|
@@ -20319,6 +20450,12 @@ label.custom-control-label {
|
|
|
20319
20450
|
margin-right: -1rem;
|
|
20320
20451
|
}
|
|
20321
20452
|
}
|
|
20453
|
+
@media (max-width: 767.98px) {
|
|
20454
|
+
.sheet-row {
|
|
20455
|
+
margin-left: -1rem;
|
|
20456
|
+
margin-right: -1rem;
|
|
20457
|
+
}
|
|
20458
|
+
}
|
|
20322
20459
|
|
|
20323
20460
|
.sheet-header {
|
|
20324
20461
|
margin-bottom: 3rem;
|
|
@@ -20704,23 +20841,19 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20704
20841
|
overflow: auto;
|
|
20705
20842
|
-webkit-overflow-scrolling: touch;
|
|
20706
20843
|
}
|
|
20707
|
-
.sidebar:focus, .sidebar.focus {
|
|
20708
|
-
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
20709
|
-
outline: 0;
|
|
20710
|
-
}
|
|
20711
20844
|
.sidebar .container-fluid {
|
|
20712
|
-
padding-left:
|
|
20713
|
-
padding-right:
|
|
20845
|
+
padding-left: 1.5rem;
|
|
20846
|
+
padding-right: 1.5rem;
|
|
20714
20847
|
}
|
|
20715
20848
|
|
|
20716
20849
|
.sidebar-header {
|
|
20717
20850
|
padding-bottom: 1rem;
|
|
20718
|
-
padding-left:
|
|
20851
|
+
padding-left: 1.5rem;
|
|
20719
20852
|
padding-right: 1rem;
|
|
20720
20853
|
padding-top: 1rem;
|
|
20721
20854
|
}
|
|
20722
20855
|
.sidebar-header .component-title {
|
|
20723
|
-
font-size:
|
|
20856
|
+
font-size: 1rem;
|
|
20724
20857
|
overflow-wrap: break-word;
|
|
20725
20858
|
word-wrap: break-word;
|
|
20726
20859
|
}
|
|
@@ -20729,17 +20862,26 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20729
20862
|
color: #272833;
|
|
20730
20863
|
}
|
|
20731
20864
|
.sidebar-header .component-subtitle {
|
|
20732
|
-
font-size: 0.
|
|
20865
|
+
font-size: 0.875rem;
|
|
20733
20866
|
font-weight: 400;
|
|
20734
20867
|
margin-bottom: 0;
|
|
20735
20868
|
overflow-wrap: break-word;
|
|
20736
20869
|
word-wrap: break-word;
|
|
20737
20870
|
}
|
|
20871
|
+
.sidebar-header .autofit-row {
|
|
20872
|
+
margin-left: -0.25rem;
|
|
20873
|
+
margin-right: -0.25rem;
|
|
20874
|
+
width: auto;
|
|
20875
|
+
}
|
|
20876
|
+
.sidebar-header .autofit-row > .autofit-col {
|
|
20877
|
+
padding-left: 0.25rem;
|
|
20878
|
+
padding-right: 0.25rem;
|
|
20879
|
+
}
|
|
20738
20880
|
|
|
20739
20881
|
.sidebar-footer {
|
|
20740
20882
|
padding-bottom: 1rem;
|
|
20741
|
-
padding-left:
|
|
20742
|
-
padding-right:
|
|
20883
|
+
padding-left: 1.5rem;
|
|
20884
|
+
padding-right: 1.5rem;
|
|
20743
20885
|
padding-top: 1rem;
|
|
20744
20886
|
}
|
|
20745
20887
|
|
|
@@ -20747,8 +20889,8 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20747
20889
|
overflow: auto;
|
|
20748
20890
|
-webkit-overflow-scrolling: touch;
|
|
20749
20891
|
padding-bottom: 1rem;
|
|
20750
|
-
padding-left:
|
|
20751
|
-
padding-right:
|
|
20892
|
+
padding-left: 1.5rem;
|
|
20893
|
+
padding-right: 1.5rem;
|
|
20752
20894
|
padding-top: 1rem;
|
|
20753
20895
|
}
|
|
20754
20896
|
.sidebar-body > .sidebar-section {
|
|
@@ -20825,6 +20967,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20825
20967
|
|
|
20826
20968
|
.sidebar-sm {
|
|
20827
20969
|
font-size: 0.875rem;
|
|
20970
|
+
font-size: 0.875rem;
|
|
20828
20971
|
}
|
|
20829
20972
|
.sidebar-light {
|
|
20830
20973
|
background-color: #fff;
|
|
@@ -20832,18 +20975,25 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20832
20975
|
border-left-width: 0px;
|
|
20833
20976
|
color: #272833;
|
|
20834
20977
|
box-shadow: -0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
20978
|
+
background-color: #fff;
|
|
20979
|
+
border-color: #e7e7ed;
|
|
20980
|
+
border-left-width: 0px;
|
|
20981
|
+
color: #272833;
|
|
20982
|
+
box-shadow: -0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
20835
20983
|
}
|
|
20836
20984
|
.sidenav-start .sidebar-light,
|
|
20837
20985
|
.sidenav-left .sidebar-light {
|
|
20838
20986
|
box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
20839
20987
|
}
|
|
20840
|
-
.sidenav-start .sidebar-light.focus, .sidenav-start .sidebar-light:focus-visible, .c-prefers-focus .sidenav-start .sidebar-light:focus,
|
|
20841
|
-
.sidenav-left .sidebar-light.focus,
|
|
20842
|
-
.sidenav-left .sidebar-light:focus-visible,
|
|
20843
|
-
.c-prefers-focus .sidenav-left .sidebar-light:focus {
|
|
20844
|
-
box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
20845
|
-
}
|
|
20846
20988
|
|
|
20989
|
+
.sidebar-light .sidebar-header {
|
|
20990
|
+
background-color: inherit;
|
|
20991
|
+
border: 0px solid #e7e7ed;
|
|
20992
|
+
}
|
|
20993
|
+
.sidebar-light .sidebar-footer {
|
|
20994
|
+
background-color: inherit;
|
|
20995
|
+
border: 0px solid #e7e7ed;
|
|
20996
|
+
}
|
|
20847
20997
|
.sidebar-light .sidebar-list-group .list-group-title {
|
|
20848
20998
|
font-size: 1rem;
|
|
20849
20999
|
}
|
|
@@ -20905,10 +21055,57 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20905
21055
|
.sidebar-light .component-navigation-bar .navbar-overlay {
|
|
20906
21056
|
background-color: #fff;
|
|
20907
21057
|
}
|
|
21058
|
+
.sidebar-light .sidebar-header {
|
|
21059
|
+
background-color: inherit;
|
|
21060
|
+
border: 0px solid #e7e7ed;
|
|
21061
|
+
}
|
|
21062
|
+
.sidebar-light .sidebar-footer {
|
|
21063
|
+
background-color: inherit;
|
|
21064
|
+
border: 0px solid #e7e7ed;
|
|
21065
|
+
}
|
|
21066
|
+
.sidebar-light .sidebar-dd .href {
|
|
21067
|
+
color: #272833;
|
|
21068
|
+
}
|
|
21069
|
+
.sidebar-light .sidebar-panel {
|
|
21070
|
+
background-color: #f1f2f5;
|
|
21071
|
+
}
|
|
21072
|
+
.sidebar-light .sidebar-list-group .list-group-title {
|
|
21073
|
+
font-size: 1rem;
|
|
21074
|
+
}
|
|
21075
|
+
.sidebar-light .sidebar-list-group .list-group-title .href {
|
|
21076
|
+
color: #272833;
|
|
21077
|
+
}
|
|
21078
|
+
.sidebar-light .component-navigation-bar {
|
|
21079
|
+
background-color: #fff;
|
|
21080
|
+
border-color: #cdced9;
|
|
21081
|
+
}
|
|
21082
|
+
.sidebar-light .component-navigation-bar .navbar-nav .nav-link {
|
|
21083
|
+
color: #6b6c7e;
|
|
21084
|
+
}
|
|
21085
|
+
.sidebar-light .component-navigation-bar .navbar-nav .nav-link:hover {
|
|
21086
|
+
color: #6b6c7e;
|
|
21087
|
+
}
|
|
21088
|
+
.sidebar-light .component-navigation-bar .navbar-nav .nav-link:active {
|
|
21089
|
+
color: #272833;
|
|
21090
|
+
}
|
|
21091
|
+
.sidebar-light .component-navigation-bar .navbar-nav .nav-link:disabled {
|
|
21092
|
+
color: #a7a9bc;
|
|
21093
|
+
}
|
|
21094
|
+
.sidebar-light .sidenav-start {
|
|
21095
|
+
box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
21096
|
+
}
|
|
21097
|
+
.sidebar-light .sidebar-dt {
|
|
21098
|
+
color: #6b6c7e;
|
|
21099
|
+
}
|
|
21100
|
+
.sidebar-light .panel-unstyled .header .link:focus {
|
|
21101
|
+
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
21102
|
+
}
|
|
20908
21103
|
|
|
20909
21104
|
.sidebar-dark {
|
|
20910
21105
|
background-color: #272833;
|
|
20911
21106
|
color: #fff;
|
|
21107
|
+
background-color: #272833;
|
|
21108
|
+
color: #fff;
|
|
20912
21109
|
}
|
|
20913
21110
|
.sidebar-dark .close {
|
|
20914
21111
|
color: #a7a9bc;
|
|
@@ -20969,9 +21166,62 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20969
21166
|
.sidebar-dark .nav-nested .nav-link[aria-expanded=true], .sidebar-dark .nav-nested .nav-link.show {
|
|
20970
21167
|
color: #fff;
|
|
20971
21168
|
}
|
|
21169
|
+
.sidebar-dark .sidebar-header .component-title {
|
|
21170
|
+
color: inherit;
|
|
21171
|
+
}
|
|
21172
|
+
.sidebar-dark .sidebar-header .component-title .href {
|
|
21173
|
+
color: inherit;
|
|
21174
|
+
}
|
|
21175
|
+
.sidebar-dark .sidebar-header .component-subtitle {
|
|
21176
|
+
color: inherit;
|
|
21177
|
+
}
|
|
21178
|
+
.sidebar-dark .sidebar-header .component-subtitle .href {
|
|
21179
|
+
color: inherit;
|
|
21180
|
+
}
|
|
21181
|
+
.sidebar-dark .close {
|
|
21182
|
+
color: #a7a9bc;
|
|
21183
|
+
}
|
|
21184
|
+
.sidebar-dark .close:hover {
|
|
21185
|
+
color: #fff;
|
|
21186
|
+
}
|
|
21187
|
+
.sidebar-dark .nav-nested .nav-link {
|
|
21188
|
+
border-radius: 0.25rem;
|
|
21189
|
+
color: #a7a9bc;
|
|
21190
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
21191
|
+
}
|
|
21192
|
+
@media (prefers-reduced-motion: reduce) {
|
|
21193
|
+
.sidebar-dark .nav-nested .nav-link {
|
|
21194
|
+
transition: none;
|
|
21195
|
+
}
|
|
21196
|
+
}
|
|
21197
|
+
.c-prefers-reduced-motion .sidebar-dark .nav-nested .nav-link {
|
|
21198
|
+
transition: none;
|
|
21199
|
+
}
|
|
21200
|
+
|
|
21201
|
+
.sidebar-dark .nav-nested .nav-link:hover {
|
|
21202
|
+
color: #fff;
|
|
21203
|
+
}
|
|
21204
|
+
.sidebar-dark .nav-nested .nav-link:focus {
|
|
21205
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21206
|
+
outline: 0;
|
|
21207
|
+
}
|
|
21208
|
+
.sidebar-dark .nav-nested .nav-link:active {
|
|
21209
|
+
color: #fff;
|
|
21210
|
+
}
|
|
21211
|
+
.sidebar-dark .nav-nested .nav-link:disabled {
|
|
21212
|
+
box-shadow: none;
|
|
21213
|
+
color: #a7a9bc;
|
|
21214
|
+
opacity: 0.65;
|
|
21215
|
+
}
|
|
21216
|
+
.sidebar-dark .nav-nested .nav-link:disabled:active {
|
|
21217
|
+
pointer-events: none;
|
|
21218
|
+
}
|
|
21219
|
+
|
|
20972
21220
|
.sidebar-dark-l2 {
|
|
20973
21221
|
background-color: #393a4a;
|
|
20974
21222
|
color: #fff;
|
|
21223
|
+
background-color: #393a4a;
|
|
21224
|
+
color: #fff;
|
|
20975
21225
|
}
|
|
20976
21226
|
.sidebar-dark-l2 .close {
|
|
20977
21227
|
color: #a7a9bc;
|
|
@@ -21032,7 +21282,63 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
21032
21282
|
.sidebar-dark-l2 .nav-nested .nav-link[aria-expanded=true], .sidebar-dark-l2 .nav-nested .nav-link.show {
|
|
21033
21283
|
color: #fff;
|
|
21034
21284
|
}
|
|
21285
|
+
.sidebar-dark-l2 .sidebar-header .component-title {
|
|
21286
|
+
color: inherit;
|
|
21287
|
+
}
|
|
21288
|
+
.sidebar-dark-l2 .sidebar-header .component-title .href {
|
|
21289
|
+
color: inherit;
|
|
21290
|
+
}
|
|
21291
|
+
.sidebar-dark-l2 .sidebar-header .component-subtitle {
|
|
21292
|
+
color: inherit;
|
|
21293
|
+
}
|
|
21294
|
+
.sidebar-dark-l2 .sidebar-header .component-subtitle .href {
|
|
21295
|
+
color: inherit;
|
|
21296
|
+
}
|
|
21297
|
+
.sidebar-dark-l2 .close {
|
|
21298
|
+
color: #a7a9bc;
|
|
21299
|
+
}
|
|
21300
|
+
.sidebar-dark-l2 .close:hover {
|
|
21301
|
+
color: #fff;
|
|
21302
|
+
}
|
|
21303
|
+
.sidebar-dark-l2 .nav-nested .nav-link {
|
|
21304
|
+
border-radius: 0.25rem;
|
|
21305
|
+
color: #a7a9bc;
|
|
21306
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
21307
|
+
}
|
|
21308
|
+
@media (prefers-reduced-motion: reduce) {
|
|
21309
|
+
.sidebar-dark-l2 .nav-nested .nav-link {
|
|
21310
|
+
transition: none;
|
|
21311
|
+
}
|
|
21312
|
+
}
|
|
21313
|
+
.c-prefers-reduced-motion .sidebar-dark-l2 .nav-nested .nav-link {
|
|
21314
|
+
transition: none;
|
|
21315
|
+
}
|
|
21316
|
+
|
|
21317
|
+
.sidebar-dark-l2 .nav-nested .nav-link:hover {
|
|
21318
|
+
color: #fff;
|
|
21319
|
+
}
|
|
21320
|
+
.sidebar-dark-l2 .nav-nested .nav-link:focus {
|
|
21321
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21322
|
+
outline: 0;
|
|
21323
|
+
}
|
|
21324
|
+
.sidebar-dark-l2 .nav-nested .nav-link:active {
|
|
21325
|
+
color: #fff;
|
|
21326
|
+
}
|
|
21327
|
+
.sidebar-dark-l2 .nav-nested .nav-link:disabled {
|
|
21328
|
+
box-shadow: none;
|
|
21329
|
+
color: #a7a9bc;
|
|
21330
|
+
opacity: 0.65;
|
|
21331
|
+
}
|
|
21332
|
+
.sidebar-dark-l2 .nav-nested .nav-link:disabled:active {
|
|
21333
|
+
pointer-events: none;
|
|
21334
|
+
}
|
|
21335
|
+
|
|
21336
|
+
.c-slideout-start .sidebar-light {
|
|
21337
|
+
box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
21338
|
+
}
|
|
21339
|
+
|
|
21035
21340
|
.c-slideout-transition-in {
|
|
21341
|
+
overflow: hidden;
|
|
21036
21342
|
transition: all 0.3s ease-in-out;
|
|
21037
21343
|
}
|
|
21038
21344
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -21045,6 +21351,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
21045
21351
|
}
|
|
21046
21352
|
|
|
21047
21353
|
.c-slideout-transition-out {
|
|
21354
|
+
overflow: hidden;
|
|
21048
21355
|
transition: all 0.2s ease-in;
|
|
21049
21356
|
}
|
|
21050
21357
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -21064,6 +21371,29 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
21064
21371
|
position: absolute;
|
|
21065
21372
|
}
|
|
21066
21373
|
|
|
21374
|
+
.c-slideout-container {
|
|
21375
|
+
min-height: 480px;
|
|
21376
|
+
position: relative;
|
|
21377
|
+
}
|
|
21378
|
+
|
|
21379
|
+
.c-slideout-push-start {
|
|
21380
|
+
padding-left: 320px;
|
|
21381
|
+
}
|
|
21382
|
+
@media (max-width: 991.98px) {
|
|
21383
|
+
.c-slideout-push-start {
|
|
21384
|
+
padding-left: 0;
|
|
21385
|
+
}
|
|
21386
|
+
}
|
|
21387
|
+
|
|
21388
|
+
.c-slideout-push-end {
|
|
21389
|
+
padding-right: 320px;
|
|
21390
|
+
}
|
|
21391
|
+
@media (max-width: 991.98px) {
|
|
21392
|
+
.c-slideout-push-end {
|
|
21393
|
+
padding-right: 0;
|
|
21394
|
+
}
|
|
21395
|
+
}
|
|
21396
|
+
|
|
21067
21397
|
.c-slideout {
|
|
21068
21398
|
display: flex;
|
|
21069
21399
|
overflow: hidden;
|
|
@@ -21075,15 +21405,40 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
21075
21405
|
.c-slideout .sidebar {
|
|
21076
21406
|
display: none;
|
|
21077
21407
|
flex-shrink: 0;
|
|
21078
|
-
overflow: visible;
|
|
21079
21408
|
position: relative;
|
|
21080
21409
|
width: 320px;
|
|
21410
|
+
display: none;
|
|
21411
|
+
flex-shrink: 0;
|
|
21412
|
+
position: relative;
|
|
21413
|
+
width: 320px;
|
|
21414
|
+
}
|
|
21415
|
+
.c-slideout .sidebar .sidebar-header {
|
|
21416
|
+
border-bottom-width: 1px;
|
|
21417
|
+
}
|
|
21418
|
+
.c-slideout .sidebar .sidebar-body {
|
|
21419
|
+
flex-grow: 1;
|
|
21420
|
+
overflow: visible;
|
|
21421
|
+
}
|
|
21422
|
+
.c-slideout .sidebar .sidebar-footer {
|
|
21423
|
+
border-top-width: 1px;
|
|
21424
|
+
}
|
|
21425
|
+
.c-slideout .sidebar .sidebar-header {
|
|
21426
|
+
border-bottom-width: 1px;
|
|
21427
|
+
}
|
|
21428
|
+
.c-slideout .sidebar .sidebar-body {
|
|
21429
|
+
flex-grow: 1;
|
|
21430
|
+
overflow: visible;
|
|
21431
|
+
}
|
|
21432
|
+
.c-slideout .sidebar .sidebar-footer {
|
|
21433
|
+
border-top-width: 1px;
|
|
21081
21434
|
}
|
|
21082
21435
|
.c-slideout .sidebar.c-slideout-show {
|
|
21083
|
-
display:
|
|
21436
|
+
display: flex;
|
|
21437
|
+
flex-direction: column;
|
|
21084
21438
|
}
|
|
21085
21439
|
.c-slideout .sidebar.c-slideout-transition {
|
|
21086
|
-
display:
|
|
21440
|
+
display: flex;
|
|
21441
|
+
flex-direction: column;
|
|
21087
21442
|
}
|
|
21088
21443
|
.c-slideout .sidebar.c-slideout-transition .c-horizontal-resizer {
|
|
21089
21444
|
display: none;
|
|
@@ -21105,6 +21460,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
21105
21460
|
@media (max-width: 767.98px) {
|
|
21106
21461
|
.c-slideout .sidebar {
|
|
21107
21462
|
width: 280px;
|
|
21463
|
+
width: 280px;
|
|
21108
21464
|
}
|
|
21109
21465
|
}
|
|
21110
21466
|
|
|
@@ -21119,6 +21475,8 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
21119
21475
|
.c-slideout-start .sidebar {
|
|
21120
21476
|
left: -360px;
|
|
21121
21477
|
width: 320px;
|
|
21478
|
+
left: -360px;
|
|
21479
|
+
width: 320px;
|
|
21122
21480
|
}
|
|
21123
21481
|
.c-slideout-start .sidebar.c-slideout-show {
|
|
21124
21482
|
left: 0;
|
|
@@ -21136,6 +21494,8 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
21136
21494
|
.c-slideout-start .sidebar {
|
|
21137
21495
|
left: -320px;
|
|
21138
21496
|
width: 280px;
|
|
21497
|
+
left: -320px;
|
|
21498
|
+
width: 280px;
|
|
21139
21499
|
}
|
|
21140
21500
|
.c-slideout-start .tbar-stacked {
|
|
21141
21501
|
left: -40px;
|
|
@@ -21152,6 +21512,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
21152
21512
|
}
|
|
21153
21513
|
.c-slideout-end .sidebar {
|
|
21154
21514
|
right: -360px;
|
|
21515
|
+
right: -360px;
|
|
21155
21516
|
}
|
|
21156
21517
|
.c-slideout-end .sidebar.c-slideout-show {
|
|
21157
21518
|
right: 0;
|
|
@@ -21172,6 +21533,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
21172
21533
|
}
|
|
21173
21534
|
.c-slideout-end .sidebar {
|
|
21174
21535
|
right: -320px;
|
|
21536
|
+
right: -320px;
|
|
21175
21537
|
}
|
|
21176
21538
|
.c-slideout-end .tbar-stacked {
|
|
21177
21539
|
right: -40px;
|
|
@@ -30371,6 +30733,14 @@ button.bg-dark:focus {
|
|
|
30371
30733
|
z-index: 1030;
|
|
30372
30734
|
}
|
|
30373
30735
|
|
|
30736
|
+
@supports (position: sticky) {
|
|
30737
|
+
.sticky-bottom {
|
|
30738
|
+
bottom: 0;
|
|
30739
|
+
position: sticky;
|
|
30740
|
+
z-index: 1020;
|
|
30741
|
+
}
|
|
30742
|
+
}
|
|
30743
|
+
|
|
30374
30744
|
@supports (position: sticky) {
|
|
30375
30745
|
.sticky-top {
|
|
30376
30746
|
position: sticky;
|