@clayui/css 3.104.0 → 3.105.1-alpha.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 (56) hide show
  1. package/lib/css/atlas.css +490 -120
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +457 -47
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/bootstrap.css +0 -0
  6. package/lib/css/bootstrap.css.map +1 -1
  7. package/lib/css/cadmin.css +451 -80
  8. package/lib/css/cadmin.css.map +1 -1
  9. package/lib/images/icons/bookmarks-full.svg +9 -0
  10. package/lib/images/icons/bookmarks.svg +1 -2
  11. package/lib/images/icons/download.svg +2 -2
  12. package/lib/images/icons/icons.svg +1 -1
  13. package/lib/images/icons/import-list.svg +2 -3
  14. package/lib/images/icons/import.svg +1 -2
  15. package/lib/images/icons/key.svg +9 -0
  16. package/lib/images/icons/upload-multiple.svg +2 -3
  17. package/lib/images/icons/upload.svg +1 -2
  18. package/package.json +2 -2
  19. package/src/images/icons/bookmarks-full.svg +9 -0
  20. package/src/images/icons/bookmarks.svg +1 -2
  21. package/src/images/icons/download.svg +2 -2
  22. package/src/images/icons/import-list.svg +2 -3
  23. package/src/images/icons/import.svg +1 -2
  24. package/src/images/icons/key.svg +9 -0
  25. package/src/images/icons/upload-multiple.svg +2 -3
  26. package/src/images/icons/upload.svg +1 -2
  27. package/src/scss/_license-text.scss +1 -1
  28. package/src/scss/atlas/variables/_dropdowns.scss +1 -1
  29. package/src/scss/atlas/variables/_range.scss +13 -11
  30. package/src/scss/cadmin/components/_clay-color.scss +42 -0
  31. package/src/scss/cadmin/components/_custom-forms.scss +1 -2
  32. package/src/scss/cadmin/components/_input-groups.scss +4 -0
  33. package/src/scss/cadmin/components/_tables.scss +14 -0
  34. package/src/scss/cadmin/variables/_clay-color.scss +157 -1
  35. package/src/scss/cadmin/variables/_custom-forms.scss +25 -2
  36. package/src/scss/cadmin/variables/_dropdowns.scss +1 -1
  37. package/src/scss/cadmin/variables/_forms.scss +23 -0
  38. package/src/scss/cadmin/variables/_globals.scss +6 -0
  39. package/src/scss/cadmin/variables/_tables.scss +45 -0
  40. package/src/scss/components/_clay-color.scss +42 -0
  41. package/src/scss/components/_custom-forms.scss +1 -2
  42. package/src/scss/components/_input-groups.scss +4 -0
  43. package/src/scss/components/_range.scss +2 -2
  44. package/src/scss/components/_tables.scss +14 -0
  45. package/src/scss/functions/_lx-icons-generated.scss +10 -6
  46. package/src/scss/mixins/_forms.scss +224 -5
  47. package/src/scss/mixins/_input-groups.scss +5 -1
  48. package/src/scss/mixins/_links.scss +1 -1
  49. package/src/scss/mixins/_tables.scss +27 -3
  50. package/src/scss/variables/_clay-color.scss +157 -1
  51. package/src/scss/variables/_custom-forms.scss +24 -1
  52. package/src/scss/variables/_dropdowns.scss +6 -0
  53. package/src/scss/variables/_forms.scss +31 -0
  54. package/src/scss/variables/_globals.scss +6 -0
  55. package/src/scss/variables/_range.scss +33 -1
  56. package/src/scss/variables/_tables.scss +45 -0
package/lib/css/atlas.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.104.0
3
+ * Clay 3.105.1-alpha.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>
@@ -129,14 +129,29 @@ sup {
129
129
  }
130
130
 
131
131
  a {
132
+ border-radius: 1px;
132
133
  color: #0b5fff;
133
134
  text-decoration: none;
134
135
  text-underline-offset: 0.23em;
136
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
137
+ }
138
+ @media (prefers-reduced-motion: reduce) {
139
+ a {
140
+ transition: none;
141
+ }
142
+ }
143
+ .c-prefers-reduced-motion a {
144
+ transition: none;
135
145
  }
146
+
136
147
  a:hover, a.hover {
137
148
  color: #004ad7;
138
149
  text-decoration: underline;
139
150
  }
151
+ a.focus, a:focus-visible, .c-prefers-focus a:focus {
152
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
153
+ outline: 0;
154
+ }
140
155
  pre,
141
156
  code,
142
157
  kbd,
@@ -5397,12 +5412,12 @@ input[type=button].btn-block {
5397
5412
  color: #272833;
5398
5413
  }
5399
5414
  .card-title[href],
5400
- .card-title [href] {
5415
+ .card-title a[href] {
5401
5416
  color: #272833;
5402
5417
  }
5403
5418
  .card-title[href]:hover, .card-title[href].hover,
5404
- .card-title [href]:hover,
5405
- .card-title [href].hover {
5419
+ .card-title a[href]:hover,
5420
+ .card-title a[href].hover {
5406
5421
  color: #272833;
5407
5422
  }
5408
5423
  .card-subtitle {
@@ -5413,12 +5428,12 @@ input[type=button].btn-block {
5413
5428
  margin-top: 0;
5414
5429
  }
5415
5430
  .card-subtitle[href],
5416
- .card-subtitle [href] {
5431
+ .card-subtitle a[href] {
5417
5432
  color: #6b6c7e;
5418
5433
  }
5419
5434
  .card-subtitle[href]:hover, .card-subtitle[href].hover,
5420
- .card-subtitle [href]:hover,
5421
- .card-subtitle [href].hover {
5435
+ .card-subtitle a[href]:hover,
5436
+ .card-subtitle a[href].hover {
5422
5437
  color: #6b6c7e;
5423
5438
  }
5424
5439
  .card-text:last-child {
@@ -6590,7 +6605,7 @@ input[type=button].btn-block {
6590
6605
  color: #6b6c7e;
6591
6606
  }
6592
6607
  .dropdown-section .custom-control-label-text {
6593
- padding-left: 0.75rem;
6608
+ padding-left: 1.75rem;
6594
6609
  }
6595
6610
  .dropdown-section.active .custom-control-label {
6596
6611
  color: #272833;
@@ -7514,6 +7529,12 @@ fieldset[disabled] label .form-control {
7514
7529
  color: #272833;
7515
7530
  outline: 0;
7516
7531
  }
7532
+ .form-control:focus-within:has(input:focus) {
7533
+ background-color: #f0f5ff;
7534
+ border-color: #80acff;
7535
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
7536
+ color: #272833;
7537
+ }
7517
7538
  .form-control:disabled, .form-control.disabled {
7518
7539
  background-color: #f1f2f5;
7519
7540
  border-color: #f1f2f5;
@@ -8521,31 +8542,31 @@ button.link-outline {
8521
8542
  margin-top: calc(( 2rem - (1em * 1.25) ) / 2);
8522
8543
  }
8523
8544
  .component-title[href],
8524
- .component-title [href] {
8545
+ .component-title a[href] {
8525
8546
  color: #272833;
8526
8547
  border-radius: 1px;
8527
8548
  transition: box-shadow 0.15s ease-in-out;
8528
8549
  }
8529
8550
  @media (prefers-reduced-motion: reduce) {
8530
8551
  .component-title[href],
8531
- .component-title [href] {
8552
+ .component-title a[href] {
8532
8553
  transition: none;
8533
8554
  }
8534
8555
  }
8535
8556
  .c-prefers-reduced-motion .component-title[href],
8536
- .c-prefers-reduced-motion .component-title [href] {
8557
+ .c-prefers-reduced-motion .component-title a[href] {
8537
8558
  transition: none;
8538
8559
  }
8539
8560
 
8540
8561
  .component-title[href]:hover, .component-title[href].hover,
8541
- .component-title [href]:hover,
8542
- .component-title [href].hover {
8562
+ .component-title a[href]:hover,
8563
+ .component-title a[href].hover {
8543
8564
  color: #060608;
8544
8565
  }
8545
8566
  .component-title[href].focus, .component-title[href]:focus-visible, .c-prefers-focus .component-title[href]:focus,
8546
- .component-title [href].focus,
8547
- .component-title [href]:focus-visible,
8548
- .c-prefers-focus .component-title [href]:focus {
8567
+ .component-title a[href].focus,
8568
+ .component-title a[href]:focus-visible,
8569
+ .c-prefers-focus .component-title a[href]:focus {
8549
8570
  color: #060608;
8550
8571
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8551
8572
  outline: 0;
@@ -8557,31 +8578,31 @@ button.link-outline {
8557
8578
  line-height: 1.45;
8558
8579
  }
8559
8580
  .component-subtitle[href],
8560
- .component-subtitle [href] {
8581
+ .component-subtitle a[href] {
8561
8582
  color: #6b6c7e;
8562
8583
  border-radius: 1px;
8563
8584
  transition: box-shadow 0.15s ease-in-out;
8564
8585
  }
8565
8586
  @media (prefers-reduced-motion: reduce) {
8566
8587
  .component-subtitle[href],
8567
- .component-subtitle [href] {
8588
+ .component-subtitle a[href] {
8568
8589
  transition: none;
8569
8590
  }
8570
8591
  }
8571
8592
  .c-prefers-reduced-motion .component-subtitle[href],
8572
- .c-prefers-reduced-motion .component-subtitle [href] {
8593
+ .c-prefers-reduced-motion .component-subtitle a[href] {
8573
8594
  transition: none;
8574
8595
  }
8575
8596
 
8576
8597
  .component-subtitle[href]:hover, .component-subtitle[href].hover,
8577
- .component-subtitle [href]:hover,
8578
- .component-subtitle [href].hover {
8598
+ .component-subtitle a[href]:hover,
8599
+ .component-subtitle a[href].hover {
8579
8600
  color: #272833;
8580
8601
  }
8581
8602
  .component-subtitle[href].focus, .component-subtitle[href]:focus-visible, .c-prefers-focus .component-subtitle[href]:focus,
8582
- .component-subtitle [href].focus,
8583
- .component-subtitle [href]:focus-visible,
8584
- .c-prefers-focus .component-subtitle [href]:focus {
8603
+ .component-subtitle a[href].focus,
8604
+ .component-subtitle a[href]:focus-visible,
8605
+ .c-prefers-focus .component-subtitle a[href]:focus {
8585
8606
  color: #272833;
8586
8607
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8587
8608
  outline: 0;
@@ -8687,10 +8708,59 @@ button.link-outline {
8687
8708
  color: #a7a9bc;
8688
8709
  }
8689
8710
 
8690
- .clay-range-progress-none .clay-range-progress {
8711
+ .clay-range-progress-none .clay-range-input .clay-range-progress {
8691
8712
  visibility: hidden;
8692
8713
  }
8693
-
8714
+ .clay-range-progress-none .clay-range-input .clay-range-thumb {
8715
+ visibility: hidden;
8716
+ }
8717
+ .clay-range-progress-none .clay-range-input .form-control-range {
8718
+ content: "";
8719
+ }
8720
+ .clay-range-progress-none .clay-range-input .form-control-range::-moz-range-thumb {
8721
+ visibility: visible;
8722
+ }
8723
+ .clay-range-progress-none .clay-range-input .form-control-range::-moz-range-track {
8724
+ -moz-appearance: none;
8725
+ appearance: none;
8726
+ height: 100%;
8727
+ }
8728
+ .clay-range-progress-none .clay-range-input .form-control-range::-ms-fill-lower {
8729
+ background-color: transparent;
8730
+ }
8731
+ .clay-range-progress-none .clay-range-input .form-control-range::-ms-fill-upper {
8732
+ background-color: transparent;
8733
+ }
8734
+ .clay-range-progress-none .clay-range-input .form-control-range::-ms-thumb {
8735
+ visibility: visible;
8736
+ }
8737
+ .clay-range-progress-none .clay-range-input .form-control-range::-ms-tooltip {
8738
+ display: none;
8739
+ }
8740
+ .clay-range-progress-none .clay-range-input .form-control-range::-ms-track {
8741
+ background-color: transparent;
8742
+ border-color: transparent;
8743
+ border-style: solid;
8744
+ border-width: 0;
8745
+ color: transparent;
8746
+ height: 100%;
8747
+ }
8748
+ .clay-range-progress-none .clay-range-input .form-control-range::-webkit-slider-runnable-track {
8749
+ -webkit-appearance: none;
8750
+ appearance: none;
8751
+ height: 100%;
8752
+ }
8753
+ .clay-range-progress-none .clay-range-input .form-control-range::-webkit-slider-thumb {
8754
+ visibility: visible;
8755
+ }
8756
+ .clay-range-progress-none .clay-range-input .form-control-range:hover ~ .clay-range-progress .tooltip {
8757
+ visibility: visible;
8758
+ opacity: 1;
8759
+ }
8760
+ .clay-range-progress-none .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip, .clay-range-progress-none .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .tooltip, .c-prefers-focus .clay-range-progress-none .clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip {
8761
+ visibility: visible;
8762
+ opacity: 1;
8763
+ }
8694
8764
  .clay-range-title {
8695
8765
  display: block;
8696
8766
  font-weight: 600;
@@ -8780,7 +8850,6 @@ button.link-outline {
8780
8850
  position: absolute;
8781
8851
  right: -0.75rem;
8782
8852
  top: 50%;
8783
- visibility: hidden;
8784
8853
  width: 1.5rem;
8785
8854
  }
8786
8855
  .clay-range-input .form-control-range {
@@ -8802,6 +8871,7 @@ button.link-outline {
8802
8871
  border-width: 0;
8803
8872
  }
8804
8873
  .clay-range-input .form-control-range::-moz-range-thumb {
8874
+ visibility: hidden;
8805
8875
  -moz-appearance: none;
8806
8876
  -webkit-appearance: none;
8807
8877
  appearance: none;
@@ -8830,6 +8900,7 @@ button.link-outline {
8830
8900
  background-color: transparent;
8831
8901
  }
8832
8902
  .clay-range-input .form-control-range::-ms-thumb {
8903
+ visibility: hidden;
8833
8904
  -moz-appearance: none;
8834
8905
  -webkit-appearance: none;
8835
8906
  appearance: none;
@@ -8854,6 +8925,7 @@ button.link-outline {
8854
8925
  height: 100%;
8855
8926
  }
8856
8927
  .clay-range-input .form-control-range::-webkit-slider-thumb {
8928
+ visibility: hidden;
8857
8929
  -moz-appearance: none;
8858
8930
  -webkit-appearance: none;
8859
8931
  appearance: none;
@@ -8873,22 +8945,10 @@ button.link-outline {
8873
8945
  .clay-range-input .form-control-range:hover {
8874
8946
  cursor: pointer;
8875
8947
  }
8876
- .clay-range-input .form-control-range:hover ~ .clay-range-progress .clay-range-thumb {
8877
- background-color: #f0f5ff;
8878
- }
8879
8948
  .clay-range-input .form-control-range:hover ~ .clay-range-progress .tooltip {
8880
8949
  visibility: visible;
8881
8950
  opacity: 1;
8882
8951
  }
8883
- .clay-range-input .form-control-range:hover::-moz-range-thumb {
8884
- background-color: #f0f5ff;
8885
- }
8886
- .clay-range-input .form-control-range:hover::-ms-thumb {
8887
- background-color: #f0f5ff;
8888
- }
8889
- .clay-range-input .form-control-range:hover::-webkit-slider-thumb {
8890
- background-color: #f0f5ff;
8891
- }
8892
8952
  .clay-range-input .form-control-range.focus, .clay-range-input .form-control-range:focus-visible, .c-prefers-focus .clay-range-input .form-control-range:focus {
8893
8953
  outline: 0;
8894
8954
  }
@@ -8919,18 +8979,6 @@ button.link-outline {
8919
8979
  .clay-range-input .form-control-range:disabled ~ .clay-range-progress {
8920
8980
  background-color: #b3cdff;
8921
8981
  }
8922
- .clay-range-input .form-control-range:disabled ~ .clay-range-progress .clay-range-thumb {
8923
- background-color: #f7f8f9;
8924
- }
8925
- .clay-range-input .form-control-range:disabled::-moz-range-thumb {
8926
- background-color: #f7f8f9;
8927
- }
8928
- .clay-range-input .form-control-range:disabled::-ms-thumb {
8929
- background-color: #f7f8f9;
8930
- }
8931
- .clay-range-input .form-control-range:disabled::-webkit-slider-thumb {
8932
- background-color: #f7f8f9;
8933
- }
8934
8982
  .clay-range-input[data-label-min], .clay-range-input[data-label-max] {
8935
8983
  margin-bottom: 1rem;
8936
8984
  }
@@ -9023,7 +9071,7 @@ button.link-outline {
9023
9071
  }
9024
9072
 
9025
9073
  .clay-color-dropdown-menu {
9026
- max-height: 400px;
9074
+ max-height: 500px;
9027
9075
  max-width: none;
9028
9076
  padding-bottom: 0;
9029
9077
  padding-left: 1rem;
@@ -9230,6 +9278,237 @@ button.link-outline {
9230
9278
  margin-top: -7px;
9231
9279
  top: 50%;
9232
9280
  }
9281
+ .clay-color-slider .clay-range-input {
9282
+ border-radius: 100px;
9283
+ }
9284
+ .clay-color-slider .clay-range-input .clay-range-track {
9285
+ border-radius: inherit;
9286
+ height: 0.5rem;
9287
+ margin-top: -0.25rem;
9288
+ }
9289
+ .clay-color-slider .clay-range-input .clay-range-progress {
9290
+ background-color: transparent;
9291
+ border-radius: inherit;
9292
+ height: 0.5rem;
9293
+ margin-top: -0.25rem;
9294
+ width: 100%;
9295
+ }
9296
+ .clay-color-slider .clay-range-input .clay-range-thumb {
9297
+ background-color: currentColor;
9298
+ border-width: 0;
9299
+ box-shadow: 0 0 0 0.125rem #fff;
9300
+ height: 0.625rem;
9301
+ margin-top: -0.3125rem;
9302
+ transition: box-shadow 0.15s ease-in-out;
9303
+ visibility: hidden;
9304
+ width: 0.625rem;
9305
+ }
9306
+ @media (prefers-reduced-motion: reduce) {
9307
+ .clay-color-slider .clay-range-input .clay-range-thumb {
9308
+ transition: none;
9309
+ }
9310
+ }
9311
+ .c-prefers-reduced-motion .clay-color-slider .clay-range-input .clay-range-thumb {
9312
+ transition: none;
9313
+ }
9314
+
9315
+ .clay-color-slider .clay-range-input .form-control-range {
9316
+ background-color: inherit;
9317
+ border-radius: inherit;
9318
+ color: inherit;
9319
+ height: 0.5rem;
9320
+ content: "0.625rem";
9321
+ }
9322
+ .clay-color-slider .clay-range-input .form-control-range::-moz-range-thumb {
9323
+ height: 0.625rem;
9324
+ visibility: visible;
9325
+ width: 0.625rem;
9326
+ background-color: currentColor;
9327
+ border-width: 0;
9328
+ box-shadow: 0 0 0 0.125rem #fff;
9329
+ margin-top: -0.3125rem;
9330
+ }
9331
+ .clay-color-slider .clay-range-input .form-control-range::-moz-range-track {
9332
+ -moz-appearance: none;
9333
+ appearance: none;
9334
+ height: 100%;
9335
+ }
9336
+ .clay-color-slider .clay-range-input .form-control-range::-ms-fill-lower {
9337
+ background-color: transparent;
9338
+ }
9339
+ .clay-color-slider .clay-range-input .form-control-range::-ms-fill-upper {
9340
+ background-color: transparent;
9341
+ }
9342
+ .clay-color-slider .clay-range-input .form-control-range::-ms-thumb {
9343
+ visibility: visible;
9344
+ }
9345
+ .clay-color-slider .clay-range-input .form-control-range::-ms-tooltip {
9346
+ display: none;
9347
+ }
9348
+ .clay-color-slider .clay-range-input .form-control-range::-ms-track {
9349
+ background-color: transparent;
9350
+ border-color: transparent;
9351
+ border-style: solid;
9352
+ border-width: 0;
9353
+ color: transparent;
9354
+ height: 100%;
9355
+ }
9356
+ .clay-color-slider .clay-range-input .form-control-range::-webkit-slider-runnable-track {
9357
+ -webkit-appearance: none;
9358
+ -moz-appearance: none;
9359
+ -webkit-appearance: none;
9360
+ appearance: none;
9361
+ }
9362
+ .clay-color-slider .clay-range-input .form-control-range::-webkit-slider-runnable-track::-ms-expand {
9363
+ display: none;
9364
+ }
9365
+ .clay-color-slider .clay-range-input .form-control-range::-webkit-slider-thumb {
9366
+ visibility: visible;
9367
+ background-color: currentColor;
9368
+ border-width: 0;
9369
+ box-shadow: 0 0 0 0.125rem #fff;
9370
+ height: 0.625rem;
9371
+ margin-top: -0.3125rem;
9372
+ width: 0.625rem;
9373
+ }
9374
+ .clay-color-slider .clay-range-input .form-control-range:hover ~ .clay-range-progress .tooltip {
9375
+ visibility: visible;
9376
+ opacity: 1;
9377
+ }
9378
+ .clay-color-slider .clay-range-input .form-control-range.focus ~ .clay-range-progress .clay-range-thumb, .clay-color-slider .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .clay-range-thumb, .c-prefers-focus .clay-color-slider .clay-range-input .form-control-range:focus ~ .clay-range-progress .clay-range-thumb {
9379
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9380
+ }
9381
+ .clay-color-slider .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip, .clay-color-slider .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .tooltip, .c-prefers-focus .clay-color-slider .clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip {
9382
+ visibility: visible;
9383
+ opacity: 1;
9384
+ }
9385
+ .clay-color-slider .clay-range-input .form-control-range.focus::-moz-range-thumb, .clay-color-slider .clay-range-input .form-control-range:focus-visible::-moz-range-thumb, .c-prefers-focus .clay-color-slider .clay-range-input .form-control-range:focus::-moz-range-thumb {
9386
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9387
+ }
9388
+ .clay-color-slider .clay-range-input .form-control-range.focus::-ms-thumb, .clay-color-slider .clay-range-input .form-control-range:focus-visible::-ms-thumb, .c-prefers-focus .clay-color-slider .clay-range-input .form-control-range:focus::-ms-thumb {
9389
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9390
+ }
9391
+ .clay-color-slider .clay-range-input .form-control-range.focus::-webkit-slider-thumb, .clay-color-slider .clay-range-input .form-control-range:focus-visible::-webkit-slider-thumb, .c-prefers-focus .clay-color-slider .clay-range-input .form-control-range:focus::-webkit-slider-thumb {
9392
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9393
+ }
9394
+
9395
+ .clay-color-slider-hue .clay-range-input {
9396
+ color: #26affd;
9397
+ }
9398
+ .clay-color-slider-hue .clay-range-input .clay-range-track {
9399
+ background-image: linear-gradient(270deg, #fc0d1b 0%, #fc22d6 18.23%, #1824fb 34.25%, #2bf6fd 50.28%, #2bfd2e 67.58%, #fcfd37 81.22%, #fc121b 100%);
9400
+ }
9401
+ .clay-color-slider-hue .clay-range-input .form-control-range {
9402
+ content: "";
9403
+ }
9404
+ .clay-color-slider-hue .clay-range-input .form-control-range::-moz-range-track {
9405
+ -moz-appearance: none;
9406
+ appearance: none;
9407
+ height: 100%;
9408
+ }
9409
+ .clay-color-slider-hue .clay-range-input .form-control-range::-ms-fill-lower {
9410
+ background-color: transparent;
9411
+ }
9412
+ .clay-color-slider-hue .clay-range-input .form-control-range::-ms-fill-upper {
9413
+ background-color: transparent;
9414
+ }
9415
+ .clay-color-slider-hue .clay-range-input .form-control-range::-ms-tooltip {
9416
+ display: none;
9417
+ }
9418
+ .clay-color-slider-hue .clay-range-input .form-control-range::-ms-track {
9419
+ background-color: transparent;
9420
+ border-color: transparent;
9421
+ border-style: solid;
9422
+ border-width: 0;
9423
+ color: transparent;
9424
+ height: 100%;
9425
+ }
9426
+ .clay-color-slider-hue .clay-range-input .form-control-range::-webkit-slider-runnable-track {
9427
+ -webkit-appearance: none;
9428
+ appearance: none;
9429
+ height: 100%;
9430
+ }
9431
+ .clay-color-slider-hue .clay-range-input .form-control-range:hover ~ .clay-range-progress .tooltip {
9432
+ visibility: visible;
9433
+ opacity: 1;
9434
+ }
9435
+ .clay-color-slider-hue .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip, .clay-color-slider-hue .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .tooltip, .c-prefers-focus .clay-color-slider-hue .clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip {
9436
+ visibility: visible;
9437
+ opacity: 1;
9438
+ }
9439
+ .clay-color-slider-alpha .clay-range-input {
9440
+ color: #000;
9441
+ }
9442
+ .clay-color-slider-alpha .clay-range-input .clay-range-track {
9443
+ background-color: #fff;
9444
+ background-image: linear-gradient(45deg, #e7e7ed 25%, transparent 25%), linear-gradient(-45deg, #e7e7ed 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e7e7ed 75%), linear-gradient(-45deg, transparent 75%, #e7e7ed 75%);
9445
+ background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
9446
+ background-size: 8px 8px;
9447
+ }
9448
+ .clay-color-slider-alpha .clay-range-input .form-control-range {
9449
+ background-image: linear-gradient(90deg, transparent 0%, currentcolor 100%);
9450
+ color: inherit;
9451
+ content: "";
9452
+ }
9453
+ .clay-color-slider-alpha .clay-range-input .form-control-range::-moz-range-track {
9454
+ -moz-appearance: none;
9455
+ appearance: none;
9456
+ height: 100%;
9457
+ }
9458
+ .clay-color-slider-alpha .clay-range-input .form-control-range::-ms-fill-lower {
9459
+ background-color: transparent;
9460
+ }
9461
+ .clay-color-slider-alpha .clay-range-input .form-control-range::-ms-fill-upper {
9462
+ background-color: transparent;
9463
+ }
9464
+ .clay-color-slider-alpha .clay-range-input .form-control-range::-ms-tooltip {
9465
+ display: none;
9466
+ }
9467
+ .clay-color-slider-alpha .clay-range-input .form-control-range::-ms-track {
9468
+ background-color: transparent;
9469
+ border-color: transparent;
9470
+ border-style: solid;
9471
+ border-width: 0;
9472
+ color: transparent;
9473
+ height: 100%;
9474
+ }
9475
+ .clay-color-slider-alpha .clay-range-input .form-control-range::-webkit-slider-runnable-track {
9476
+ -webkit-appearance: none;
9477
+ appearance: none;
9478
+ height: 100%;
9479
+ }
9480
+ .clay-color-slider-alpha .clay-range-input .form-control-range:hover ~ .clay-range-progress .tooltip {
9481
+ visibility: visible;
9482
+ opacity: 1;
9483
+ }
9484
+ .clay-color-slider-alpha .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip, .clay-color-slider-alpha .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .tooltip, .c-prefers-focus .clay-color-slider-alpha .clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip {
9485
+ visibility: visible;
9486
+ opacity: 1;
9487
+ }
9488
+ .clay-color-form-group {
9489
+ display: flex;
9490
+ align-items: center;
9491
+ margin-top: 0.25rem;
9492
+ margin-bottom: 1rem;
9493
+ }
9494
+ .clay-color-form-group .clay-range {
9495
+ flex-grow: 1;
9496
+ flex-shrink: 0;
9497
+ margin-right: 1rem;
9498
+ width: 144px;
9499
+ }
9500
+ .clay-color-form-group .form-control {
9501
+ padding-left: 0;
9502
+ padding-right: 10%;
9503
+ text-align: right;
9504
+ }
9505
+ .clay-color-form-group .input-group .input-group-inset-item-before {
9506
+ font-weight: 600;
9507
+ padding-left: 10%;
9508
+ padding-right: 0;
9509
+ min-width: 1.125rem;
9510
+ }
9511
+
9233
9512
  .form-group-sm .clay-color.input-group > .input-group-item > .input-group-inset-item-before, .clay-color.input-group-sm > .input-group-item > .input-group-inset-item-before {
9234
9513
  padding-left: 0.75rem;
9235
9514
  }
@@ -9245,10 +9524,26 @@ button.link-outline {
9245
9524
  width: 1.25rem;
9246
9525
  }
9247
9526
  .form-file {
9527
+ border-radius: 0.25rem;
9248
9528
  display: flex;
9249
9529
  position: relative;
9530
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
9531
+ }
9532
+ @media (prefers-reduced-motion: reduce) {
9533
+ .form-file {
9534
+ transition: none;
9535
+ }
9536
+ }
9537
+ .c-prefers-reduced-motion .form-file {
9538
+ transition: none;
9250
9539
  }
9251
9540
 
9541
+ .form-file:focus-within:has(input:focus) {
9542
+ background-color: #f0f5ff;
9543
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9544
+ outline: 0;
9545
+ z-index: 1;
9546
+ }
9252
9547
  .form-file-input {
9253
9548
  cursor: pointer;
9254
9549
  height: 100%;
@@ -9341,7 +9636,8 @@ label.custom-control-label {
9341
9636
  }
9342
9637
 
9343
9638
  .custom-control-label-text {
9344
- padding-left: 0.5rem;
9639
+ display: block;
9640
+ padding-left: calc( 1rem + 0.5rem );
9345
9641
  }
9346
9642
  .custom-control-label-text small,
9347
9643
  .custom-control-label-text .small {
@@ -10995,6 +11291,33 @@ label.custom-control-label {
10995
11291
  flex-grow: 0;
10996
11292
  width: auto;
10997
11293
  }
11294
+ .input-group-item-focusable {
11295
+ border-radius: 0.25rem;
11296
+ transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
11297
+ }
11298
+ @media (prefers-reduced-motion: reduce) {
11299
+ .input-group-item-focusable {
11300
+ transition: none;
11301
+ }
11302
+ }
11303
+ .c-prefers-reduced-motion .input-group-item-focusable {
11304
+ transition: none;
11305
+ }
11306
+
11307
+ .input-group-item-focusable:focus-within:has(input:focus) {
11308
+ background-color: #f0f5ff;
11309
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
11310
+ outline: 0;
11311
+ z-index: 1;
11312
+ }
11313
+ .input-group-item-focusable:focus-within:has(input:focus).input-group-prepend {
11314
+ border-top-right-radius: 0;
11315
+ border-bottom-right-radius: 0;
11316
+ }
11317
+ .input-group-item-focusable:focus-within:has(input:focus).input-group-append {
11318
+ border-top-left-radius: 0;
11319
+ border-bottom-left-radius: 0;
11320
+ }
10998
11321
  .input-group-text {
10999
11322
  align-items: center;
11000
11323
  background-color: #e7e7ed;
@@ -11622,7 +11945,7 @@ label.custom-control-label {
11622
11945
  color: #272833;
11623
11946
  }
11624
11947
  .list-group-title[href],
11625
- .list-group-title [href] {
11948
+ .list-group-title a[href] {
11626
11949
  color: #272833;
11627
11950
  max-width: 100%;
11628
11951
  border-radius: 1px;
@@ -11632,24 +11955,24 @@ label.custom-control-label {
11632
11955
  }
11633
11956
  @media (prefers-reduced-motion: reduce) {
11634
11957
  .list-group-title[href],
11635
- .list-group-title [href] {
11958
+ .list-group-title a[href] {
11636
11959
  transition: none;
11637
11960
  }
11638
11961
  }
11639
11962
  .c-prefers-reduced-motion .list-group-title[href],
11640
- .c-prefers-reduced-motion .list-group-title [href] {
11963
+ .c-prefers-reduced-motion .list-group-title a[href] {
11641
11964
  transition: none;
11642
11965
  }
11643
11966
 
11644
11967
  .list-group-title[href]:hover, .list-group-title[href].hover,
11645
- .list-group-title [href]:hover,
11646
- .list-group-title [href].hover {
11968
+ .list-group-title a[href]:hover,
11969
+ .list-group-title a[href].hover {
11647
11970
  color: #272833;
11648
11971
  }
11649
11972
  .list-group-title[href].focus, .list-group-title[href]:focus-visible, .c-prefers-focus .list-group-title[href]:focus,
11650
- .list-group-title [href].focus,
11651
- .list-group-title [href]:focus-visible,
11652
- .c-prefers-focus .list-group-title [href]:focus {
11973
+ .list-group-title a[href].focus,
11974
+ .list-group-title a[href]:focus-visible,
11975
+ .c-prefers-focus .list-group-title a[href]:focus {
11653
11976
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
11654
11977
  outline: 0;
11655
11978
  }
@@ -11658,7 +11981,7 @@ label.custom-control-label {
11658
11981
  margin-bottom: 0;
11659
11982
  }
11660
11983
  .list-group-subtitle[href],
11661
- .list-group-subtitle [href] {
11984
+ .list-group-subtitle a[href] {
11662
11985
  color: #6b6c7e;
11663
11986
  border-radius: 1px;
11664
11987
  display: inline-block;
@@ -11667,24 +11990,24 @@ label.custom-control-label {
11667
11990
  }
11668
11991
  @media (prefers-reduced-motion: reduce) {
11669
11992
  .list-group-subtitle[href],
11670
- .list-group-subtitle [href] {
11993
+ .list-group-subtitle a[href] {
11671
11994
  transition: none;
11672
11995
  }
11673
11996
  }
11674
11997
  .c-prefers-reduced-motion .list-group-subtitle[href],
11675
- .c-prefers-reduced-motion .list-group-subtitle [href] {
11998
+ .c-prefers-reduced-motion .list-group-subtitle a[href] {
11676
11999
  transition: none;
11677
12000
  }
11678
12001
 
11679
12002
  .list-group-subtitle[href]:hover, .list-group-subtitle[href].hover,
11680
- .list-group-subtitle [href]:hover,
11681
- .list-group-subtitle [href].hover {
12003
+ .list-group-subtitle a[href]:hover,
12004
+ .list-group-subtitle a[href].hover {
11682
12005
  color: #272833;
11683
12006
  }
11684
12007
  .list-group-subtitle[href].focus, .list-group-subtitle[href]:focus-visible, .c-prefers-focus .list-group-subtitle[href]:focus,
11685
- .list-group-subtitle [href].focus,
11686
- .list-group-subtitle [href]:focus-visible,
11687
- .c-prefers-focus .list-group-subtitle [href]:focus {
12008
+ .list-group-subtitle a[href].focus,
12009
+ .list-group-subtitle a[href]:focus-visible,
12010
+ .c-prefers-focus .list-group-subtitle a[href]:focus {
11688
12011
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
11689
12012
  outline: 0;
11690
12013
  }
@@ -11693,7 +12016,7 @@ label.custom-control-label {
11693
12016
  margin-bottom: 0;
11694
12017
  }
11695
12018
  .list-group-text[href],
11696
- .list-group-text [href] {
12019
+ .list-group-text a[href] {
11697
12020
  color: #272833;
11698
12021
  border-radius: 1px;
11699
12022
  display: inline-block;
@@ -11702,24 +12025,24 @@ label.custom-control-label {
11702
12025
  }
11703
12026
  @media (prefers-reduced-motion: reduce) {
11704
12027
  .list-group-text[href],
11705
- .list-group-text [href] {
12028
+ .list-group-text a[href] {
11706
12029
  transition: none;
11707
12030
  }
11708
12031
  }
11709
12032
  .c-prefers-reduced-motion .list-group-text[href],
11710
- .c-prefers-reduced-motion .list-group-text [href] {
12033
+ .c-prefers-reduced-motion .list-group-text a[href] {
11711
12034
  transition: none;
11712
12035
  }
11713
12036
 
11714
12037
  .list-group-text[href]:hover, .list-group-text[href].hover,
11715
- .list-group-text [href]:hover,
11716
- .list-group-text [href].hover {
12038
+ .list-group-text a[href]:hover,
12039
+ .list-group-text a[href].hover {
11717
12040
  color: #272833;
11718
12041
  }
11719
12042
  .list-group-text[href].focus, .list-group-text[href]:focus-visible, .c-prefers-focus .list-group-text[href]:focus,
11720
- .list-group-text [href].focus,
11721
- .list-group-text [href]:focus-visible,
11722
- .c-prefers-focus .list-group-text [href]:focus {
12043
+ .list-group-text a[href].focus,
12044
+ .list-group-text a[href]:focus-visible,
12045
+ .c-prefers-focus .list-group-text a[href]:focus {
11723
12046
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
11724
12047
  outline: 0;
11725
12048
  }
@@ -11729,7 +12052,7 @@ label.custom-control-label {
11729
12052
  margin-top: 0.5rem;
11730
12053
  }
11731
12054
  .list-group-subtext[href],
11732
- .list-group-subtext [href] {
12055
+ .list-group-subtext a[href] {
11733
12056
  color: #6b6c7e;
11734
12057
  border-radius: 1px;
11735
12058
  display: inline-block;
@@ -11738,24 +12061,24 @@ label.custom-control-label {
11738
12061
  }
11739
12062
  @media (prefers-reduced-motion: reduce) {
11740
12063
  .list-group-subtext[href],
11741
- .list-group-subtext [href] {
12064
+ .list-group-subtext a[href] {
11742
12065
  transition: none;
11743
12066
  }
11744
12067
  }
11745
12068
  .c-prefers-reduced-motion .list-group-subtext[href],
11746
- .c-prefers-reduced-motion .list-group-subtext [href] {
12069
+ .c-prefers-reduced-motion .list-group-subtext a[href] {
11747
12070
  transition: none;
11748
12071
  }
11749
12072
 
11750
12073
  .list-group-subtext[href]:hover, .list-group-subtext[href].hover,
11751
- .list-group-subtext [href]:hover,
11752
- .list-group-subtext [href].hover {
12074
+ .list-group-subtext a[href]:hover,
12075
+ .list-group-subtext a[href].hover {
11753
12076
  color: #272833;
11754
12077
  }
11755
12078
  .list-group-subtext[href].focus, .list-group-subtext[href]:focus-visible, .c-prefers-focus .list-group-subtext[href]:focus,
11756
- .list-group-subtext [href].focus,
11757
- .list-group-subtext [href]:focus-visible,
11758
- .c-prefers-focus .list-group-subtext [href]:focus {
12079
+ .list-group-subtext a[href].focus,
12080
+ .list-group-subtext a[href]:focus-visible,
12081
+ .c-prefers-focus .list-group-subtext a[href]:focus {
11759
12082
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
11760
12083
  outline: 0;
11761
12084
  }
@@ -19528,7 +19851,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
19528
19851
  word-wrap: break-word;
19529
19852
  }
19530
19853
  .sidebar-header .component-title[href],
19531
- .sidebar-header .component-title [href] {
19854
+ .sidebar-header .component-title a[href] {
19532
19855
  color: #272833;
19533
19856
  }
19534
19857
  .sidebar-header .component-subtitle {
@@ -19645,7 +19968,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
19645
19968
  font-size: 1rem;
19646
19969
  }
19647
19970
  .sidebar-light .sidebar-list-group .list-group-title[href],
19648
- .sidebar-light .sidebar-list-group .list-group-title [href] {
19971
+ .sidebar-light .sidebar-list-group .list-group-title a[href] {
19649
19972
  color: #272833;
19650
19973
  }
19651
19974
  .sidebar-light .sidebar-panel {
@@ -19655,7 +19978,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
19655
19978
  color: #6b6c7e;
19656
19979
  }
19657
19980
  .sidebar-light .sidebar-dd[href],
19658
- .sidebar-light .sidebar-dd [href] {
19981
+ .sidebar-light .sidebar-dd a[href] {
19659
19982
  color: #272833;
19660
19983
  }
19661
19984
  .sidebar-light .panel-unstyled .panel-header.panel-header-link.focus, .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus-visible, .c-prefers-focus .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
@@ -19715,14 +20038,14 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
19715
20038
  color: inherit;
19716
20039
  }
19717
20040
  .sidebar-dark .sidebar-header .component-title[href],
19718
- .sidebar-dark .sidebar-header .component-title [href] {
20041
+ .sidebar-dark .sidebar-header .component-title a[href] {
19719
20042
  color: inherit;
19720
20043
  }
19721
20044
  .sidebar-dark .sidebar-header .component-subtitle {
19722
20045
  color: inherit;
19723
20046
  }
19724
20047
  .sidebar-dark .sidebar-header .component-subtitle[href],
19725
- .sidebar-dark .sidebar-header .component-subtitle [href] {
20048
+ .sidebar-dark .sidebar-header .component-subtitle a[href] {
19726
20049
  color: inherit;
19727
20050
  }
19728
20051
  .sidebar-dark .nav-nested .nav-link {
@@ -19777,14 +20100,14 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
19777
20100
  color: inherit;
19778
20101
  }
19779
20102
  .sidebar-dark-l2 .sidebar-header .component-title[href],
19780
- .sidebar-dark-l2 .sidebar-header .component-title [href] {
20103
+ .sidebar-dark-l2 .sidebar-header .component-title a[href] {
19781
20104
  color: inherit;
19782
20105
  }
19783
20106
  .sidebar-dark-l2 .sidebar-header .component-subtitle {
19784
20107
  color: inherit;
19785
20108
  }
19786
20109
  .sidebar-dark-l2 .sidebar-header .component-subtitle[href],
19787
- .sidebar-dark-l2 .sidebar-header .component-subtitle [href] {
20110
+ .sidebar-dark-l2 .sidebar-header .component-subtitle a[href] {
19788
20111
  color: inherit;
19789
20112
  }
19790
20113
  .sidebar-dark-l2 .nav-nested .nav-link {
@@ -20016,24 +20339,24 @@ caption {
20016
20339
  border-top-width: 0px;
20017
20340
  vertical-align: bottom;
20018
20341
  }
20019
- .table thead th [href] {
20342
+ .table thead th a[href] {
20020
20343
  border-radius: 1px;
20021
20344
  color: #6b6c7e;
20022
20345
  transition: box-shadow 0.15s ease-in-out;
20023
20346
  }
20024
20347
  @media (prefers-reduced-motion: reduce) {
20025
- .table thead th [href] {
20348
+ .table thead th a[href] {
20026
20349
  transition: none;
20027
20350
  }
20028
20351
  }
20029
- .c-prefers-reduced-motion .table thead th [href] {
20352
+ .c-prefers-reduced-motion .table thead th a[href] {
20030
20353
  transition: none;
20031
20354
  }
20032
20355
 
20033
- .table thead th [href]:hover, .table thead th [href].hover {
20356
+ .table thead th a[href]:hover, .table thead th a[href].hover {
20034
20357
  color: #272833;
20035
20358
  }
20036
- .table thead th [href].focus, .table thead th [href]:focus-visible, .c-prefers-focus .table thead th [href]:focus {
20359
+ .table thead th a[href].focus, .table thead th a[href]:focus-visible, .c-prefers-focus .table thead th a[href]:focus {
20037
20360
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
20038
20361
  outline: 0;
20039
20362
  }
@@ -20118,8 +20441,8 @@ caption {
20118
20441
  background-color: #fff;
20119
20442
  cursor: not-allowed;
20120
20443
  }
20121
- .table .table-disabled th [href],
20122
- .table .table-disabled td [href] {
20444
+ .table .table-disabled th a[href],
20445
+ .table .table-disabled td a[href] {
20123
20446
  color: #a7a9bc;
20124
20447
  pointer-events: none;
20125
20448
  }
@@ -20140,6 +20463,14 @@ caption {
20140
20463
  .table .autofit-col:last-child {
20141
20464
  padding-right: 0;
20142
20465
  }
20466
+ .table .component-drag {
20467
+ font-size: 0.875rem;
20468
+ height: 1rem;
20469
+ width: 1rem;
20470
+ }
20471
+ .table .component-drag.focus, .table .component-drag:focus-visible, .c-prefers-focus .table .component-drag:focus {
20472
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
20473
+ }
20143
20474
  .table .custom-control,
20144
20475
  .table .form-check {
20145
20476
  margin-bottom: 0;
@@ -20363,11 +20694,11 @@ caption {
20363
20694
  color: #fff;
20364
20695
  }
20365
20696
  .table .table-dark .table-title[href],
20366
- .table .table-dark .table-title [href],
20697
+ .table .table-dark .table-title a[href],
20367
20698
  .table .table-dark > th .table-title[href],
20368
- .table .table-dark > th .table-title [href],
20699
+ .table .table-dark > th .table-title a[href],
20369
20700
  .table .table-dark > td .table-title[href],
20370
- .table .table-dark > td .table-title [href] {
20701
+ .table .table-dark > td .table-title a[href] {
20371
20702
  color: inherit;
20372
20703
  }
20373
20704
  .table .table-dark th,
@@ -20429,7 +20760,7 @@ caption {
20429
20760
  color: #272833;
20430
20761
  }
20431
20762
  .table-title[href],
20432
- .table-title [href] {
20763
+ .table-title a[href] {
20433
20764
  color: #272833;
20434
20765
  border-radius: 1px;
20435
20766
  display: inline-flex;
@@ -20438,24 +20769,24 @@ caption {
20438
20769
  }
20439
20770
  @media (prefers-reduced-motion: reduce) {
20440
20771
  .table-title[href],
20441
- .table-title [href] {
20772
+ .table-title a[href] {
20442
20773
  transition: none;
20443
20774
  }
20444
20775
  }
20445
20776
  .c-prefers-reduced-motion .table-title[href],
20446
- .c-prefers-reduced-motion .table-title [href] {
20777
+ .c-prefers-reduced-motion .table-title a[href] {
20447
20778
  transition: none;
20448
20779
  }
20449
20780
 
20450
20781
  .table-title[href]:hover, .table-title[href].hover,
20451
- .table-title [href]:hover,
20452
- .table-title [href].hover {
20782
+ .table-title a[href]:hover,
20783
+ .table-title a[href].hover {
20453
20784
  color: #272833;
20454
20785
  }
20455
20786
  .table-title[href].focus, .table-title[href]:focus-visible, .c-prefers-focus .table-title[href]:focus,
20456
- .table-title [href].focus,
20457
- .table-title [href]:focus-visible,
20458
- .c-prefers-focus .table-title [href]:focus {
20787
+ .table-title a[href].focus,
20788
+ .table-title a[href]:focus-visible,
20789
+ .c-prefers-focus .table-title a[href]:focus {
20459
20790
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
20460
20791
  outline: 0;
20461
20792
  }
@@ -20706,8 +21037,8 @@ caption {
20706
21037
  background-color: #fff;
20707
21038
  color: #a7a9bc;
20708
21039
  }
20709
- .table-list .table-disabled th [href],
20710
- .table-list .table-disabled td [href] {
21040
+ .table-list .table-disabled th a[href],
21041
+ .table-list .table-disabled td a[href] {
20711
21042
  color: #a7a9bc;
20712
21043
  pointer-events: none;
20713
21044
  }
@@ -20786,7 +21117,7 @@ caption {
20786
21117
  color: #272833;
20787
21118
  }
20788
21119
  .table-list-title[href],
20789
- .table-list-title [href] {
21120
+ .table-list-title a[href] {
20790
21121
  color: #272833;
20791
21122
  border-radius: 1px;
20792
21123
  display: inline-flex;
@@ -20795,24 +21126,24 @@ caption {
20795
21126
  }
20796
21127
  @media (prefers-reduced-motion: reduce) {
20797
21128
  .table-list-title[href],
20798
- .table-list-title [href] {
21129
+ .table-list-title a[href] {
20799
21130
  transition: none;
20800
21131
  }
20801
21132
  }
20802
21133
  .c-prefers-reduced-motion .table-list-title[href],
20803
- .c-prefers-reduced-motion .table-list-title [href] {
21134
+ .c-prefers-reduced-motion .table-list-title a[href] {
20804
21135
  transition: none;
20805
21136
  }
20806
21137
 
20807
21138
  .table-list-title[href]:hover, .table-list-title[href].hover,
20808
- .table-list-title [href]:hover,
20809
- .table-list-title [href].hover {
21139
+ .table-list-title a[href]:hover,
21140
+ .table-list-title a[href].hover {
20810
21141
  color: #272833;
20811
21142
  }
20812
21143
  .table-list-title[href].focus, .table-list-title[href]:focus-visible, .c-prefers-focus .table-list-title[href]:focus,
20813
- .table-list-title [href].focus,
20814
- .table-list-title [href]:focus-visible,
20815
- .c-prefers-focus .table-list-title [href]:focus {
21144
+ .table-list-title a[href].focus,
21145
+ .table-list-title a[href]:focus-visible,
21146
+ .c-prefers-focus .table-list-title a[href]:focus {
20816
21147
  box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
20817
21148
  outline: 0;
20818
21149
  }
@@ -20971,6 +21302,45 @@ caption {
20971
21302
  vertical-align: top;
20972
21303
  }
20973
21304
 
21305
+ .table-nested-rows th:first-child,
21306
+ .table-nested-rows td:first-child,
21307
+ .table-nested-rows .table-column-start {
21308
+ padding-left: 1.25rem;
21309
+ }
21310
+ .table-nested-rows th:last-child,
21311
+ .table-nested-rows td:last-child,
21312
+ .table-nested-rows .table-column-end {
21313
+ padding-right: 1.25rem;
21314
+ }
21315
+ .table-nested-rows .autofit-col {
21316
+ padding-left: 0.125rem;
21317
+ padding-right: 0.125rem;
21318
+ min-width: 1.75rem;
21319
+ }
21320
+ .table-nested-rows .autofit-col-checkbox {
21321
+ padding-right: 0.625rem;
21322
+ }
21323
+ .table-nested-rows .autofit-col-icon {
21324
+ padding-right: 0.625rem;
21325
+ }
21326
+ .table-nested-rows .component-drag {
21327
+ left: 2px;
21328
+ position: absolute;
21329
+ top: 50%;
21330
+ transform: translateY(-50%);
21331
+ }
21332
+ .table-nested-rows .component-toggle {
21333
+ font-size: 0.875rem;
21334
+ height: 1.5rem;
21335
+ width: 1.5rem;
21336
+ }
21337
+ .table-nested-rows .component-action.show .collapse-icon-closed {
21338
+ display: none;
21339
+ }
21340
+ .table-nested-rows .component-action:not(.show) .collapse-icon-open {
21341
+ display: none;
21342
+ }
21343
+
20974
21344
  .show-quick-actions-on-hover tr:not(.table-active):not(.table-disabled):hover .quick-action-menu {
20975
21345
  display: flex;
20976
21346
  }