@clayui/css 3.137.0 → 3.139.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 +403 -48
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +364 -15
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +375 -20
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/comments.svg +3 -5
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/megaphone-full.svg +1 -0
- package/lib/images/icons/minus-circle.svg +2 -2
- package/lib/images/icons/paste-plaintext.svg +1 -1
- package/lib/images/icons/pin-full.svg +1 -0
- package/lib/images/icons/reset.svg +3 -3
- package/lib/images/icons/slash.svg +1 -1
- package/lib/images/icons/social-twitter.svg +1 -0
- package/package.json +2 -2
- package/src/images/icons/comments.svg +3 -5
- package/src/images/icons/megaphone-full.svg +1 -0
- package/src/images/icons/minus-circle.svg +2 -2
- package/src/images/icons/paste-plaintext.svg +1 -1
- package/src/images/icons/pin-full.svg +1 -0
- package/src/images/icons/reset.svg +3 -3
- package/src/images/icons/slash.svg +1 -1
- package/src/images/icons/social-twitter.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/_forms.scss +39 -3
- package/src/scss/cadmin/variables/_modals.scss +1 -1
- package/src/scss/cadmin/variables/_sidebar.scss +36 -7
- package/src/scss/cadmin/variables/_slideout.scss +29 -4
- 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 +4 -0
- package/src/scss/components/_utilities-functional-important.scss +8 -0
- package/src/scss/functions/_lx-icons-generated.scss +4 -4
- 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 -9
- package/src/scss/mixins/_stickers.scss +447 -0
- package/src/scss/variables/_forms.scss +36 -0
- package/src/scss/variables/_modals.scss +1 -1
- package/src/scss/variables/_sidebar.scss +26 -9
- package/src/scss/variables/_slideout.scss +29 -4
- package/src/scss/variables/_stickers.scss +6 -0
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.139.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>
|
|
@@ -5392,6 +5392,12 @@ input[type=button].btn-block {
|
|
|
5392
5392
|
border-radius: 5000px;
|
|
5393
5393
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.125);
|
|
5394
5394
|
}
|
|
5395
|
+
.sticker-xs {
|
|
5396
|
+
font-size: 0.5rem;
|
|
5397
|
+
height: 1rem;
|
|
5398
|
+
line-height: 1rem;
|
|
5399
|
+
width: 1rem;
|
|
5400
|
+
}
|
|
5395
5401
|
.sticker-sm {
|
|
5396
5402
|
font-size: 0.75rem;
|
|
5397
5403
|
height: 1.5rem;
|
|
@@ -10182,6 +10188,26 @@ label.custom-control-label {
|
|
|
10182
10188
|
min-width: 1.5rem;
|
|
10183
10189
|
}
|
|
10184
10190
|
}
|
|
10191
|
+
@media (max-width: 575.98px) {
|
|
10192
|
+
.date-picker .input-group-text {
|
|
10193
|
+
font-size: inherit;
|
|
10194
|
+
height: 1.9375rem;
|
|
10195
|
+
min-width: 1.5rem;
|
|
10196
|
+
}
|
|
10197
|
+
}
|
|
10198
|
+
@media (max-width: 575.98px) {
|
|
10199
|
+
.date-picker .clay-time .form-control {
|
|
10200
|
+
border-radius: 0.2rem;
|
|
10201
|
+
font-size: 0.875rem;
|
|
10202
|
+
height: 1.9375rem;
|
|
10203
|
+
line-height: 1.5;
|
|
10204
|
+
min-height: 1.9375rem;
|
|
10205
|
+
padding-bottom: 0.25rem;
|
|
10206
|
+
padding-left: 0.5rem;
|
|
10207
|
+
padding-right: 0.5rem;
|
|
10208
|
+
padding-top: 0.25rem;
|
|
10209
|
+
}
|
|
10210
|
+
}
|
|
10185
10211
|
@media (max-width: 575.98px) {
|
|
10186
10212
|
.date-picker .clay-time .form-control {
|
|
10187
10213
|
border-radius: 0.2rem;
|
|
@@ -10213,6 +10239,14 @@ label.custom-control-label {
|
|
|
10213
10239
|
max-width: 264px;
|
|
10214
10240
|
}
|
|
10215
10241
|
}
|
|
10242
|
+
@media (max-width: 575.98px) {
|
|
10243
|
+
.date-picker-dropdown-menu {
|
|
10244
|
+
font-size: 0.75rem;
|
|
10245
|
+
margin: 0;
|
|
10246
|
+
max-height: 255px;
|
|
10247
|
+
max-width: 264px;
|
|
10248
|
+
}
|
|
10249
|
+
}
|
|
10216
10250
|
|
|
10217
10251
|
.date-picker-nav {
|
|
10218
10252
|
display: flex;
|
|
@@ -10260,12 +10294,33 @@ label.custom-control-label {
|
|
|
10260
10294
|
min-width: 1.5rem;
|
|
10261
10295
|
}
|
|
10262
10296
|
}
|
|
10297
|
+
@media (max-width: 575.98px) {
|
|
10298
|
+
.date-picker-nav .nav-btn-monospaced {
|
|
10299
|
+
font-size: 0.75rem;
|
|
10300
|
+
height: 1.5rem;
|
|
10301
|
+
max-height: 1.5rem;
|
|
10302
|
+
max-width: 1.5rem;
|
|
10303
|
+
min-width: 1.5rem;
|
|
10304
|
+
}
|
|
10305
|
+
}
|
|
10263
10306
|
@media (max-width: 575.98px) {
|
|
10264
10307
|
.date-picker-nav select.form-control {
|
|
10265
10308
|
font-size: 0.75rem;
|
|
10266
10309
|
height: 1.5rem;
|
|
10267
10310
|
}
|
|
10268
10311
|
}
|
|
10312
|
+
@media (max-width: 575.98px) {
|
|
10313
|
+
.date-picker-nav select.form-control {
|
|
10314
|
+
font-size: 0.75rem;
|
|
10315
|
+
height: 1.5rem;
|
|
10316
|
+
}
|
|
10317
|
+
}
|
|
10318
|
+
@media (max-width: 575.98px) {
|
|
10319
|
+
.date-picker-nav .form-control-select {
|
|
10320
|
+
font-size: 0.75rem;
|
|
10321
|
+
height: 1.5rem;
|
|
10322
|
+
}
|
|
10323
|
+
}
|
|
10269
10324
|
@media (max-width: 575.98px) {
|
|
10270
10325
|
.date-picker-nav .form-control-select {
|
|
10271
10326
|
font-size: 0.75rem;
|
|
@@ -10307,6 +10362,14 @@ label.custom-control-label {
|
|
|
10307
10362
|
padding-top: 0.5rem;
|
|
10308
10363
|
}
|
|
10309
10364
|
}
|
|
10365
|
+
@media (max-width: 575.98px) {
|
|
10366
|
+
.date-picker-calendar-header {
|
|
10367
|
+
padding-bottom: 0.25rem;
|
|
10368
|
+
padding-left: 0.375rem;
|
|
10369
|
+
padding-right: 0.375rem;
|
|
10370
|
+
padding-top: 0.5rem;
|
|
10371
|
+
}
|
|
10372
|
+
}
|
|
10310
10373
|
|
|
10311
10374
|
.date-picker-calendar-body {
|
|
10312
10375
|
padding-left: 0.5rem;
|
|
@@ -10320,6 +10383,13 @@ label.custom-control-label {
|
|
|
10320
10383
|
padding-bottom: 0.25rem;
|
|
10321
10384
|
}
|
|
10322
10385
|
}
|
|
10386
|
+
@media (max-width: 575.98px) {
|
|
10387
|
+
.date-picker-calendar-body {
|
|
10388
|
+
padding-left: 0.375rem;
|
|
10389
|
+
padding-right: 0.375rem;
|
|
10390
|
+
padding-bottom: 0.25rem;
|
|
10391
|
+
}
|
|
10392
|
+
}
|
|
10323
10393
|
|
|
10324
10394
|
.date-picker-calendar-footer {
|
|
10325
10395
|
border-color: #ced4da;
|
|
@@ -10337,6 +10407,13 @@ label.custom-control-label {
|
|
|
10337
10407
|
padding-top: 0.4375rem;
|
|
10338
10408
|
}
|
|
10339
10409
|
}
|
|
10410
|
+
@media (max-width: 575.98px) {
|
|
10411
|
+
.date-picker-calendar-footer {
|
|
10412
|
+
padding-left: 0.375rem;
|
|
10413
|
+
padding-right: 0.375rem;
|
|
10414
|
+
padding-top: 0.4375rem;
|
|
10415
|
+
}
|
|
10416
|
+
}
|
|
10340
10417
|
|
|
10341
10418
|
.date-picker-calendar-item {
|
|
10342
10419
|
align-items: center;
|
|
@@ -10372,6 +10449,12 @@ label.custom-control-label {
|
|
|
10372
10449
|
transition: none;
|
|
10373
10450
|
}
|
|
10374
10451
|
|
|
10452
|
+
@media (max-width: 575.98px) {
|
|
10453
|
+
.date-picker-calendar-item {
|
|
10454
|
+
height: 1.5rem;
|
|
10455
|
+
width: 1.5rem;
|
|
10456
|
+
}
|
|
10457
|
+
}
|
|
10375
10458
|
.date-picker-calendar-item:disabled, .date-picker-calendar-item.disabled {
|
|
10376
10459
|
cursor: not-allowed;
|
|
10377
10460
|
}
|
|
@@ -10402,6 +10485,12 @@ label.custom-control-label {
|
|
|
10402
10485
|
margin-top: 0.25rem;
|
|
10403
10486
|
}
|
|
10404
10487
|
}
|
|
10488
|
+
@media (max-width: 575.98px) {
|
|
10489
|
+
.date-picker-row {
|
|
10490
|
+
margin-bottom: 0.25rem;
|
|
10491
|
+
margin-top: 0.25rem;
|
|
10492
|
+
}
|
|
10493
|
+
}
|
|
10405
10494
|
|
|
10406
10495
|
.date-picker-col {
|
|
10407
10496
|
display: flex;
|
|
@@ -10438,6 +10527,11 @@ label.custom-control-label {
|
|
|
10438
10527
|
margin-bottom: 0.25rem;
|
|
10439
10528
|
}
|
|
10440
10529
|
}
|
|
10530
|
+
@media (max-width: 575.98px) {
|
|
10531
|
+
.date-picker-days-row {
|
|
10532
|
+
margin-bottom: 0.25rem;
|
|
10533
|
+
}
|
|
10534
|
+
}
|
|
10441
10535
|
|
|
10442
10536
|
.date-picker-day {
|
|
10443
10537
|
height: 1.3125rem;
|
|
@@ -10739,6 +10833,24 @@ label.custom-control-label {
|
|
|
10739
10833
|
overflow-wrap: break-word;
|
|
10740
10834
|
word-wrap: break-word;
|
|
10741
10835
|
}
|
|
10836
|
+
.form-text.blockquote {
|
|
10837
|
+
font-style: italic;
|
|
10838
|
+
font-weight: 400;
|
|
10839
|
+
margin-bottom: 0;
|
|
10840
|
+
margin-top: 0.75rem;
|
|
10841
|
+
padding-left: 0.75rem;
|
|
10842
|
+
position: relative;
|
|
10843
|
+
}
|
|
10844
|
+
.form-text.blockquote::before {
|
|
10845
|
+
background-color: #a9afb5;
|
|
10846
|
+
bottom: 0;
|
|
10847
|
+
content: "";
|
|
10848
|
+
display: block;
|
|
10849
|
+
left: 0;
|
|
10850
|
+
position: absolute;
|
|
10851
|
+
top: 0;
|
|
10852
|
+
width: 0.125rem;
|
|
10853
|
+
}
|
|
10742
10854
|
|
|
10743
10855
|
.was-validated .form-control:valid,
|
|
10744
10856
|
.was-validated .form-control.is-valid {
|
|
@@ -10768,6 +10880,9 @@ label.custom-control-label {
|
|
|
10768
10880
|
.has-error .form-control.focus, .has-error .form-control:focus-visible, .c-prefers-focus .has-error .form-control:focus {
|
|
10769
10881
|
box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
|
|
10770
10882
|
}
|
|
10883
|
+
.has-error .form-control:focus-within:has(input:focus) {
|
|
10884
|
+
border-color: #dc3545;
|
|
10885
|
+
}
|
|
10771
10886
|
.has-error .form-feedback-item {
|
|
10772
10887
|
color: #dc3545;
|
|
10773
10888
|
}
|
|
@@ -10809,6 +10924,9 @@ label.custom-control-label {
|
|
|
10809
10924
|
.has-warning .form-control.focus, .has-warning .form-control:focus-visible, .c-prefers-focus .has-warning .form-control:focus {
|
|
10810
10925
|
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
|
|
10811
10926
|
}
|
|
10927
|
+
.has-warning .form-control:focus-within:has(input:focus) {
|
|
10928
|
+
border-color: #ffc107;
|
|
10929
|
+
}
|
|
10812
10930
|
.has-warning .form-feedback-item {
|
|
10813
10931
|
color: #ffc107;
|
|
10814
10932
|
}
|
|
@@ -10850,6 +10968,9 @@ label.custom-control-label {
|
|
|
10850
10968
|
.has-success .form-control.focus, .has-success .form-control:focus-visible, .c-prefers-focus .has-success .form-control:focus {
|
|
10851
10969
|
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
|
|
10852
10970
|
}
|
|
10971
|
+
.has-success .form-control:focus-within:has(input:focus) {
|
|
10972
|
+
border-color: #28a745;
|
|
10973
|
+
}
|
|
10853
10974
|
.has-success .form-feedback-item {
|
|
10854
10975
|
color: #28a745;
|
|
10855
10976
|
}
|
|
@@ -12324,7 +12445,7 @@ label.custom-control-label {
|
|
|
12324
12445
|
margin-right: -1rem;
|
|
12325
12446
|
top: -1rem;
|
|
12326
12447
|
}
|
|
12327
|
-
.modal-body .close {
|
|
12448
|
+
.modal-body > .close {
|
|
12328
12449
|
position: absolute;
|
|
12329
12450
|
right: 1rem;
|
|
12330
12451
|
top: 1rem;
|
|
@@ -13510,6 +13631,12 @@ label.custom-control-label {
|
|
|
13510
13631
|
.menubar-vertical-expand-md {
|
|
13511
13632
|
max-width: 15.625rem;
|
|
13512
13633
|
}
|
|
13634
|
+
@media (max-width: 767.98px) {
|
|
13635
|
+
.menubar-vertical-expand-md {
|
|
13636
|
+
margin-bottom: 1rem;
|
|
13637
|
+
max-width: none;
|
|
13638
|
+
}
|
|
13639
|
+
}
|
|
13513
13640
|
.menubar-vertical-expand-md .menubar-collapse {
|
|
13514
13641
|
display: block;
|
|
13515
13642
|
}
|
|
@@ -13651,6 +13778,12 @@ label.custom-control-label {
|
|
|
13651
13778
|
.menubar-vertical-expand-lg {
|
|
13652
13779
|
max-width: 15.625rem;
|
|
13653
13780
|
}
|
|
13781
|
+
@media (max-width: 991.98px) {
|
|
13782
|
+
.menubar-vertical-expand-lg {
|
|
13783
|
+
margin-bottom: 1rem;
|
|
13784
|
+
max-width: none;
|
|
13785
|
+
}
|
|
13786
|
+
}
|
|
13654
13787
|
.menubar-vertical-expand-lg .menubar-collapse {
|
|
13655
13788
|
display: block;
|
|
13656
13789
|
}
|
|
@@ -17560,6 +17693,12 @@ label.custom-control-label {
|
|
|
17560
17693
|
display: flex;
|
|
17561
17694
|
flex-wrap: wrap;
|
|
17562
17695
|
}
|
|
17696
|
+
@media (max-width: 767.98px) {
|
|
17697
|
+
.pagination-bar {
|
|
17698
|
+
flex-direction: column;
|
|
17699
|
+
justify-content: center;
|
|
17700
|
+
}
|
|
17701
|
+
}
|
|
17563
17702
|
@media (max-width: 767.98px) {
|
|
17564
17703
|
.pagination-bar {
|
|
17565
17704
|
flex-direction: column;
|
|
@@ -19162,18 +19301,14 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19162
19301
|
overflow: auto;
|
|
19163
19302
|
-webkit-overflow-scrolling: touch;
|
|
19164
19303
|
}
|
|
19165
|
-
.sidebar:focus, .sidebar.focus {
|
|
19166
|
-
box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
19167
|
-
outline: 0;
|
|
19168
|
-
}
|
|
19169
19304
|
.sidebar .container-fluid {
|
|
19170
|
-
padding-left:
|
|
19171
|
-
padding-right:
|
|
19305
|
+
padding-left: 1.5rem;
|
|
19306
|
+
padding-right: 1.5rem;
|
|
19172
19307
|
}
|
|
19173
19308
|
|
|
19174
19309
|
.sidebar-header {
|
|
19175
19310
|
padding-bottom: 1rem;
|
|
19176
|
-
padding-left:
|
|
19311
|
+
padding-left: 1.5rem;
|
|
19177
19312
|
padding-right: 1rem;
|
|
19178
19313
|
padding-top: 1rem;
|
|
19179
19314
|
}
|
|
@@ -19193,11 +19328,20 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19193
19328
|
overflow-wrap: break-word;
|
|
19194
19329
|
word-wrap: break-word;
|
|
19195
19330
|
}
|
|
19331
|
+
.sidebar-header .autofit-row {
|
|
19332
|
+
margin-left: -0.25rem;
|
|
19333
|
+
margin-right: -0.25rem;
|
|
19334
|
+
width: auto;
|
|
19335
|
+
}
|
|
19336
|
+
.sidebar-header .autofit-row > .autofit-col {
|
|
19337
|
+
padding-left: 0.25rem;
|
|
19338
|
+
padding-right: 0.25rem;
|
|
19339
|
+
}
|
|
19196
19340
|
|
|
19197
19341
|
.sidebar-footer {
|
|
19198
19342
|
padding-bottom: 1rem;
|
|
19199
|
-
padding-left:
|
|
19200
|
-
padding-right:
|
|
19343
|
+
padding-left: 1.5rem;
|
|
19344
|
+
padding-right: 1.5rem;
|
|
19201
19345
|
padding-top: 1rem;
|
|
19202
19346
|
}
|
|
19203
19347
|
|
|
@@ -19205,8 +19349,8 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19205
19349
|
overflow: auto;
|
|
19206
19350
|
-webkit-overflow-scrolling: touch;
|
|
19207
19351
|
padding-bottom: 1rem;
|
|
19208
|
-
padding-left:
|
|
19209
|
-
padding-right:
|
|
19352
|
+
padding-left: 1.5rem;
|
|
19353
|
+
padding-right: 1.5rem;
|
|
19210
19354
|
padding-top: 1rem;
|
|
19211
19355
|
}
|
|
19212
19356
|
.sidebar-body > .sidebar-section {
|
|
@@ -19283,12 +19427,25 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19283
19427
|
|
|
19284
19428
|
.sidebar-sm {
|
|
19285
19429
|
font-size: 0.875rem;
|
|
19430
|
+
font-size: 0.875rem;
|
|
19286
19431
|
}
|
|
19287
19432
|
.sidebar-light {
|
|
19288
19433
|
background-color: #f8f9fa;
|
|
19289
19434
|
border-color: #dee2e6;
|
|
19290
19435
|
border-left-width: 1px;
|
|
19291
19436
|
color: #212529;
|
|
19437
|
+
background-color: #f8f9fa;
|
|
19438
|
+
border-color: #dee2e6;
|
|
19439
|
+
border-left-width: 1px;
|
|
19440
|
+
color: #212529;
|
|
19441
|
+
}
|
|
19442
|
+
.sidebar-light .sidebar-header {
|
|
19443
|
+
background-color: inherit;
|
|
19444
|
+
border: 0px solid #dee2e6;
|
|
19445
|
+
}
|
|
19446
|
+
.sidebar-light .sidebar-footer {
|
|
19447
|
+
background-color: inherit;
|
|
19448
|
+
border: 0px solid #dee2e6;
|
|
19292
19449
|
}
|
|
19293
19450
|
.sidebar-light .sidebar-list-group .list-group-title {
|
|
19294
19451
|
font-size: 1rem;
|
|
@@ -19344,10 +19501,48 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19344
19501
|
.sidebar-light .component-navigation-bar .navbar-overlay {
|
|
19345
19502
|
background-color: #f8f9fa;
|
|
19346
19503
|
}
|
|
19504
|
+
.sidebar-light .sidebar-header {
|
|
19505
|
+
background-color: inherit;
|
|
19506
|
+
border: 0px solid #dee2e6;
|
|
19507
|
+
}
|
|
19508
|
+
.sidebar-light .sidebar-footer {
|
|
19509
|
+
background-color: inherit;
|
|
19510
|
+
border: 0px solid #dee2e6;
|
|
19511
|
+
}
|
|
19512
|
+
.sidebar-light .sidebar-dd .href {
|
|
19513
|
+
color: #212529;
|
|
19514
|
+
}
|
|
19515
|
+
.sidebar-light .sidebar-panel {
|
|
19516
|
+
background-color: #e9ecef;
|
|
19517
|
+
}
|
|
19518
|
+
.sidebar-light .sidebar-list-group .list-group-title {
|
|
19519
|
+
font-size: 1rem;
|
|
19520
|
+
}
|
|
19521
|
+
.sidebar-light .sidebar-list-group .list-group-title .href {
|
|
19522
|
+
color: #212529;
|
|
19523
|
+
}
|
|
19524
|
+
.sidebar-light .component-navigation-bar {
|
|
19525
|
+
background-color: #f8f9fa;
|
|
19526
|
+
border-color: #dee2e6;
|
|
19527
|
+
}
|
|
19528
|
+
.sidebar-light .component-navigation-bar .navbar-nav .nav-link {
|
|
19529
|
+
color: rgba(0, 0, 0, 0.5);
|
|
19530
|
+
}
|
|
19531
|
+
.sidebar-light .component-navigation-bar .navbar-nav .nav-link:hover {
|
|
19532
|
+
color: rgba(0, 0, 0, 0.7);
|
|
19533
|
+
}
|
|
19534
|
+
.sidebar-light .component-navigation-bar .navbar-nav .nav-link:active {
|
|
19535
|
+
color: rgba(0, 0, 0, 0.9);
|
|
19536
|
+
}
|
|
19537
|
+
.sidebar-light .component-navigation-bar .navbar-nav .nav-link:disabled {
|
|
19538
|
+
color: rgba(0, 0, 0, 0.3);
|
|
19539
|
+
}
|
|
19347
19540
|
|
|
19348
19541
|
.sidebar-dark {
|
|
19349
19542
|
background-color: #343a40;
|
|
19350
19543
|
color: #fff;
|
|
19544
|
+
background-color: #343a40;
|
|
19545
|
+
color: #fff;
|
|
19351
19546
|
}
|
|
19352
19547
|
.sidebar-dark .close {
|
|
19353
19548
|
color: #a9afb5;
|
|
@@ -19408,9 +19603,62 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19408
19603
|
.sidebar-dark .nav-nested .nav-link[aria-expanded=true], .sidebar-dark .nav-nested .nav-link.show {
|
|
19409
19604
|
color: #fff;
|
|
19410
19605
|
}
|
|
19606
|
+
.sidebar-dark .sidebar-header .component-title {
|
|
19607
|
+
color: inherit;
|
|
19608
|
+
}
|
|
19609
|
+
.sidebar-dark .sidebar-header .component-title .href {
|
|
19610
|
+
color: inherit;
|
|
19611
|
+
}
|
|
19612
|
+
.sidebar-dark .sidebar-header .component-subtitle {
|
|
19613
|
+
color: inherit;
|
|
19614
|
+
}
|
|
19615
|
+
.sidebar-dark .sidebar-header .component-subtitle .href {
|
|
19616
|
+
color: inherit;
|
|
19617
|
+
}
|
|
19618
|
+
.sidebar-dark .close {
|
|
19619
|
+
color: #a9afb5;
|
|
19620
|
+
}
|
|
19621
|
+
.sidebar-dark .close:hover {
|
|
19622
|
+
color: #fff;
|
|
19623
|
+
}
|
|
19624
|
+
.sidebar-dark .nav-nested .nav-link {
|
|
19625
|
+
border-radius: 0.25rem;
|
|
19626
|
+
color: #a9afb5;
|
|
19627
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
19628
|
+
}
|
|
19629
|
+
@media (prefers-reduced-motion: reduce) {
|
|
19630
|
+
.sidebar-dark .nav-nested .nav-link {
|
|
19631
|
+
transition: none;
|
|
19632
|
+
}
|
|
19633
|
+
}
|
|
19634
|
+
.c-prefers-reduced-motion .sidebar-dark .nav-nested .nav-link {
|
|
19635
|
+
transition: none;
|
|
19636
|
+
}
|
|
19637
|
+
|
|
19638
|
+
.sidebar-dark .nav-nested .nav-link:hover {
|
|
19639
|
+
color: #fff;
|
|
19640
|
+
}
|
|
19641
|
+
.sidebar-dark .nav-nested .nav-link:focus {
|
|
19642
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
19643
|
+
outline: 0;
|
|
19644
|
+
}
|
|
19645
|
+
.sidebar-dark .nav-nested .nav-link:active {
|
|
19646
|
+
color: #fff;
|
|
19647
|
+
}
|
|
19648
|
+
.sidebar-dark .nav-nested .nav-link:disabled {
|
|
19649
|
+
box-shadow: none;
|
|
19650
|
+
color: #a9afb5;
|
|
19651
|
+
opacity: 0.65;
|
|
19652
|
+
}
|
|
19653
|
+
.sidebar-dark .nav-nested .nav-link:disabled:active {
|
|
19654
|
+
pointer-events: none;
|
|
19655
|
+
}
|
|
19656
|
+
|
|
19411
19657
|
.sidebar-dark-l2 {
|
|
19412
19658
|
background-color: #828e9a;
|
|
19413
19659
|
color: #fff;
|
|
19660
|
+
background-color: #828e9a;
|
|
19661
|
+
color: #fff;
|
|
19414
19662
|
}
|
|
19415
19663
|
.sidebar-dark-l2 .close {
|
|
19416
19664
|
color: #a9afb5;
|
|
@@ -19471,6 +19719,57 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19471
19719
|
.sidebar-dark-l2 .nav-nested .nav-link[aria-expanded=true], .sidebar-dark-l2 .nav-nested .nav-link.show {
|
|
19472
19720
|
color: #fff;
|
|
19473
19721
|
}
|
|
19722
|
+
.sidebar-dark-l2 .sidebar-header .component-title {
|
|
19723
|
+
color: inherit;
|
|
19724
|
+
}
|
|
19725
|
+
.sidebar-dark-l2 .sidebar-header .component-title .href {
|
|
19726
|
+
color: inherit;
|
|
19727
|
+
}
|
|
19728
|
+
.sidebar-dark-l2 .sidebar-header .component-subtitle {
|
|
19729
|
+
color: inherit;
|
|
19730
|
+
}
|
|
19731
|
+
.sidebar-dark-l2 .sidebar-header .component-subtitle .href {
|
|
19732
|
+
color: inherit;
|
|
19733
|
+
}
|
|
19734
|
+
.sidebar-dark-l2 .close {
|
|
19735
|
+
color: #a9afb5;
|
|
19736
|
+
}
|
|
19737
|
+
.sidebar-dark-l2 .close:hover {
|
|
19738
|
+
color: #fff;
|
|
19739
|
+
}
|
|
19740
|
+
.sidebar-dark-l2 .nav-nested .nav-link {
|
|
19741
|
+
border-radius: 0.25rem;
|
|
19742
|
+
color: #a9afb5;
|
|
19743
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
19744
|
+
}
|
|
19745
|
+
@media (prefers-reduced-motion: reduce) {
|
|
19746
|
+
.sidebar-dark-l2 .nav-nested .nav-link {
|
|
19747
|
+
transition: none;
|
|
19748
|
+
}
|
|
19749
|
+
}
|
|
19750
|
+
.c-prefers-reduced-motion .sidebar-dark-l2 .nav-nested .nav-link {
|
|
19751
|
+
transition: none;
|
|
19752
|
+
}
|
|
19753
|
+
|
|
19754
|
+
.sidebar-dark-l2 .nav-nested .nav-link:hover {
|
|
19755
|
+
color: #fff;
|
|
19756
|
+
}
|
|
19757
|
+
.sidebar-dark-l2 .nav-nested .nav-link:focus {
|
|
19758
|
+
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
19759
|
+
outline: 0;
|
|
19760
|
+
}
|
|
19761
|
+
.sidebar-dark-l2 .nav-nested .nav-link:active {
|
|
19762
|
+
color: #fff;
|
|
19763
|
+
}
|
|
19764
|
+
.sidebar-dark-l2 .nav-nested .nav-link:disabled {
|
|
19765
|
+
box-shadow: none;
|
|
19766
|
+
color: #a9afb5;
|
|
19767
|
+
opacity: 0.65;
|
|
19768
|
+
}
|
|
19769
|
+
.sidebar-dark-l2 .nav-nested .nav-link:disabled:active {
|
|
19770
|
+
pointer-events: none;
|
|
19771
|
+
}
|
|
19772
|
+
|
|
19474
19773
|
.c-slideout-transition-in {
|
|
19475
19774
|
overflow: hidden;
|
|
19476
19775
|
transition: all 0.3s ease-in-out;
|
|
@@ -19505,13 +19804,28 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19505
19804
|
position: absolute;
|
|
19506
19805
|
}
|
|
19507
19806
|
|
|
19807
|
+
.c-slideout-container {
|
|
19808
|
+
min-height: 480px;
|
|
19809
|
+
position: relative;
|
|
19810
|
+
}
|
|
19811
|
+
|
|
19508
19812
|
.c-slideout-push-start {
|
|
19509
19813
|
padding-left: 320px;
|
|
19510
19814
|
}
|
|
19815
|
+
@media (max-width: 991.98px) {
|
|
19816
|
+
.c-slideout-push-start {
|
|
19817
|
+
padding-left: 0;
|
|
19818
|
+
}
|
|
19819
|
+
}
|
|
19511
19820
|
|
|
19512
19821
|
.c-slideout-push-end {
|
|
19513
19822
|
padding-right: 320px;
|
|
19514
19823
|
}
|
|
19824
|
+
@media (max-width: 991.98px) {
|
|
19825
|
+
.c-slideout-push-end {
|
|
19826
|
+
padding-right: 0;
|
|
19827
|
+
}
|
|
19828
|
+
}
|
|
19515
19829
|
|
|
19516
19830
|
.c-slideout {
|
|
19517
19831
|
display: flex;
|
|
@@ -19524,12 +19838,32 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19524
19838
|
.c-slideout .sidebar {
|
|
19525
19839
|
display: none;
|
|
19526
19840
|
flex-shrink: 0;
|
|
19527
|
-
overflow: visible;
|
|
19528
19841
|
position: relative;
|
|
19529
19842
|
width: 320px;
|
|
19843
|
+
display: none;
|
|
19844
|
+
flex-shrink: 0;
|
|
19845
|
+
position: relative;
|
|
19846
|
+
width: 320px;
|
|
19847
|
+
}
|
|
19848
|
+
.c-slideout .sidebar .sidebar-header {
|
|
19849
|
+
border-bottom-width: 1px;
|
|
19850
|
+
}
|
|
19851
|
+
.c-slideout .sidebar .sidebar-body {
|
|
19852
|
+
flex-grow: 1;
|
|
19853
|
+
overflow: visible;
|
|
19854
|
+
}
|
|
19855
|
+
.c-slideout .sidebar .sidebar-footer {
|
|
19856
|
+
border-top-width: 1px;
|
|
19530
19857
|
}
|
|
19531
|
-
.c-slideout .sidebar-
|
|
19858
|
+
.c-slideout .sidebar .sidebar-header {
|
|
19859
|
+
border-bottom-width: 1px;
|
|
19860
|
+
}
|
|
19861
|
+
.c-slideout .sidebar .sidebar-body {
|
|
19532
19862
|
flex-grow: 1;
|
|
19863
|
+
overflow: visible;
|
|
19864
|
+
}
|
|
19865
|
+
.c-slideout .sidebar .sidebar-footer {
|
|
19866
|
+
border-top-width: 1px;
|
|
19533
19867
|
}
|
|
19534
19868
|
.c-slideout .sidebar.c-slideout-show {
|
|
19535
19869
|
display: flex;
|
|
@@ -19559,6 +19893,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19559
19893
|
@media (max-width: 767.98px) {
|
|
19560
19894
|
.c-slideout .sidebar {
|
|
19561
19895
|
width: 280px;
|
|
19896
|
+
width: 280px;
|
|
19562
19897
|
}
|
|
19563
19898
|
}
|
|
19564
19899
|
|
|
@@ -19573,6 +19908,8 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19573
19908
|
.c-slideout-start .sidebar {
|
|
19574
19909
|
left: -360px;
|
|
19575
19910
|
width: 320px;
|
|
19911
|
+
left: -360px;
|
|
19912
|
+
width: 320px;
|
|
19576
19913
|
}
|
|
19577
19914
|
.c-slideout-start .sidebar.c-slideout-show {
|
|
19578
19915
|
left: 0;
|
|
@@ -19590,6 +19927,8 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19590
19927
|
.c-slideout-start .sidebar {
|
|
19591
19928
|
left: -320px;
|
|
19592
19929
|
width: 280px;
|
|
19930
|
+
left: -320px;
|
|
19931
|
+
width: 280px;
|
|
19593
19932
|
}
|
|
19594
19933
|
.c-slideout-start .tbar-stacked {
|
|
19595
19934
|
left: -40px;
|
|
@@ -19606,6 +19945,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19606
19945
|
}
|
|
19607
19946
|
.c-slideout-end .sidebar {
|
|
19608
19947
|
right: -360px;
|
|
19948
|
+
right: -360px;
|
|
19609
19949
|
}
|
|
19610
19950
|
.c-slideout-end .sidebar.c-slideout-show {
|
|
19611
19951
|
right: 0;
|
|
@@ -19626,6 +19966,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19626
19966
|
}
|
|
19627
19967
|
.c-slideout-end .sidebar {
|
|
19628
19968
|
right: -320px;
|
|
19969
|
+
right: -320px;
|
|
19629
19970
|
}
|
|
19630
19971
|
.c-slideout-end .tbar-stacked {
|
|
19631
19972
|
right: -40px;
|
|
@@ -27889,6 +28230,14 @@ button.bg-dark:focus {
|
|
|
27889
28230
|
z-index: 1030;
|
|
27890
28231
|
}
|
|
27891
28232
|
|
|
28233
|
+
@supports (position: sticky) {
|
|
28234
|
+
.sticky-bottom {
|
|
28235
|
+
bottom: 0;
|
|
28236
|
+
position: sticky;
|
|
28237
|
+
z-index: 1020;
|
|
28238
|
+
}
|
|
28239
|
+
}
|
|
28240
|
+
|
|
27892
28241
|
@supports (position: sticky) {
|
|
27893
28242
|
.sticky-top {
|
|
27894
28243
|
position: sticky;
|