@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.
Files changed (75) hide show
  1. package/lib/css/atlas.css +418 -48
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +379 -15
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +383 -20
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/anonymize.svg +1 -0
  8. package/lib/images/icons/bell-full.svg +1 -0
  9. package/lib/images/icons/comments.svg +3 -5
  10. package/lib/images/icons/devices.svg +1 -0
  11. package/lib/images/icons/environment-connected.svg +1 -0
  12. package/lib/images/icons/environment-disconnected.svg +1 -0
  13. package/lib/images/icons/environment.svg +1 -0
  14. package/lib/images/icons/flags-bs-BA.svg +13 -0
  15. package/lib/images/icons/icons.svg +1 -1
  16. package/lib/images/icons/info-panel-closed.svg +1 -0
  17. package/lib/images/icons/info-panel-open.svg +1 -0
  18. package/lib/images/icons/megaphone-full.svg +1 -0
  19. package/lib/images/icons/paste-plaintext.svg +1 -3
  20. package/lib/images/icons/paste-word.svg +1 -3
  21. package/lib/images/icons/paste.svg +1 -3
  22. package/lib/images/icons/pin-full.svg +1 -0
  23. package/lib/images/icons/repeat.svg +7 -0
  24. package/lib/images/icons/reset.svg +3 -3
  25. package/lib/images/icons/send.svg +1 -0
  26. package/lib/images/icons/share-alt.svg +1 -0
  27. package/lib/images/icons/social-twitter.svg +1 -0
  28. package/lib/images/icons/third-party.svg +1 -0
  29. package/package.json +2 -2
  30. package/src/images/icons/anonymize.svg +1 -0
  31. package/src/images/icons/bell-full.svg +1 -0
  32. package/src/images/icons/comments.svg +3 -5
  33. package/src/images/icons/devices.svg +1 -0
  34. package/src/images/icons/environment-connected.svg +1 -0
  35. package/src/images/icons/environment-disconnected.svg +1 -0
  36. package/src/images/icons/environment.svg +1 -0
  37. package/src/images/icons/flags-bs-BA.svg +13 -0
  38. package/src/images/icons/info-panel-closed.svg +1 -0
  39. package/src/images/icons/info-panel-open.svg +1 -0
  40. package/src/images/icons/megaphone-full.svg +1 -0
  41. package/src/images/icons/paste-plaintext.svg +1 -3
  42. package/src/images/icons/paste-word.svg +1 -3
  43. package/src/images/icons/paste.svg +1 -3
  44. package/src/images/icons/pin-full.svg +1 -0
  45. package/src/images/icons/repeat.svg +7 -0
  46. package/src/images/icons/reset.svg +3 -3
  47. package/src/images/icons/send.svg +1 -0
  48. package/src/images/icons/share-alt.svg +1 -0
  49. package/src/images/icons/social-twitter.svg +1 -0
  50. package/src/images/icons/third-party.svg +1 -0
  51. package/src/scss/_license-text.scss +1 -1
  52. package/src/scss/atlas/variables/_forms.scss +6 -9
  53. package/src/scss/atlas/variables/_sidebar.scss +12 -7
  54. package/src/scss/cadmin/components/_form-validation.scss +16 -0
  55. package/src/scss/cadmin/components/_sidebar.scss +32 -0
  56. package/src/scss/cadmin/components/_slideout.scss +12 -0
  57. package/src/scss/cadmin/components/_utilities-functional-important.scss +8 -0
  58. package/src/scss/cadmin/variables/_clay-color.scss +2 -0
  59. package/src/scss/cadmin/variables/_forms.scss +39 -3
  60. package/src/scss/cadmin/variables/_sidebar.scss +36 -7
  61. package/src/scss/cadmin/variables/_slideout.scss +51 -3
  62. package/src/scss/cadmin/variables/_stickers.scss +6 -0
  63. package/src/scss/components/_form-validation.scss +16 -0
  64. package/src/scss/components/_sidebar.scss +32 -0
  65. package/src/scss/components/_slideout.scss +12 -0
  66. package/src/scss/components/_utilities-functional-important.scss +8 -0
  67. package/src/scss/functions/_lx-icons-generated.scss +9 -5
  68. package/src/scss/mixins/_globals.scss +7 -0
  69. package/src/scss/mixins/_grid.scss +6 -0
  70. package/src/scss/mixins/_sidebar.scss +2 -0
  71. package/src/scss/mixins/_slideout.scss +11 -1
  72. package/src/scss/variables/_forms.scss +36 -0
  73. package/src/scss/variables/_sidebar.scss +26 -9
  74. package/src/scss/variables/_slideout.scss +51 -3
  75. 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.136.0
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>
@@ -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,6 +10294,21 @@ 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
+ }
10306
+ @media (max-width: 575.98px) {
10307
+ .date-picker-nav select.form-control {
10308
+ font-size: 0.75rem;
10309
+ height: 1.5rem;
10310
+ }
10311
+ }
10263
10312
  @media (max-width: 575.98px) {
10264
10313
  .date-picker-nav select.form-control {
10265
10314
  font-size: 0.75rem;
@@ -10272,6 +10321,12 @@ label.custom-control-label {
10272
10321
  height: 1.5rem;
10273
10322
  }
10274
10323
  }
10324
+ @media (max-width: 575.98px) {
10325
+ .date-picker-nav .form-control-select {
10326
+ font-size: 0.75rem;
10327
+ height: 1.5rem;
10328
+ }
10329
+ }
10275
10330
  .date-picker-nav-item {
10276
10331
  align-items: center;
10277
10332
  display: flex;
@@ -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
  }
@@ -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: 1rem;
19171
- padding-right: 1rem;
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: 1rem;
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: 1rem;
19200
- padding-right: 1rem;
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: 1rem;
19209
- padding-right: 1rem;
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,7 +19719,59 @@ 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 {
19774
+ overflow: hidden;
19475
19775
  transition: all 0.3s ease-in-out;
19476
19776
  }
19477
19777
  @media (prefers-reduced-motion: reduce) {
@@ -19484,6 +19784,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19484
19784
  }
19485
19785
 
19486
19786
  .c-slideout-transition-out {
19787
+ overflow: hidden;
19487
19788
  transition: all 0.2s ease-in;
19488
19789
  }
19489
19790
  @media (prefers-reduced-motion: reduce) {
@@ -19503,6 +19804,29 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19503
19804
  position: absolute;
19504
19805
  }
19505
19806
 
19807
+ .c-slideout-container {
19808
+ min-height: 480px;
19809
+ position: relative;
19810
+ }
19811
+
19812
+ .c-slideout-push-start {
19813
+ padding-left: 320px;
19814
+ }
19815
+ @media (max-width: 991.98px) {
19816
+ .c-slideout-push-start {
19817
+ padding-left: 0;
19818
+ }
19819
+ }
19820
+
19821
+ .c-slideout-push-end {
19822
+ padding-right: 320px;
19823
+ }
19824
+ @media (max-width: 991.98px) {
19825
+ .c-slideout-push-end {
19826
+ padding-right: 0;
19827
+ }
19828
+ }
19829
+
19506
19830
  .c-slideout {
19507
19831
  display: flex;
19508
19832
  overflow: hidden;
@@ -19514,15 +19838,40 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19514
19838
  .c-slideout .sidebar {
19515
19839
  display: none;
19516
19840
  flex-shrink: 0;
19517
- overflow: visible;
19518
19841
  position: relative;
19519
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;
19857
+ }
19858
+ .c-slideout .sidebar .sidebar-header {
19859
+ border-bottom-width: 1px;
19860
+ }
19861
+ .c-slideout .sidebar .sidebar-body {
19862
+ flex-grow: 1;
19863
+ overflow: visible;
19864
+ }
19865
+ .c-slideout .sidebar .sidebar-footer {
19866
+ border-top-width: 1px;
19520
19867
  }
19521
19868
  .c-slideout .sidebar.c-slideout-show {
19522
- display: block;
19869
+ display: flex;
19870
+ flex-direction: column;
19523
19871
  }
19524
19872
  .c-slideout .sidebar.c-slideout-transition {
19525
- display: block;
19873
+ display: flex;
19874
+ flex-direction: column;
19526
19875
  }
19527
19876
  .c-slideout .sidebar.c-slideout-transition .c-horizontal-resizer {
19528
19877
  display: none;
@@ -19544,6 +19893,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19544
19893
  @media (max-width: 767.98px) {
19545
19894
  .c-slideout .sidebar {
19546
19895
  width: 280px;
19896
+ width: 280px;
19547
19897
  }
19548
19898
  }
19549
19899
 
@@ -19558,6 +19908,8 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19558
19908
  .c-slideout-start .sidebar {
19559
19909
  left: -360px;
19560
19910
  width: 320px;
19911
+ left: -360px;
19912
+ width: 320px;
19561
19913
  }
19562
19914
  .c-slideout-start .sidebar.c-slideout-show {
19563
19915
  left: 0;
@@ -19575,6 +19927,8 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19575
19927
  .c-slideout-start .sidebar {
19576
19928
  left: -320px;
19577
19929
  width: 280px;
19930
+ left: -320px;
19931
+ width: 280px;
19578
19932
  }
19579
19933
  .c-slideout-start .tbar-stacked {
19580
19934
  left: -40px;
@@ -19591,6 +19945,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19591
19945
  }
19592
19946
  .c-slideout-end .sidebar {
19593
19947
  right: -360px;
19948
+ right: -360px;
19594
19949
  }
19595
19950
  .c-slideout-end .sidebar.c-slideout-show {
19596
19951
  right: 0;
@@ -19611,6 +19966,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19611
19966
  }
19612
19967
  .c-slideout-end .sidebar {
19613
19968
  right: -320px;
19969
+ right: -320px;
19614
19970
  }
19615
19971
  .c-slideout-end .tbar-stacked {
19616
19972
  right: -40px;
@@ -27874,6 +28230,14 @@ button.bg-dark:focus {
27874
28230
  z-index: 1030;
27875
28231
  }
27876
28232
 
28233
+ @supports (position: sticky) {
28234
+ .sticky-bottom {
28235
+ bottom: 0;
28236
+ position: sticky;
28237
+ z-index: 1020;
28238
+ }
28239
+ }
28240
+
27877
28241
  @supports (position: sticky) {
27878
28242
  .sticky-top {
27879
28243
  position: sticky;