@clayui/css 3.91.0 → 3.92.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 (54) hide show
  1. package/lib/css/atlas.css +525 -178
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +239 -15
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +413 -93
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/icons.svg +1 -1
  8. package/package.json +2 -2
  9. package/src/scss/_license-text.scss +1 -1
  10. package/src/scss/atlas/variables/_cards.scss +3 -4
  11. package/src/scss/atlas/variables/_clay-color.scss +1 -1
  12. package/src/scss/atlas/variables/_globals.scss +2 -2
  13. package/src/scss/atlas/variables/_navs.scss +6 -10
  14. package/src/scss/atlas/variables/_panels.scss +1 -1
  15. package/src/scss/atlas/variables/_popovers.scss +2 -1
  16. package/src/scss/atlas/variables/_sheets.scss +1 -1
  17. package/src/scss/atlas/variables/_sidebar.scss +1 -1
  18. package/src/scss/atlas/variables/_time.scss +1 -1
  19. package/src/scss/cadmin/components/_badges.scss +5 -1
  20. package/src/scss/cadmin/components/_multi-step-nav.scss +39 -0
  21. package/src/scss/cadmin/components/_treeview.scss +18 -16
  22. package/src/scss/cadmin/components/_utilities-functional-important.scss +6 -0
  23. package/src/scss/cadmin/variables/_badges.scss +5 -0
  24. package/src/scss/cadmin/variables/_buttons.scss +14 -1
  25. package/src/scss/cadmin/variables/_clay-color.scss +1 -1
  26. package/src/scss/cadmin/variables/_date-picker.scss +8 -0
  27. package/src/scss/cadmin/variables/_globals.scss +2 -2
  28. package/src/scss/cadmin/variables/_multi-step-nav.scss +23 -0
  29. package/src/scss/cadmin/variables/_navs.scss +1 -2
  30. package/src/scss/cadmin/variables/_panels.scss +1 -1
  31. package/src/scss/cadmin/variables/_resizer.scss +2 -2
  32. package/src/scss/cadmin/variables/_sheets.scss +1 -1
  33. package/src/scss/cadmin/variables/_sidebar.scss +1 -1
  34. package/src/scss/cadmin/variables/_tbar.scss +2 -4
  35. package/src/scss/cadmin/variables/_time.scss +1 -1
  36. package/src/scss/cadmin/variables/_treeview.scss +21 -8
  37. package/src/scss/cadmin/variables/_utilities.scss +12 -1
  38. package/src/scss/components/_badges.scss +5 -1
  39. package/src/scss/components/_multi-step-nav.scss +42 -0
  40. package/src/scss/components/_navs.scss +0 -12
  41. package/src/scss/components/_treeview.scss +18 -12
  42. package/src/scss/components/_utilities-functional-important.scss +6 -0
  43. package/src/scss/mixins/_globals.scss +6 -0
  44. package/src/scss/mixins/_nav.scss +16 -0
  45. package/src/scss/mixins/_transition.scss +6 -0
  46. package/src/scss/variables/_badges.scss +5 -0
  47. package/src/scss/variables/_buttons.scss +14 -1
  48. package/src/scss/variables/_date-picker.scss +2 -2
  49. package/src/scss/variables/_multi-step-nav.scss +23 -0
  50. package/src/scss/variables/_navs.scss +38 -5
  51. package/src/scss/variables/_resizer.scss +2 -2
  52. package/src/scss/variables/_tbar.scss +2 -2
  53. package/src/scss/variables/_treeview.scss +21 -8
  54. package/src/scss/variables/_utilities.scss +11 -0
package/lib/css/atlas.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.91.0
3
+ * Clay 3.92.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>
@@ -666,6 +666,9 @@ pre code {
666
666
  transition: none;
667
667
  }
668
668
  }
669
+ .c-prefers-reduced-motion .carousel-item {
670
+ transition: none;
671
+ }
669
672
 
670
673
  .carousel-item.active,
671
674
  .carousel-item-next,
@@ -706,6 +709,10 @@ pre code {
706
709
  transition: none;
707
710
  }
708
711
  }
712
+ .c-prefers-reduced-motion .carousel-fade .active.carousel-item-left,
713
+ .c-prefers-reduced-motion .carousel-fade .active.carousel-item-right {
714
+ transition: none;
715
+ }
709
716
 
710
717
  .carousel-control-prev,
711
718
  .carousel-control-next {
@@ -728,6 +735,11 @@ pre code {
728
735
  transition: none;
729
736
  }
730
737
  }
738
+ .c-prefers-reduced-motion .carousel-control-prev,
739
+ .c-prefers-reduced-motion .carousel-control-next {
740
+ transition: none;
741
+ }
742
+
731
743
  .carousel-control-prev:hover, .carousel-control-prev:focus,
732
744
  .carousel-control-next:hover,
733
745
  .carousel-control-next:focus {
@@ -795,6 +807,10 @@ pre code {
795
807
  transition: none;
796
808
  }
797
809
  }
810
+ .c-prefers-reduced-motion .carousel-indicators li {
811
+ transition: none;
812
+ }
813
+
798
814
  .carousel-indicators .active {
799
815
  opacity: 1;
800
816
  }
@@ -1174,16 +1190,20 @@ button.collapse-icon .c-inner {
1174
1190
  transition: none;
1175
1191
  }
1176
1192
  }
1193
+ .c-prefers-reduced-motion .btn {
1194
+ transition: none;
1195
+ }
1196
+
1177
1197
  .btn:hover {
1178
1198
  color: #272833;
1179
1199
  text-decoration: none;
1180
1200
  }
1181
1201
  .btn:focus, .btn.focus {
1182
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
1202
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
1183
1203
  outline: 0;
1184
1204
  }
1185
1205
  .btn:active:focus {
1186
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
1206
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
1187
1207
  }
1188
1208
  .btn:disabled, .btn.disabled {
1189
1209
  cursor: not-allowed;
@@ -1240,7 +1260,7 @@ fieldset:disabled a.btn:active {
1240
1260
  }
1241
1261
  .btn-xs .inline-item {
1242
1262
  font-size: inherit;
1243
- margin-top: -3px;
1263
+ margin-top: -0.16em;
1244
1264
  }
1245
1265
  .btn-xs .inline-item-before {
1246
1266
  margin-right: 0.25rem;
@@ -1708,17 +1728,30 @@ input[type=button].btn-block {
1708
1728
  text-decoration: underline;
1709
1729
  }
1710
1730
  .btn-link:focus, .focus.btn-link {
1711
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
1731
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
1712
1732
  text-decoration: none;
1713
1733
  }
1714
1734
  .btn-link:active:focus {
1715
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
1735
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
1716
1736
  }
1717
1737
  .btn-link:disabled, .disabled.btn-link {
1718
1738
  box-shadow: none;
1719
1739
  color: #0b5fff;
1720
1740
  text-decoration: none;
1721
1741
  }
1742
+ .btn-beta {
1743
+ background-color: #f7f8f9;
1744
+ color: #294f98;
1745
+ text-transform: uppercase;
1746
+ }
1747
+ .btn-beta:hover {
1748
+ background-color: #f1f2f5;
1749
+ color: #294f98;
1750
+ }
1751
+ .btn-beta:focus, .focus.btn-beta {
1752
+ background-color: #f1f2f5;
1753
+ color: #294f98;
1754
+ }
1722
1755
  .btn-outline-primary {
1723
1756
  border-color: #0b5fff;
1724
1757
  color: #0b5fff;
@@ -2017,10 +2050,10 @@ input[type=button].btn-block {
2017
2050
  z-index: 10;
2018
2051
  }
2019
2052
  .c-horizontal-resizer:hover {
2020
- background-color: #80acff;
2053
+ background-color: #528eff;
2021
2054
  }
2022
2055
  .c-horizontal-resizer:focus {
2023
- background-color: #80acff;
2056
+ background-color: #528eff;
2024
2057
  }
2025
2058
 
2026
2059
  .fade {
@@ -2031,6 +2064,10 @@ input[type=button].btn-block {
2031
2064
  transition: none;
2032
2065
  }
2033
2066
  }
2067
+ .c-prefers-reduced-motion .fade {
2068
+ transition: none;
2069
+ }
2070
+
2034
2071
  .fade:not(.show) {
2035
2072
  opacity: 0;
2036
2073
  }
@@ -2050,6 +2087,9 @@ input[type=button].btn-block {
2050
2087
  transition: none;
2051
2088
  }
2052
2089
  }
2090
+ .c-prefers-reduced-motion .collapsing {
2091
+ transition: none;
2092
+ }
2053
2093
 
2054
2094
  .container {
2055
2095
  margin-left: auto;
@@ -4046,6 +4086,10 @@ input[type=button].btn-block {
4046
4086
  transition: none;
4047
4087
  }
4048
4088
  }
4089
+ .c-prefers-reduced-motion .badge {
4090
+ transition: none;
4091
+ }
4092
+
4049
4093
  .badge:empty {
4050
4094
  display: none;
4051
4095
  }
@@ -4053,7 +4097,7 @@ input[type=button].btn-block {
4053
4097
  text-decoration: none;
4054
4098
  }
4055
4099
  .badge[href].focus, .badge[href]:focus, .badge[type].focus, .badge[type]:focus {
4056
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
4100
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
4057
4101
  outline: 0;
4058
4102
  }
4059
4103
  .badge a {
@@ -4280,6 +4324,11 @@ input[type=button].btn-block {
4280
4324
  color: #fff;
4281
4325
  box-shadow: 0 0 0 0.2rem rgba(39, 40, 51, 0.5);
4282
4326
  }
4327
+ .badge-beta {
4328
+ background-color: #f7f8f9;
4329
+ color: #294f98;
4330
+ text-transform: uppercase;
4331
+ }
4283
4332
  .breadcrumb {
4284
4333
  background-color: transparent;
4285
4334
  border-radius: 0.25rem;
@@ -4303,6 +4352,10 @@ input[type=button].btn-block {
4303
4352
  transition: none;
4304
4353
  }
4305
4354
  }
4355
+ .c-prefers-reduced-motion .breadcrumb-link {
4356
+ transition: none;
4357
+ }
4358
+
4306
4359
  .breadcrumb-link:hover, .breadcrumb-link.hover {
4307
4360
  color: #6b6c7e;
4308
4361
  text-decoration: underline;
@@ -4310,7 +4363,7 @@ input[type=button].btn-block {
4310
4363
  .breadcrumb-link.focus, .breadcrumb-link:focus {
4311
4364
  color: #6b6c7e;
4312
4365
  text-decoration: underline;
4313
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
4366
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
4314
4367
  outline: 0;
4315
4368
  }
4316
4369
  .breadcrumb-item {
@@ -4600,6 +4653,10 @@ input[type=button].btn-block {
4600
4653
  transition: none;
4601
4654
  }
4602
4655
  }
4656
+ .c-prefers-reduced-motion .label {
4657
+ transition: none;
4658
+ }
4659
+
4603
4660
  .label:disabled, .label.disabled {
4604
4661
  box-shadow: none;
4605
4662
  }
@@ -4612,7 +4669,7 @@ input[type=button].btn-block {
4612
4669
  }
4613
4670
  .label[href].focus, .label[href]:focus, .label[type].focus, .label[type]:focus, .label[tabindex].focus, .label[tabindex]:focus {
4614
4671
  text-decoration: underline;
4615
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
4672
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
4616
4673
  }
4617
4674
  .label a,
4618
4675
  .label .btn-unstyled {
@@ -6111,12 +6168,16 @@ input[type=button].btn-block {
6111
6168
  transition: none;
6112
6169
  }
6113
6170
  }
6171
+ .c-prefers-reduced-motion .card-interactive {
6172
+ transition: none;
6173
+ }
6174
+
6114
6175
  .card-interactive:hover, .card-interactive.hover {
6115
6176
  background-color: #f7f8f9;
6116
6177
  text-decoration: none;
6117
6178
  }
6118
6179
  .card-interactive:focus, .card-interactive.focus {
6119
- box-shadow: 0 0 0 2px #fff, 0 0 0 4px #719aff;
6180
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
6120
6181
  }
6121
6182
  .card-interactive:active, .card-interactive.active {
6122
6183
  background-color: #f1f2f5;
@@ -6136,6 +6197,10 @@ input[type=button].btn-block {
6136
6197
  transition: none;
6137
6198
  }
6138
6199
  }
6200
+ .c-prefers-reduced-motion .card-interactive::after {
6201
+ transition: none;
6202
+ }
6203
+
6139
6204
  .card-interactive:hover::after, .card-interactive.hover::after {
6140
6205
  height: 4px;
6141
6206
  }
@@ -6173,12 +6238,12 @@ input[type=button].btn-block {
6173
6238
  .card-interactive-secondary:hover, .card-interactive-secondary.hover {
6174
6239
  background-color: #fff;
6175
6240
  border-color: transparent;
6176
- box-shadow: 0 0 0 2px #719aff;
6241
+ box-shadow: 0 0 0 2px #528eff;
6177
6242
  color: #272833;
6178
6243
  }
6179
6244
  .card-interactive-secondary:focus, .card-interactive-secondary.focus {
6180
6245
  border-color: transparent;
6181
- box-shadow: 0 0 0 2px #719aff;
6246
+ box-shadow: 0 0 0 2px #528eff;
6182
6247
  }
6183
6248
  .card-interactive-secondary:active, .card-interactive-secondary.active {
6184
6249
  background-color: #fff;
@@ -6412,7 +6477,7 @@ input[type=button].btn-block {
6412
6477
  background-color: #f0f5ff;
6413
6478
  color: #272833;
6414
6479
  text-decoration: none;
6415
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
6480
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
6416
6481
  outline: 0;
6417
6482
  }
6418
6483
  .dropdown-item:active {
@@ -6441,7 +6506,7 @@ input[type=button].btn-block {
6441
6506
  color: #272833;
6442
6507
  }
6443
6508
  .dropdown-item.btn:not([disabled]):not(.disabled):active:focus, .dropdown-item.btn:not([disabled]):not(.disabled).active:focus {
6444
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
6509
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
6445
6510
  }
6446
6511
  .dropdown-item:disabled, .dropdown-item.disabled {
6447
6512
  background-color: transparent;
@@ -7102,6 +7167,9 @@ input[type=button].btn-block {
7102
7167
  transition: none;
7103
7168
  }
7104
7169
  }
7170
+ .c-prefers-reduced-motion .drilldown-inner {
7171
+ transition: none;
7172
+ }
7105
7173
 
7106
7174
  .drilldown-item {
7107
7175
  display: none;
@@ -7351,6 +7419,10 @@ fieldset[disabled] label .form-control {
7351
7419
  transition: none;
7352
7420
  }
7353
7421
  }
7422
+ .c-prefers-reduced-motion .form-control {
7423
+ transition: none;
7424
+ }
7425
+
7354
7426
  .form-control::placeholder {
7355
7427
  color: #6b6c7e;
7356
7428
  opacity: 1;
@@ -7358,7 +7430,7 @@ fieldset[disabled] label .form-control {
7358
7430
  .form-control:focus, .form-control.focus {
7359
7431
  background-color: #f0f5ff;
7360
7432
  border-color: #80acff;
7361
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
7433
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
7362
7434
  color: #272833;
7363
7435
  outline: 0;
7364
7436
  }
@@ -7731,7 +7803,7 @@ textarea.form-control-plaintext,
7731
7803
  box-shadow: none;
7732
7804
  }
7733
7805
  .form-control[type=range]:focus::-webkit-slider-thumb {
7734
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
7806
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
7735
7807
  }
7736
7808
  .form-control[type=range]::-webkit-slider-thumb {
7737
7809
  border-radius: 100px;
@@ -7821,6 +7893,10 @@ textarea.form-control-plaintext,
7821
7893
  transition: none;
7822
7894
  }
7823
7895
  }
7896
+ .c-prefers-reduced-motion .form-control-plaintext[readonly] {
7897
+ transition: none;
7898
+ }
7899
+
7824
7900
  .form-control-plaintext[readonly]:focus, .form-control-plaintext[readonly].focus {
7825
7901
  box-shadow: none;
7826
7902
  border-color: #80acff;
@@ -8100,12 +8176,16 @@ textarea.form-control-lg,
8100
8176
  transition: none;
8101
8177
  }
8102
8178
  }
8179
+ .c-prefers-reduced-motion .c-link {
8180
+ transition: none;
8181
+ }
8182
+
8103
8183
  .c-link:hover, .c-link.hover {
8104
8184
  text-decoration: none;
8105
8185
  }
8106
8186
  .c-link.focus, .c-link:focus {
8107
8187
  border-radius: 1px;
8108
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8188
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8109
8189
  outline: 0;
8110
8190
  }
8111
8191
  .c-link.text-secondary {
@@ -8134,12 +8214,16 @@ textarea.form-control-lg,
8134
8214
  transition: none;
8135
8215
  }
8136
8216
  }
8217
+ .c-prefers-reduced-motion .component-link {
8218
+ transition: none;
8219
+ }
8220
+
8137
8221
  .component-link:hover, .component-link.hover {
8138
8222
  color: #484955;
8139
8223
  }
8140
8224
  .component-link.focus, .component-link:focus {
8141
8225
  color: #484955;
8142
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8226
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8143
8227
  outline: 0;
8144
8228
  }
8145
8229
  .single-link {
@@ -8156,13 +8240,17 @@ textarea.form-control-lg,
8156
8240
  transition: none;
8157
8241
  }
8158
8242
  }
8243
+ .c-prefers-reduced-motion .link-primary {
8244
+ transition: none;
8245
+ }
8246
+
8159
8247
  .link-primary:hover, .link-primary.hover {
8160
8248
  color: #0041be;
8161
8249
  background-color: #f0f5ff;
8162
8250
  }
8163
8251
  .link-primary.focus, .link-primary:focus {
8164
8252
  color: #0041be;
8165
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8253
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8166
8254
  outline: 0;
8167
8255
  }
8168
8256
  .link-secondary {
@@ -8175,13 +8263,17 @@ textarea.form-control-lg,
8175
8263
  transition: none;
8176
8264
  }
8177
8265
  }
8266
+ .c-prefers-reduced-motion .link-secondary {
8267
+ transition: none;
8268
+ }
8269
+
8178
8270
  .link-secondary:hover, .link-secondary.hover {
8179
8271
  color: #272833;
8180
8272
  background-color: #f1f2f5;
8181
8273
  }
8182
8274
  .link-secondary.focus, .link-secondary:focus {
8183
8275
  color: #272833;
8184
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8276
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8185
8277
  outline: 0;
8186
8278
  }
8187
8279
  button.link-outline {
@@ -8212,11 +8304,15 @@ button.link-outline {
8212
8304
  transition: none;
8213
8305
  }
8214
8306
  }
8307
+ .c-prefers-reduced-motion .link-outline {
8308
+ transition: none;
8309
+ }
8310
+
8215
8311
  .link-outline:hover, .link-outline.hover {
8216
8312
  text-decoration: none;
8217
8313
  }
8218
8314
  .link-outline.focus, .link-outline:focus {
8219
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8315
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8220
8316
  outline: 0;
8221
8317
  }
8222
8318
  .link-outline:disabled, .link-outline.disabled {
@@ -8245,7 +8341,7 @@ button.link-outline {
8245
8341
  }
8246
8342
  .link-outline-primary.focus, .link-outline-primary:focus {
8247
8343
  background-color: #f0f5ff;
8248
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8344
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8249
8345
  color: #0b5fff;
8250
8346
  }
8251
8347
  .link-outline-primary:active {
@@ -8277,7 +8373,7 @@ button.link-outline {
8277
8373
  }
8278
8374
  .link-outline-secondary.focus, .link-outline-secondary:focus {
8279
8375
  background-color: rgba(39, 40, 51, 0.03);
8280
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8376
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8281
8377
  color: #272833;
8282
8378
  }
8283
8379
  .link-outline-secondary:active {
@@ -8345,6 +8441,11 @@ button.link-outline {
8345
8441
  transition: none;
8346
8442
  }
8347
8443
  }
8444
+ .c-prefers-reduced-motion .component-title[href],
8445
+ .c-prefers-reduced-motion .component-title [href] {
8446
+ transition: none;
8447
+ }
8448
+
8348
8449
  .component-title[href]:hover, .component-title[href].hover,
8349
8450
  .component-title [href]:hover,
8350
8451
  .component-title [href].hover {
@@ -8354,7 +8455,7 @@ button.link-outline {
8354
8455
  .component-title [href].focus,
8355
8456
  .component-title [href]:focus {
8356
8457
  color: #060608;
8357
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8458
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8358
8459
  outline: 0;
8359
8460
  }
8360
8461
  .component-subtitle {
@@ -8375,6 +8476,11 @@ button.link-outline {
8375
8476
  transition: none;
8376
8477
  }
8377
8478
  }
8479
+ .c-prefers-reduced-motion .component-subtitle[href],
8480
+ .c-prefers-reduced-motion .component-subtitle [href] {
8481
+ transition: none;
8482
+ }
8483
+
8378
8484
  .component-subtitle[href]:hover, .component-subtitle[href].hover,
8379
8485
  .component-subtitle [href]:hover,
8380
8486
  .component-subtitle [href].hover {
@@ -8384,7 +8490,7 @@ button.link-outline {
8384
8490
  .component-subtitle [href].focus,
8385
8491
  .component-subtitle [href]:focus {
8386
8492
  color: #272833;
8387
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8493
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8388
8494
  outline: 0;
8389
8495
  }
8390
8496
  .component-action {
@@ -8409,12 +8515,16 @@ button.link-outline {
8409
8515
  transition: none;
8410
8516
  }
8411
8517
  }
8518
+ .c-prefers-reduced-motion .component-action {
8519
+ transition: none;
8520
+ }
8521
+
8412
8522
  .component-action:hover, .component-action.hover {
8413
8523
  background-color: rgba(39, 40, 51, 0.03);
8414
8524
  color: #272833;
8415
8525
  }
8416
8526
  .component-action.focus, .component-action:focus {
8417
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8527
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8418
8528
  outline: 0;
8419
8529
  background-color: rgba(39, 40, 51, 0.03);
8420
8530
  color: #272833;
@@ -8514,6 +8624,10 @@ button.link-outline {
8514
8624
  transition: none;
8515
8625
  }
8516
8626
  }
8627
+ .c-prefers-reduced-motion .clay-range-input .tooltip {
8628
+ transition: none;
8629
+ }
8630
+
8517
8631
  .clay-range-input .tooltip-inner {
8518
8632
  padding: 0.5rem 0.75rem;
8519
8633
  }
@@ -8686,20 +8800,20 @@ button.link-outline {
8686
8800
  outline: 0;
8687
8801
  }
8688
8802
  .clay-range-input .form-control-range:focus ~ .clay-range-progress .clay-range-thumb, .clay-range-input .form-control-range.focus ~ .clay-range-progress .clay-range-thumb {
8689
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
8803
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
8690
8804
  }
8691
8805
  .clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip, .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip {
8692
8806
  visibility: visible;
8693
8807
  opacity: 1;
8694
8808
  }
8695
8809
  .clay-range-input .form-control-range:focus::-moz-range-thumb, .clay-range-input .form-control-range.focus::-moz-range-thumb {
8696
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
8810
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
8697
8811
  }
8698
8812
  .clay-range-input .form-control-range:focus::-ms-thumb, .clay-range-input .form-control-range.focus::-ms-thumb {
8699
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
8813
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
8700
8814
  }
8701
8815
  .clay-range-input .form-control-range:focus::-webkit-slider-thumb, .clay-range-input .form-control-range.focus::-webkit-slider-thumb {
8702
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
8816
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
8703
8817
  }
8704
8818
  .clay-range-input .form-control-range:disabled {
8705
8819
  color: #a7a9bc;
@@ -8871,13 +8985,13 @@ button.link-outline {
8871
8985
  width: 1.5rem;
8872
8986
  }
8873
8987
  .clay-color-btn:active {
8874
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8988
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8875
8989
  }
8876
8990
  .clay-color-btn.active {
8877
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8991
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8878
8992
  }
8879
8993
  .clay-color-btn[aria-expanded=true], .clay-color-btn.show {
8880
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
8994
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
8881
8995
  }
8882
8996
  .clay-color-btn .c-inner {
8883
8997
  margin-bottom: 0;
@@ -8908,12 +9022,16 @@ button.link-outline {
8908
9022
  transition: none;
8909
9023
  }
8910
9024
  }
9025
+ .c-prefers-reduced-motion .clay-color-pointer {
9026
+ transition: none;
9027
+ }
9028
+
8911
9029
  .clay-color-pointer:focus, .clay-color-pointer.focus {
8912
- box-shadow: 0 0 0 0.125rem #80acff;
9030
+ box-shadow: 0 0 0 0.125rem #528eff;
8913
9031
  outline: 0;
8914
9032
  }
8915
9033
  .clay-color-pointer:active:focus {
8916
- box-shadow: 0 0 0 0.125rem #80acff;
9034
+ box-shadow: 0 0 0 0.125rem #528eff;
8917
9035
  }
8918
9036
  .clay-color-pointer .c-inner {
8919
9037
  margin-bottom: 0;
@@ -9050,7 +9168,7 @@ button.link-outline {
9050
9168
  }
9051
9169
  .form-file-input:focus + .input-group {
9052
9170
  border-radius: 1px;
9053
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9171
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9054
9172
  }
9055
9173
  .form-file-input:disabled {
9056
9174
  cursor: not-allowed;
@@ -9108,6 +9226,10 @@ button.link-outline {
9108
9226
  transition: none;
9109
9227
  }
9110
9228
  }
9229
+ .c-prefers-reduced-motion .custom-control-label::before {
9230
+ transition: none;
9231
+ }
9232
+
9111
9233
  .custom-control-label::after {
9112
9234
  background: no-repeat 50%/50% 50%;
9113
9235
  content: "";
@@ -9156,6 +9278,9 @@ label.custom-control-label {
9156
9278
  transition: none;
9157
9279
  }
9158
9280
  }
9281
+ .c-prefers-reduced-motion .custom-control-label::before {
9282
+ transition: none;
9283
+ }
9159
9284
 
9160
9285
  .custom-control-label::after {
9161
9286
  background: no-repeat 50%/50% 50%;
@@ -9180,12 +9305,12 @@ label.custom-control-label {
9180
9305
  }
9181
9306
  .custom-control-input:focus ~ .custom-control-label::before {
9182
9307
  border-color: #6b6c7e;
9183
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9308
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9184
9309
  }
9185
9310
  .custom-control-input:active ~ .custom-control-label::before {
9186
9311
  background-color: #fff;
9187
9312
  border-color: #6b6c7e;
9188
- box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9313
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9189
9314
  color: #fff;
9190
9315
  }
9191
9316
  .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
@@ -9334,6 +9459,10 @@ label.custom-control-label {
9334
9459
  transition: none;
9335
9460
  }
9336
9461
  }
9462
+ .c-prefers-reduced-motion .custom-switch .custom-control-label::after {
9463
+ transition: none;
9464
+ }
9465
+
9337
9466
  .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
9338
9467
  background-color: #fff;
9339
9468
  transform: translateX(0.75rem);
@@ -9419,7 +9548,7 @@ label.custom-control-label {
9419
9548
  }
9420
9549
  .custom-file-input:focus ~ .custom-file-label {
9421
9550
  border-color: #80acff;
9422
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9551
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9423
9552
  }
9424
9553
  .custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
9425
9554
  background-color: #f1f2f5;
@@ -9475,13 +9604,13 @@ label.custom-control-label {
9475
9604
  outline: none;
9476
9605
  }
9477
9606
  .custom-range:focus::-webkit-slider-thumb {
9478
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9607
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9479
9608
  }
9480
9609
  .custom-range:focus::-moz-range-thumb {
9481
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9610
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9482
9611
  }
9483
9612
  .custom-range:focus::-ms-thumb {
9484
- box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
9613
+ box-shadow: 0 0 0 1px #fff, 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9485
9614
  }
9486
9615
  .custom-range::-moz-focus-outer {
9487
9616
  border: 0;
@@ -9503,6 +9632,10 @@ label.custom-control-label {
9503
9632
  transition: none;
9504
9633
  }
9505
9634
  }
9635
+ .c-prefers-reduced-motion .custom-range::-webkit-slider-thumb {
9636
+ transition: none;
9637
+ }
9638
+
9506
9639
  .custom-range::-webkit-slider-thumb:active {
9507
9640
  background-color: #bed4ff;
9508
9641
  }
@@ -9532,6 +9665,10 @@ label.custom-control-label {
9532
9665
  transition: none;
9533
9666
  }
9534
9667
  }
9668
+ .c-prefers-reduced-motion .custom-range::-moz-range-thumb {
9669
+ transition: none;
9670
+ }
9671
+
9535
9672
  .custom-range::-moz-range-thumb:active {
9536
9673
  background-color: #bed4ff;
9537
9674
  }
@@ -9563,6 +9700,10 @@ label.custom-control-label {
9563
9700
  transition: none;
9564
9701
  }
9565
9702
  }
9703
+ .c-prefers-reduced-motion .custom-range::-ms-thumb {
9704
+ transition: none;
9705
+ }
9706
+
9566
9707
  .custom-range::-ms-thumb:active {
9567
9708
  background-color: #bed4ff;
9568
9709
  }
@@ -9611,6 +9752,10 @@ label.custom-control-label {
9611
9752
  transition: none;
9612
9753
  }
9613
9754
  }
9755
+ .c-prefers-reduced-motion .custom-file-label,
9756
+ .c-prefers-reduced-motion .custom-select {
9757
+ transition: none;
9758
+ }
9614
9759
 
9615
9760
  .clay-time .btn {
9616
9761
  align-items: center;
@@ -9626,10 +9771,10 @@ label.custom-control-label {
9626
9771
  color: #6b6c7e;
9627
9772
  }
9628
9773
  .clay-time .btn:focus, .clay-time .btn.focus {
9629
- box-shadow: 0 0 0 1px #80acff;
9774
+ box-shadow: 0 0 0 1px #528eff;
9630
9775
  }
9631
9776
  .clay-time .btn:active:focus {
9632
- box-shadow: 0 0 0 1px #80acff;
9777
+ box-shadow: 0 0 0 1px #528eff;
9633
9778
  }
9634
9779
  .clay-time .btn .c-inner {
9635
9780
  margin-bottom: 0;
@@ -9758,12 +9903,16 @@ label.custom-control-label {
9758
9903
  transition: none;
9759
9904
  }
9760
9905
  }
9906
+ .c-prefers-reduced-motion .date-picker-nav .nav-btn {
9907
+ transition: none;
9908
+ }
9909
+
9761
9910
  .date-picker-nav .nav-btn:hover {
9762
9911
  background-color: #f1f2f5;
9763
9912
  color: #272833;
9764
9913
  }
9765
9914
  .date-picker-nav .nav-btn:focus, .date-picker-nav .nav-btn.focus {
9766
- box-shadow: 0 0 0 0.2rem rgba(11, 95, 255, 0.25);
9915
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9767
9916
  background-color: #f1f2f5;
9768
9917
  color: #272833;
9769
9918
  }
@@ -9771,7 +9920,7 @@ label.custom-control-label {
9771
9920
  background-color: #f1f2f5;
9772
9921
  }
9773
9922
  .date-picker-nav .nav-btn:active:focus {
9774
- box-shadow: 0 0 0 0.2rem rgba(11, 95, 255, 0.25);
9923
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9775
9924
  }
9776
9925
  .date-picker-nav .nav-btn.active {
9777
9926
  background-color: #f1f2f5;
@@ -9885,6 +10034,10 @@ label.custom-control-label {
9885
10034
  transition: none;
9886
10035
  }
9887
10036
  }
10037
+ .c-prefers-reduced-motion .date-picker-calendar-item {
10038
+ transition: none;
10039
+ }
10040
+
9888
10041
  .date-picker-calendar-item:disabled, .date-picker-calendar-item.disabled {
9889
10042
  cursor: not-allowed;
9890
10043
  }
@@ -9947,7 +10100,7 @@ label.custom-control-label {
9947
10100
  color: #272833;
9948
10101
  }
9949
10102
  .date-picker-date:focus, .date-picker-date.focus {
9950
- box-shadow: 0 0 0 0.2rem rgba(11, 95, 255, 0.25);
10103
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9951
10104
  outline: 0;
9952
10105
  background-color: #f1f2f5;
9953
10106
  color: #272833;
@@ -9957,7 +10110,7 @@ label.custom-control-label {
9957
10110
  color: #fff;
9958
10111
  }
9959
10112
  .date-picker-date:active:focus {
9960
- box-shadow: 0 0 0 0.2rem rgba(11, 95, 255, 0.25);
10113
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
9961
10114
  }
9962
10115
  .date-picker-date.active {
9963
10116
  background-color: #0b5fff;
@@ -10247,7 +10400,7 @@ label.custom-control-label {
10247
10400
  }
10248
10401
  .was-validated .form-control:valid:focus,
10249
10402
  .was-validated .form-control.is-valid:focus {
10250
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10403
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
10251
10404
  }
10252
10405
 
10253
10406
  .was-validated .form-control:invalid,
@@ -10259,7 +10412,7 @@ label.custom-control-label {
10259
10412
  }
10260
10413
  .was-validated .form-control:invalid:focus,
10261
10414
  .was-validated .form-control.is-invalid:focus {
10262
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10415
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
10263
10416
  }
10264
10417
 
10265
10418
  .has-error .custom-control-label,
@@ -10273,7 +10426,7 @@ label.custom-control-label {
10273
10426
  color: #272833;
10274
10427
  }
10275
10428
  .has-error .form-control:focus, .has-error .form-control.focus {
10276
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10429
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
10277
10430
  }
10278
10431
  .has-error .form-control[readonly] {
10279
10432
  background-color: #fff;
@@ -10298,7 +10451,7 @@ label.custom-control-label {
10298
10451
  color: #272833;
10299
10452
  }
10300
10453
  .has-error .input-group-item.focus {
10301
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10454
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
10302
10455
  }
10303
10456
  .has-error .input-group-item.focus .input-group-inset {
10304
10457
  background-color: #feefef;
@@ -10332,7 +10485,7 @@ label.custom-control-label {
10332
10485
  color: #272833;
10333
10486
  }
10334
10487
  .has-warning .form-control:focus, .has-warning .form-control.focus {
10335
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10488
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
10336
10489
  }
10337
10490
  .has-warning .form-control[readonly] {
10338
10491
  background-color: #fff;
@@ -10357,7 +10510,7 @@ label.custom-control-label {
10357
10510
  color: #272833;
10358
10511
  }
10359
10512
  .has-warning .input-group-item.focus {
10360
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10513
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
10361
10514
  }
10362
10515
  .has-warning .input-group-item.focus .input-group-inset {
10363
10516
  background-color: #fff4ec;
@@ -10391,7 +10544,7 @@ label.custom-control-label {
10391
10544
  color: #272833;
10392
10545
  }
10393
10546
  .has-success .form-control:focus, .has-success .form-control.focus {
10394
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10547
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
10395
10548
  }
10396
10549
  .has-success .form-control[readonly] {
10397
10550
  background-color: #fff;
@@ -10416,7 +10569,7 @@ label.custom-control-label {
10416
10569
  color: #272833;
10417
10570
  }
10418
10571
  .has-success .input-group-item.focus {
10419
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10572
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
10420
10573
  }
10421
10574
  .has-success .input-group-item.focus .input-group-inset {
10422
10575
  background-color: #edf9f0;
@@ -10566,7 +10719,7 @@ label.custom-control-label {
10566
10719
  }
10567
10720
  .input-group-item.focus {
10568
10721
  border-radius: 0.25rem;
10569
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
10722
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
10570
10723
  }
10571
10724
  .input-group-item.focus.input-group-prepend {
10572
10725
  border-bottom-right-radius: 0;
@@ -11233,6 +11386,11 @@ label.custom-control-label {
11233
11386
  transition: none;
11234
11387
  }
11235
11388
  }
11389
+ .c-prefers-reduced-motion .list-group-title[href],
11390
+ .c-prefers-reduced-motion .list-group-title [href] {
11391
+ transition: none;
11392
+ }
11393
+
11236
11394
  .list-group-title[href]:hover, .list-group-title[href].hover,
11237
11395
  .list-group-title [href]:hover,
11238
11396
  .list-group-title [href].hover {
@@ -11241,7 +11399,7 @@ label.custom-control-label {
11241
11399
  .list-group-title[href].focus, .list-group-title[href]:focus,
11242
11400
  .list-group-title [href].focus,
11243
11401
  .list-group-title [href]:focus {
11244
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
11402
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
11245
11403
  outline: 0;
11246
11404
  }
11247
11405
  .list-group-subtitle {
@@ -11262,6 +11420,11 @@ label.custom-control-label {
11262
11420
  transition: none;
11263
11421
  }
11264
11422
  }
11423
+ .c-prefers-reduced-motion .list-group-subtitle[href],
11424
+ .c-prefers-reduced-motion .list-group-subtitle [href] {
11425
+ transition: none;
11426
+ }
11427
+
11265
11428
  .list-group-subtitle[href]:hover, .list-group-subtitle[href].hover,
11266
11429
  .list-group-subtitle [href]:hover,
11267
11430
  .list-group-subtitle [href].hover {
@@ -11270,7 +11433,7 @@ label.custom-control-label {
11270
11433
  .list-group-subtitle[href].focus, .list-group-subtitle[href]:focus,
11271
11434
  .list-group-subtitle [href].focus,
11272
11435
  .list-group-subtitle [href]:focus {
11273
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
11436
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
11274
11437
  outline: 0;
11275
11438
  }
11276
11439
  .list-group-text {
@@ -11291,6 +11454,11 @@ label.custom-control-label {
11291
11454
  transition: none;
11292
11455
  }
11293
11456
  }
11457
+ .c-prefers-reduced-motion .list-group-text[href],
11458
+ .c-prefers-reduced-motion .list-group-text [href] {
11459
+ transition: none;
11460
+ }
11461
+
11294
11462
  .list-group-text[href]:hover, .list-group-text[href].hover,
11295
11463
  .list-group-text [href]:hover,
11296
11464
  .list-group-text [href].hover {
@@ -11299,7 +11467,7 @@ label.custom-control-label {
11299
11467
  .list-group-text[href].focus, .list-group-text[href]:focus,
11300
11468
  .list-group-text [href].focus,
11301
11469
  .list-group-text [href]:focus {
11302
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
11470
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
11303
11471
  outline: 0;
11304
11472
  }
11305
11473
  .list-group-subtext {
@@ -11321,6 +11489,11 @@ label.custom-control-label {
11321
11489
  transition: none;
11322
11490
  }
11323
11491
  }
11492
+ .c-prefers-reduced-motion .list-group-subtext[href],
11493
+ .c-prefers-reduced-motion .list-group-subtext [href] {
11494
+ transition: none;
11495
+ }
11496
+
11324
11497
  .list-group-subtext[href]:hover, .list-group-subtext[href].hover,
11325
11498
  .list-group-subtext [href]:hover,
11326
11499
  .list-group-subtext [href].hover {
@@ -11329,7 +11502,7 @@ label.custom-control-label {
11329
11502
  .list-group-subtext[href].focus, .list-group-subtext[href]:focus,
11330
11503
  .list-group-subtext [href].focus,
11331
11504
  .list-group-subtext [href]:focus {
11332
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
11505
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
11333
11506
  outline: 0;
11334
11507
  }
11335
11508
  .show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
@@ -11703,6 +11876,10 @@ label.custom-control-label {
11703
11876
  transition: none;
11704
11877
  }
11705
11878
  }
11879
+ .c-prefers-reduced-motion .modal.fade .modal-dialog {
11880
+ transition: none;
11881
+ }
11882
+
11706
11883
  .modal.show .modal-dialog {
11707
11884
  transform: none;
11708
11885
  }
@@ -12206,6 +12383,18 @@ label.custom-control-label {
12206
12383
  .multi-step-item.complete .multi-step-divider {
12207
12384
  background-color: #6b6c7e;
12208
12385
  }
12386
+ .multi-step-item.error .multi-step-icon {
12387
+ background-color: #da1414;
12388
+ background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M300.4%20256%20467%2089.4c29.6-29.6-14.8-74.1-44.4-44.4L256%20211.6%2089.4%2045C59.8%2015.3%2015.3%2059.8%2045%2089.4L211.6%20256%2045%20422.6c-29.7%2029.7%2014.7%2074.1%2044.4%2044.4L256%20300.4%20422.6%20467c29.7%2029.7%2074.1-14.7%2044.4-44.4L300.4%20256z'%20fill='%23fff'/%3E%3C/svg%3E");
12389
+ color: #fff;
12390
+ text-indent: -100px;
12391
+ }
12392
+ .multi-step-item.error .multi-step-icon[data-multi-step-icon]::before {
12393
+ content: none;
12394
+ }
12395
+ .multi-step-item.error .multi-step-icon .lexicon-icon {
12396
+ display: none;
12397
+ }
12209
12398
  .multi-step-item.disabled .multi-step-title {
12210
12399
  color: #a7a9bc;
12211
12400
  }
@@ -12279,6 +12468,9 @@ label.custom-control-label {
12279
12468
  .multi-step-icon {
12280
12469
  align-items: center;
12281
12470
  background-color: #e7e7ed;
12471
+ background-position: center;
12472
+ background-repeat: no-repeat;
12473
+ background-size: 0.875rem;
12282
12474
  border-radius: 100px;
12283
12475
  border-width: 0px;
12284
12476
  color: #6b6c7e;
@@ -12302,7 +12494,7 @@ label.custom-control-label {
12302
12494
  }
12303
12495
  .multi-step-icon:focus {
12304
12496
  background-color: #e7e7ed;
12305
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
12497
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
12306
12498
  color: #6b6c7e;
12307
12499
  outline: 0;
12308
12500
  text-decoration: none;
@@ -12435,10 +12627,10 @@ label.custom-control-label {
12435
12627
  width: 100%;
12436
12628
  }
12437
12629
  .nav-link.btn-unstyled:focus, .nav-link.btn-unstyled.focus {
12438
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
12630
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
12439
12631
  }
12440
12632
  .nav-link.btn-unstyled:active:focus {
12441
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
12633
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
12442
12634
  }
12443
12635
  .nav-link.btn-unstyled:disabled, .nav-link.btn-unstyled.disabled {
12444
12636
  opacity: 1;
@@ -12586,7 +12778,6 @@ label.custom-control-label {
12586
12778
  padding-right: 0.5rem;
12587
12779
  padding-top: 0.625rem;
12588
12780
  }
12589
-
12590
12781
  .nav-unstyled {
12591
12782
  flex-wrap: nowrap;
12592
12783
  }
@@ -12725,10 +12916,6 @@ label.custom-control-label {
12725
12916
  .nav-tabs {
12726
12917
  border-bottom: 0.0625rem solid #cdced9;
12727
12918
  font-size: 0.875rem;
12728
- background-color: #f7f8f9;
12729
- border-color: #cdced9;
12730
- border-style: solid;
12731
- border-width: 0.0625rem 0;
12732
12919
  padding-left: 1.5rem;
12733
12920
  padding-right: 1.5rem;
12734
12921
  padding-top: 0.4375rem;
@@ -12750,12 +12937,16 @@ label.custom-control-label {
12750
12937
  transition: none;
12751
12938
  }
12752
12939
  }
12940
+ .c-prefers-reduced-motion .nav-tabs .nav-link {
12941
+ transition: none;
12942
+ }
12943
+
12753
12944
  .nav-tabs .nav-link:hover, .nav-tabs .nav-link.hover {
12754
12945
  border-color: transparent;
12755
12946
  }
12756
12947
  .nav-tabs .nav-link.focus, .nav-tabs .nav-link:focus {
12757
12948
  border-color: transparent;
12758
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
12949
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
12759
12950
  outline: 0;
12760
12951
  }
12761
12952
  .nav-tabs .nav-link:active {
@@ -12796,7 +12987,7 @@ label.custom-control-label {
12796
12987
  }
12797
12988
  .nav-tabs + .tab-content .tab-pane {
12798
12989
  background-color: #fff;
12799
- border-radius: 4px;
12990
+ border-radius: 0 0 4px 4px;
12800
12991
  padding: 2rem;
12801
12992
  }
12802
12993
  .nav-tabs + .tab-content .tab-pane.active:first-child {
@@ -12830,6 +13021,14 @@ label.custom-control-label {
12830
13021
  color: #fff;
12831
13022
  }
12832
13023
 
13024
+ .nav-tabs-light {
13025
+ background-color: #f7f8f9;
13026
+ }
13027
+ .nav-tabs-light + .tab-content .tab-pane {
13028
+ background-color: transparent;
13029
+ border-radius: 0;
13030
+ }
13031
+
12833
13032
  .menubar {
12834
13033
  position: relative;
12835
13034
  }
@@ -12915,13 +13114,17 @@ label.custom-control-label {
12915
13114
  transition: none;
12916
13115
  }
12917
13116
  }
13117
+ .c-prefers-reduced-motion .menubar-vertical-expand-md.menubar-transparent .nav-link {
13118
+ transition: none;
13119
+ }
13120
+
12918
13121
  .menubar-vertical-expand-md.menubar-transparent .nav-link:hover, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
12919
13122
  background-color: rgba(11, 95, 255, 0.04);
12920
13123
  color: #272833;
12921
13124
  }
12922
13125
  .menubar-vertical-expand-md.menubar-transparent .nav-link.focus, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
12923
13126
  background-color: rgba(11, 95, 255, 0.04);
12924
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
13127
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
12925
13128
  color: #272833;
12926
13129
  outline: 0;
12927
13130
  }
@@ -12964,6 +13167,11 @@ label.custom-control-label {
12964
13167
  transition: none;
12965
13168
  }
12966
13169
  }
13170
+ @media (max-width: 767.98px) {
13171
+ .c-prefers-reduced-motion .menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
13172
+ transition: none;
13173
+ }
13174
+ }
12967
13175
  @media (max-width: 767.98px) {
12968
13176
  .menubar-vertical-expand-md.menubar-transparent .nav-link {
12969
13177
  border-radius: 0;
@@ -13090,13 +13298,17 @@ label.custom-control-label {
13090
13298
  transition: none;
13091
13299
  }
13092
13300
  }
13301
+ .c-prefers-reduced-motion .menubar-vertical-expand-lg.menubar-transparent .nav-link {
13302
+ transition: none;
13303
+ }
13304
+
13093
13305
  .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
13094
13306
  background-color: rgba(11, 95, 255, 0.04);
13095
13307
  color: #272833;
13096
13308
  }
13097
13309
  .menubar-vertical-expand-lg.menubar-transparent .nav-link.focus, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
13098
13310
  background-color: rgba(11, 95, 255, 0.04);
13099
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
13311
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
13100
13312
  color: #272833;
13101
13313
  outline: 0;
13102
13314
  }
@@ -13139,6 +13351,11 @@ label.custom-control-label {
13139
13351
  transition: none;
13140
13352
  }
13141
13353
  }
13354
+ @media (max-width: 991.98px) {
13355
+ .c-prefers-reduced-motion .menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
13356
+ transition: none;
13357
+ }
13358
+ }
13142
13359
  @media (max-width: 991.98px) {
13143
13360
  .menubar-vertical-expand-lg.menubar-transparent .nav-link {
13144
13361
  border-radius: 0;
@@ -15107,8 +15324,12 @@ label.custom-control-label {
15107
15324
  transition: none;
15108
15325
  }
15109
15326
  }
15327
+ .c-prefers-reduced-motion .application-bar .navbar-nav .nav-link {
15328
+ transition: none;
15329
+ }
15330
+
15110
15331
  .application-bar .navbar-nav .nav-link.focus, .application-bar .navbar-nav .nav-link:focus {
15111
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
15332
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
15112
15333
  }
15113
15334
  .application-bar .navbar-nav .nav-link:disabled, .application-bar .navbar-nav .nav-link.disabled {
15114
15335
  box-shadow: none;
@@ -15123,8 +15344,12 @@ label.custom-control-label {
15123
15344
  transition: none;
15124
15345
  }
15125
15346
  }
15347
+ .c-prefers-reduced-motion .application-bar .navbar-brand {
15348
+ transition: none;
15349
+ }
15350
+
15126
15351
  .application-bar .navbar-brand.focus, .application-bar .navbar-brand:focus {
15127
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
15352
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
15128
15353
  }
15129
15354
  .application-bar .navbar-brand:disabled, .application-bar .navbar-brand.disabled {
15130
15355
  box-shadow: none;
@@ -16286,8 +16511,12 @@ label.custom-control-label {
16286
16511
  transition: none;
16287
16512
  }
16288
16513
  }
16514
+ .c-prefers-reduced-motion .management-bar .navbar-nav .nav-link {
16515
+ transition: none;
16516
+ }
16517
+
16289
16518
  .management-bar .navbar-nav .nav-link.focus, .management-bar .navbar-nav .nav-link:focus {
16290
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
16519
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
16291
16520
  }
16292
16521
  .management-bar .navbar-nav .nav-link:disabled, .management-bar .navbar-nav .nav-link.disabled {
16293
16522
  box-shadow: none;
@@ -16302,8 +16531,12 @@ label.custom-control-label {
16302
16531
  transition: none;
16303
16532
  }
16304
16533
  }
16534
+ .c-prefers-reduced-motion .management-bar .navbar-brand {
16535
+ transition: none;
16536
+ }
16537
+
16305
16538
  .management-bar .navbar-brand.focus, .management-bar .navbar-brand:focus {
16306
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
16539
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
16307
16540
  }
16308
16541
  .management-bar .navbar-brand:disabled, .management-bar .navbar-brand.disabled {
16309
16542
  box-shadow: none;
@@ -16886,7 +17119,7 @@ label.custom-control-label {
16886
17119
  outline: 0;
16887
17120
  }
16888
17121
  .navigation-bar .navbar-nav .nav-link.focus, .navigation-bar .navbar-nav .nav-link:focus {
16889
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
17122
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
16890
17123
  }
16891
17124
  .navigation-bar .navbar-nav .nav-link:disabled, .navigation-bar .navbar-nav .nav-link.disabled {
16892
17125
  box-shadow: none;
@@ -16898,7 +17131,7 @@ label.custom-control-label {
16898
17131
  outline: 0;
16899
17132
  }
16900
17133
  .navigation-bar .navbar-brand.focus, .navigation-bar .navbar-brand:focus {
16901
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
17134
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
16902
17135
  }
16903
17136
  .navigation-bar .navbar-brand:disabled, .navigation-bar .navbar-brand.disabled {
16904
17137
  box-shadow: none;
@@ -17126,6 +17359,10 @@ label.custom-control-label {
17126
17359
  transition: none;
17127
17360
  }
17128
17361
  }
17362
+ .c-prefers-reduced-motion .page-link {
17363
+ transition: none;
17364
+ }
17365
+
17129
17366
  .page-link:hover, .page-link.hover {
17130
17367
  background-color: rgba(39, 40, 41, 0.04);
17131
17368
  border-color: transparent;
@@ -17134,7 +17371,7 @@ label.custom-control-label {
17134
17371
  z-index: 2;
17135
17372
  }
17136
17373
  .page-link.focus, .page-link:focus {
17137
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
17374
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
17138
17375
  outline: 0;
17139
17376
  z-index: 4;
17140
17377
  background-color: rgba(39, 40, 41, 0.04);
@@ -17246,6 +17483,11 @@ label.custom-control-label {
17246
17483
  transition: none;
17247
17484
  }
17248
17485
  }
17486
+ .c-prefers-reduced-motion .pagination-items-per-page > a,
17487
+ .c-prefers-reduced-motion .pagination-items-per-page > button {
17488
+ transition: none;
17489
+ }
17490
+
17249
17491
  .pagination-items-per-page > a:hover, .pagination-items-per-page > a.hover,
17250
17492
  .pagination-items-per-page > button:hover,
17251
17493
  .pagination-items-per-page > button.hover {
@@ -17256,7 +17498,7 @@ label.custom-control-label {
17256
17498
  .pagination-items-per-page > a.focus, .pagination-items-per-page > a:focus,
17257
17499
  .pagination-items-per-page > button.focus,
17258
17500
  .pagination-items-per-page > button:focus {
17259
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
17501
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
17260
17502
  outline: 0;
17261
17503
  background-color: rgba(39, 40, 41, 0.04);
17262
17504
  border-color: transparent;
@@ -17486,13 +17728,17 @@ label.custom-control-label {
17486
17728
  transition: none;
17487
17729
  }
17488
17730
  }
17731
+ .c-prefers-reduced-motion .panel-header-link {
17732
+ transition: none;
17733
+ }
17734
+
17489
17735
  .panel-header-link:hover, .panel-header-link.hover {
17490
17736
  color: inherit;
17491
17737
  text-decoration: none;
17492
17738
  }
17493
17739
  .panel-header-link.focus, .panel-header-link:focus {
17494
17740
  z-index: 1;
17495
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
17741
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
17496
17742
  outline: 0;
17497
17743
  }
17498
17744
  .panel-header-link .collapse-icon {
@@ -17714,7 +17960,7 @@ label.custom-control-label {
17714
17960
  border-radius: 1px;
17715
17961
  }
17716
17962
  .panel-unstyled .panel-header.panel-header-link.focus, .panel-unstyled .panel-header.panel-header-link:focus {
17717
- box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
17963
+ box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #528eff;
17718
17964
  }
17719
17965
  .panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-closed,
17720
17966
  .panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-open {
@@ -17733,7 +17979,7 @@ label.custom-control-label {
17733
17979
  .popover {
17734
17980
  background-clip: padding-box;
17735
17981
  background-color: #fff;
17736
- border: 0.0625rem solid transparent;
17982
+ border: 1px solid transparent;
17737
17983
  border-radius: 0.25rem;
17738
17984
  box-shadow: 0 1px 15px -2px rgba(0, 0, 0, 0.2);
17739
17985
  display: block;
@@ -17760,10 +18006,10 @@ label.custom-control-label {
17760
18006
  }
17761
18007
  .popover .arrow {
17762
18008
  display: block;
17763
- height: 0.3rem;
18009
+ height: 5px;
17764
18010
  margin: 0 0.25rem;
17765
18011
  position: absolute;
17766
- width: 0.6rem;
18012
+ width: 10px;
17767
18013
  }
17768
18014
  .popover .arrow::before {
17769
18015
  border-color: transparent;
@@ -17795,120 +18041,120 @@ label.custom-control-label {
17795
18041
  }
17796
18042
  .bs-popover-bottom,
17797
18043
  .bs-popover-auto[x-placement^=bottom] {
17798
- margin-top: 0.3rem;
18044
+ margin-top: 5px;
17799
18045
  }
17800
18046
  .bs-popover-bottom > .arrow,
17801
18047
  .bs-popover-auto[x-placement^=bottom] > .arrow {
17802
18048
  top: calc(
17803
- -0.3rem - 0.0625rem
18049
+ -5px - 1px
17804
18050
  );
17805
18051
  }
17806
18052
  .bs-popover-bottom > .arrow::before,
17807
18053
  .bs-popover-auto[x-placement^=bottom] > .arrow::before {
17808
18054
  border-bottom-color: transparent;
17809
- border-width: 0 0.3rem 0.3rem 0.3rem;
18055
+ border-width: 0 5px 5px 5px;
17810
18056
  top: 0;
17811
18057
  }
17812
18058
  .bs-popover-bottom > .arrow::after,
17813
18059
  .bs-popover-auto[x-placement^=bottom] > .arrow::after {
17814
18060
  border-bottom-color: #fff;
17815
- border-width: 0 0.3rem 0.3rem 0.3rem;
17816
- top: 0.0625rem;
18061
+ border-width: 0 5px 5px 5px;
18062
+ top: 1px;
17817
18063
  }
17818
18064
  .bs-popover-bottom .popover-header::before,
17819
18065
  .bs-popover-auto[x-placement^=bottom] .popover-header::before {
17820
- border-bottom: 0.0625rem solid #fff;
18066
+ border-bottom: 1px solid #fff;
17821
18067
  content: "";
17822
18068
  display: block;
17823
18069
  left: 50%;
17824
- margin-left: calc(-0.6rem / 2);
18070
+ margin-left: calc(-10px / 2);
17825
18071
  position: absolute;
17826
18072
  top: 0;
17827
- width: 0.6rem;
18073
+ width: 10px;
17828
18074
  }
17829
18075
 
17830
18076
  .bs-popover-left,
17831
18077
  .bs-popover-auto[x-placement^=left] {
17832
- margin-right: 0.3rem;
18078
+ margin-right: 5px;
17833
18079
  }
17834
18080
  .bs-popover-left > .arrow,
17835
18081
  .bs-popover-auto[x-placement^=left] > .arrow {
17836
- height: 0.6rem;
18082
+ height: 10px;
17837
18083
  margin: 0.25rem 0;
17838
18084
  right: calc(
17839
- -0.3rem - 0.0625rem
18085
+ -5px - 1px
17840
18086
  );
17841
- width: 0.3rem;
18087
+ width: 5px;
17842
18088
  }
17843
18089
  .bs-popover-left > .arrow::before,
17844
18090
  .bs-popover-auto[x-placement^=left] > .arrow::before {
17845
18091
  border-left-color: transparent;
17846
- border-width: 0.3rem 0 0.3rem 0.3rem;
18092
+ border-width: 5px 0 5px 5px;
17847
18093
  right: 0;
17848
18094
  }
17849
18095
  .bs-popover-left > .arrow::after,
17850
18096
  .bs-popover-auto[x-placement^=left] > .arrow::after {
17851
18097
  border-left-color: #fff;
17852
- border-width: 0.3rem 0 0.3rem 0.3rem;
17853
- right: 0.0625rem;
18098
+ border-width: 5px 0 5px 5px;
18099
+ right: 1px;
17854
18100
  }
17855
18101
 
17856
18102
  .bs-popover-right,
17857
18103
  .bs-popover-auto[x-placement^=right] {
17858
- margin-left: 0.3rem;
18104
+ margin-left: 5px;
17859
18105
  }
17860
18106
  .bs-popover-right > .arrow,
17861
18107
  .bs-popover-auto[x-placement^=right] > .arrow {
17862
- height: 0.6rem;
18108
+ height: 10px;
17863
18109
  left: calc(
17864
- -0.3rem - 0.0625rem
18110
+ -5px - 1px
17865
18111
  );
17866
18112
  margin: 0.25rem 0;
17867
- width: 0.3rem;
18113
+ width: 5px;
17868
18114
  }
17869
18115
  .bs-popover-right > .arrow::before,
17870
18116
  .bs-popover-auto[x-placement^=right] > .arrow::before {
17871
18117
  border-right-color: transparent;
17872
- border-width: 0.3rem 0.3rem 0.3rem 0;
18118
+ border-width: 5px 5px 5px 0;
17873
18119
  left: 0;
17874
18120
  }
17875
18121
  .bs-popover-right > .arrow::after,
17876
18122
  .bs-popover-auto[x-placement^=right] > .arrow::after {
17877
18123
  border-right-color: #fff;
17878
- border-width: 0.3rem 0.3rem 0.3rem 0;
17879
- left: 0.0625rem;
18124
+ border-width: 5px 5px 5px 0;
18125
+ left: 1px;
17880
18126
  }
17881
18127
 
17882
18128
  .bs-popover-top,
17883
18129
  .bs-popover-auto[x-placement^=top] {
17884
- margin-bottom: 0.3rem;
18130
+ margin-bottom: 5px;
17885
18131
  }
17886
18132
  .bs-popover-top > .arrow,
17887
18133
  .bs-popover-auto[x-placement^=top] > .arrow {
17888
18134
  bottom: calc(
17889
- -0.3rem - 0.0625rem
18135
+ -5px - 1px
17890
18136
  );
17891
18137
  }
17892
18138
  .bs-popover-top > .arrow::before,
17893
18139
  .bs-popover-auto[x-placement^=top] > .arrow::before {
17894
18140
  border-top-color: transparent;
17895
- border-width: 0.3rem 0.3rem 0;
18141
+ border-width: 5px 5px 0;
17896
18142
  bottom: 0;
17897
18143
  }
17898
18144
  .bs-popover-top > .arrow::after,
17899
18145
  .bs-popover-auto[x-placement^=top] > .arrow::after {
17900
18146
  border-top-color: #fff;
17901
- border-width: 0.3rem 0.3rem 0;
17902
- bottom: 0.0625rem;
18147
+ border-width: 5px 5px 0;
18148
+ bottom: 1px;
17903
18149
  }
17904
18150
 
17905
18151
  .popover-header {
17906
18152
  color: #272833;
17907
18153
  background-color: #fff;
17908
- border-bottom: 0.0625rem solid #f2f2f2;
18154
+ border-bottom: 1px solid #f2f2f2;
17909
18155
  border-color: #e7e7ed;
17910
- border-top-left-radius: calc( 0.25rem - 0.0625rem );
17911
- border-top-right-radius: calc( 0.25rem - 0.0625rem );
18156
+ border-top-left-radius: calc( 0.25rem - 1px );
18157
+ border-top-right-radius: calc( 0.25rem - 1px );
17912
18158
  font-size: 0.875rem;
17913
18159
  font-weight: 600;
17914
18160
  margin-bottom: 0;
@@ -17921,8 +18167,8 @@ label.custom-control-label {
17921
18167
  display: none;
17922
18168
  }
17923
18169
  .popover-body {
17924
- border-bottom-left-radius: calc( 0.25rem - 0.0625rem );
17925
- border-bottom-right-radius: calc( 0.25rem - 0.0625rem );
18170
+ border-bottom-left-radius: calc( 0.25rem - 1px );
18171
+ border-bottom-right-radius: calc( 0.25rem - 1px );
17926
18172
  color: #6b6c7e;
17927
18173
  padding: 0.75rem 1rem;
17928
18174
  }
@@ -17932,29 +18178,29 @@ label.custom-control-label {
17932
18178
  .clay-popover-top,
17933
18179
  .clay-popover-top-left,
17934
18180
  .clay-popover-top-right {
17935
- margin-bottom: 0.3rem;
18181
+ margin-bottom: 5px;
17936
18182
  }
17937
18183
  .clay-popover-top .arrow,
17938
18184
  .clay-popover-top-left .arrow,
17939
18185
  .clay-popover-top-right .arrow {
17940
18186
  left: 50%;
17941
- margin-left: -0.3rem;
17942
- bottom: calc((0.3rem + 0.0625rem) * -1);
18187
+ margin-left: -5px;
18188
+ bottom: calc((5px + 1px) * -1);
17943
18189
  margin: 0;
17944
18190
  }
17945
18191
  .clay-popover-top .arrow::before,
17946
18192
  .clay-popover-top-left .arrow::before,
17947
18193
  .clay-popover-top-right .arrow::before {
17948
18194
  border-top-color: transparent;
17949
- border-width: 0.3rem 0.3rem 0;
18195
+ border-width: 5px 5px 0;
17950
18196
  bottom: 0;
17951
18197
  }
17952
18198
  .clay-popover-top .arrow::after,
17953
18199
  .clay-popover-top-left .arrow::after,
17954
18200
  .clay-popover-top-right .arrow::after {
17955
18201
  border-top-color: #fff;
17956
- border-width: 0.3rem 0.3rem 0;
17957
- bottom: 0.0625rem;
18202
+ border-width: 5px 5px 0;
18203
+ bottom: 1px;
17958
18204
  }
17959
18205
  .clay-popover-top-left .arrow {
17960
18206
  left: 0.625rem;
@@ -17968,30 +18214,30 @@ label.custom-control-label {
17968
18214
  .clay-popover-right,
17969
18215
  .clay-popover-right-bottom,
17970
18216
  .clay-popover-right-top {
17971
- margin-left: 0.3rem;
18217
+ margin-left: 5px;
17972
18218
  }
17973
18219
  .clay-popover-right .arrow,
17974
18220
  .clay-popover-right-bottom .arrow,
17975
18221
  .clay-popover-right-top .arrow {
17976
- height: 0.6rem;
17977
- left: calc((0.3rem + 0.0625rem) * -1);
17978
- margin: -0.15rem 0 0;
18222
+ height: 10px;
18223
+ left: calc((5px + 1px) * -1);
18224
+ margin: -2.5px 0 0;
17979
18225
  top: 50%;
17980
- width: 0.3rem;
18226
+ width: 5px;
17981
18227
  }
17982
18228
  .clay-popover-right .arrow::before,
17983
18229
  .clay-popover-right-bottom .arrow::before,
17984
18230
  .clay-popover-right-top .arrow::before {
17985
18231
  border-right-color: transparent;
17986
- border-width: 0.3rem 0.3rem 0.3rem 0;
18232
+ border-width: 5px 5px 5px 0;
17987
18233
  left: 0;
17988
18234
  }
17989
18235
  .clay-popover-right .arrow::after,
17990
18236
  .clay-popover-right-bottom .arrow::after,
17991
18237
  .clay-popover-right-top .arrow::after {
17992
18238
  border-right-color: #fff;
17993
- border-width: 0.3rem 0.3rem 0.3rem 0;
17994
- left: 0.0625rem;
18239
+ border-width: 5px 5px 5px 0;
18240
+ left: 1px;
17995
18241
  }
17996
18242
  .clay-popover-right-bottom .arrow {
17997
18243
  bottom: 0.625rem;
@@ -18008,28 +18254,28 @@ label.custom-control-label {
18008
18254
  .clay-popover-bottom,
18009
18255
  .clay-popover-bottom-left,
18010
18256
  .clay-popover-bottom-right {
18011
- margin-top: 0.3rem;
18257
+ margin-top: 5px;
18012
18258
  }
18013
18259
  .clay-popover-bottom .arrow,
18014
18260
  .clay-popover-bottom-left .arrow,
18015
18261
  .clay-popover-bottom-right .arrow {
18016
18262
  left: 50%;
18017
- margin: 0 0 0 -0.3rem;
18018
- top: calc((0.3rem + 0.0625rem) * -1);
18263
+ margin: 0 0 0 -5px;
18264
+ top: calc((5px + 1px) * -1);
18019
18265
  }
18020
18266
  .clay-popover-bottom .arrow::before,
18021
18267
  .clay-popover-bottom-left .arrow::before,
18022
18268
  .clay-popover-bottom-right .arrow::before {
18023
18269
  border-bottom-color: transparent;
18024
- border-width: 0 0.3rem 0.3rem 0.3rem;
18270
+ border-width: 0 5px 5px 5px;
18025
18271
  top: 0;
18026
18272
  }
18027
18273
  .clay-popover-bottom .arrow::after,
18028
18274
  .clay-popover-bottom-left .arrow::after,
18029
18275
  .clay-popover-bottom-right .arrow::after {
18030
18276
  border-bottom-color: #fff;
18031
- border-width: 0 0.3rem 0.3rem 0.3rem;
18032
- top: 0.0625rem;
18277
+ border-width: 0 5px 5px 5px;
18278
+ top: 1px;
18033
18279
  }
18034
18280
  .clay-popover-bottom-left .arrow {
18035
18281
  left: 0.625rem;
@@ -18048,30 +18294,30 @@ label.custom-control-label {
18048
18294
  .clay-popover-left,
18049
18295
  .clay-popover-left-bottom,
18050
18296
  .clay-popover-left-top {
18051
- margin-right: 0.3rem;
18297
+ margin-right: 5px;
18052
18298
  }
18053
18299
  .clay-popover-left .arrow,
18054
18300
  .clay-popover-left-bottom .arrow,
18055
18301
  .clay-popover-left-top .arrow {
18056
- height: 0.6rem;
18057
- margin: -0.15rem 0 0;
18058
- right: calc((0.3rem + 0.0625rem) * -1);
18302
+ height: 10px;
18303
+ margin: -2.5px 0 0;
18304
+ right: calc((5px + 1px) * -1);
18059
18305
  top: 50%;
18060
- width: 0.3rem;
18306
+ width: 5px;
18061
18307
  }
18062
18308
  .clay-popover-left .arrow::before,
18063
18309
  .clay-popover-left-bottom .arrow::before,
18064
18310
  .clay-popover-left-top .arrow::before {
18065
18311
  border-left-color: transparent;
18066
- border-width: 0.3rem 0 0.3rem 0.3rem;
18312
+ border-width: 5px 0 5px 5px;
18067
18313
  right: 0;
18068
18314
  }
18069
18315
  .clay-popover-left .arrow::after,
18070
18316
  .clay-popover-left-bottom .arrow::after,
18071
18317
  .clay-popover-left-top .arrow::after {
18072
18318
  border-left-color: #fff;
18073
- border-width: 0.3rem 0 0.3rem 0.3rem;
18074
- right: 0.0625rem;
18319
+ border-width: 5px 0 5px 5px;
18320
+ right: 1px;
18075
18321
  }
18076
18322
  .clay-popover-left-bottom .arrow {
18077
18323
  bottom: 0.625rem;
@@ -18113,6 +18359,9 @@ label.custom-control-label {
18113
18359
  transition: none;
18114
18360
  }
18115
18361
  }
18362
+ .c-prefers-reduced-motion .progress-bar {
18363
+ transition: none;
18364
+ }
18116
18365
 
18117
18366
  .progress-bar-striped {
18118
18367
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
@@ -18455,11 +18704,15 @@ a.sheet-subtitle {
18455
18704
  transition: none;
18456
18705
  }
18457
18706
  }
18707
+ .c-prefers-reduced-motion a.sheet-subtitle {
18708
+ transition: none;
18709
+ }
18710
+
18458
18711
  a.sheet-subtitle:hover, a.sheet-subtitle.hover {
18459
18712
  text-decoration: none;
18460
18713
  }
18461
18714
  a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18462
- box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
18715
+ box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #528eff;
18463
18716
  outline: 0;
18464
18717
  }
18465
18718
  .sheet-tertiary-title {
@@ -18660,7 +18913,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18660
18913
  -webkit-overflow-scrolling: touch;
18661
18914
  }
18662
18915
  .sidebar:focus, .sidebar.focus {
18663
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
18916
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
18664
18917
  outline: 0;
18665
18918
  }
18666
18919
  .sidebar .container-fluid {
@@ -18790,7 +19043,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18790
19043
  .sidenav-start .sidebar-light:focus, .sidenav-start .sidebar-light.focus,
18791
19044
  .sidenav-left .sidebar-light:focus,
18792
19045
  .sidenav-left .sidebar-light.focus {
18793
- box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
19046
+ box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1), inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
18794
19047
  }
18795
19048
 
18796
19049
  .sidebar-light .sidebar-list-group .list-group-title {
@@ -18811,7 +19064,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18811
19064
  color: #272833;
18812
19065
  }
18813
19066
  .sidebar-light .panel-unstyled .panel-header.panel-header-link.focus, .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
18814
- box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #80acff;
19067
+ box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #528eff;
18815
19068
  }
18816
19069
  .sidebar-light .component-navigation-bar {
18817
19070
  background-color: #fff;
@@ -18887,11 +19140,15 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18887
19140
  transition: none;
18888
19141
  }
18889
19142
  }
19143
+ .c-prefers-reduced-motion .sidebar-dark .nav-nested .nav-link {
19144
+ transition: none;
19145
+ }
19146
+
18890
19147
  .sidebar-dark .nav-nested .nav-link:hover, .sidebar-dark .nav-nested .nav-link.hover {
18891
19148
  color: #fff;
18892
19149
  }
18893
19150
  .sidebar-dark .nav-nested .nav-link.focus, .sidebar-dark .nav-nested .nav-link:focus {
18894
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
19151
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
18895
19152
  outline: 0;
18896
19153
  }
18897
19154
  .sidebar-dark .nav-nested .nav-link:active {
@@ -18945,11 +19202,15 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18945
19202
  transition: none;
18946
19203
  }
18947
19204
  }
19205
+ .c-prefers-reduced-motion .sidebar-dark-l2 .nav-nested .nav-link {
19206
+ transition: none;
19207
+ }
19208
+
18948
19209
  .sidebar-dark-l2 .nav-nested .nav-link:hover, .sidebar-dark-l2 .nav-nested .nav-link.hover {
18949
19210
  color: #fff;
18950
19211
  }
18951
19212
  .sidebar-dark-l2 .nav-nested .nav-link.focus, .sidebar-dark-l2 .nav-nested .nav-link:focus {
18952
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
19213
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
18953
19214
  outline: 0;
18954
19215
  }
18955
19216
  .sidebar-dark-l2 .nav-nested .nav-link:active {
@@ -18977,6 +19238,9 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18977
19238
  transition: none;
18978
19239
  }
18979
19240
  }
19241
+ .c-prefers-reduced-motion .c-slideout-transition-in {
19242
+ transition: none;
19243
+ }
18980
19244
 
18981
19245
  .c-slideout-transition-out {
18982
19246
  transition: all 0.2s ease-in;
@@ -18986,6 +19250,9 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18986
19250
  transition: none;
18987
19251
  }
18988
19252
  }
19253
+ .c-prefers-reduced-motion .c-slideout-transition-out {
19254
+ transition: none;
19255
+ }
18989
19256
 
18990
19257
  .c-slideout-fixed {
18991
19258
  position: fixed;
@@ -19164,11 +19431,15 @@ caption {
19164
19431
  transition: none;
19165
19432
  }
19166
19433
  }
19434
+ .c-prefers-reduced-motion .table thead th [href] {
19435
+ transition: none;
19436
+ }
19437
+
19167
19438
  .table thead th [href]:hover, .table thead th [href].hover {
19168
19439
  color: #272833;
19169
19440
  }
19170
19441
  .table thead th [href].focus, .table thead th [href]:focus {
19171
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
19442
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
19172
19443
  outline: 0;
19173
19444
  }
19174
19445
  .table th:first-child,
@@ -19576,6 +19847,11 @@ caption {
19576
19847
  transition: none;
19577
19848
  }
19578
19849
  }
19850
+ .c-prefers-reduced-motion .table-title[href],
19851
+ .c-prefers-reduced-motion .table-title [href] {
19852
+ transition: none;
19853
+ }
19854
+
19579
19855
  .table-title[href]:hover, .table-title[href].hover,
19580
19856
  .table-title [href]:hover,
19581
19857
  .table-title [href].hover {
@@ -19584,7 +19860,7 @@ caption {
19584
19860
  .table-title[href].focus, .table-title[href]:focus,
19585
19861
  .table-title [href].focus,
19586
19862
  .table-title [href]:focus {
19587
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
19863
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
19588
19864
  outline: 0;
19589
19865
  }
19590
19866
  .table-link {
@@ -19599,11 +19875,15 @@ caption {
19599
19875
  transition: none;
19600
19876
  }
19601
19877
  }
19878
+ .c-prefers-reduced-motion .table-link {
19879
+ transition: none;
19880
+ }
19881
+
19602
19882
  .table-link:hover, .table-link.hover {
19603
19883
  color: #272833;
19604
19884
  }
19605
19885
  .table-link.focus, .table-link:focus {
19606
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
19886
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
19607
19887
  outline: 0;
19608
19888
  }
19609
19889
  .table-action-link {
@@ -19623,6 +19903,10 @@ caption {
19623
19903
  transition: none;
19624
19904
  }
19625
19905
  }
19906
+ .c-prefers-reduced-motion .table-action-link {
19907
+ transition: none;
19908
+ }
19909
+
19626
19910
  .table-action-link:hover, .table-action-link.hover {
19627
19911
  text-decoration: none;
19628
19912
  background-color: rgba(0, 0, 0, 0.02);
@@ -19631,7 +19915,7 @@ caption {
19631
19915
  .table-action-link.focus, .table-action-link:focus {
19632
19916
  background-color: rgba(0, 0, 0, 0.02);
19633
19917
  color: #272833;
19634
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
19918
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
19635
19919
  outline: 0;
19636
19920
  }
19637
19921
  .table-action-link:active {
@@ -19919,6 +20203,11 @@ caption {
19919
20203
  transition: none;
19920
20204
  }
19921
20205
  }
20206
+ .c-prefers-reduced-motion .table-list-title[href],
20207
+ .c-prefers-reduced-motion .table-list-title [href] {
20208
+ transition: none;
20209
+ }
20210
+
19922
20211
  .table-list-title[href]:hover, .table-list-title[href].hover,
19923
20212
  .table-list-title [href]:hover,
19924
20213
  .table-list-title [href].hover {
@@ -19927,7 +20216,7 @@ caption {
19927
20216
  .table-list-title[href].focus, .table-list-title[href]:focus,
19928
20217
  .table-list-title [href].focus,
19929
20218
  .table-list-title [href]:focus {
19930
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
20219
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
19931
20220
  outline: 0;
19932
20221
  }
19933
20222
  .table-list-link {
@@ -19942,11 +20231,15 @@ caption {
19942
20231
  transition: none;
19943
20232
  }
19944
20233
  }
20234
+ .c-prefers-reduced-motion .table-list-link {
20235
+ transition: none;
20236
+ }
20237
+
19945
20238
  .table-list-link:hover, .table-list-link.hover {
19946
20239
  color: #272833;
19947
20240
  }
19948
20241
  .table-list-link.focus, .table-list-link:focus {
19949
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
20242
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
19950
20243
  outline: 0;
19951
20244
  }
19952
20245
  .table-list-action-link {
@@ -19965,6 +20258,10 @@ caption {
19965
20258
  transition: none;
19966
20259
  }
19967
20260
  }
20261
+ .c-prefers-reduced-motion .table-list-action-link {
20262
+ transition: none;
20263
+ }
20264
+
19968
20265
  .table-list-action-link:hover, .table-list-action-link.hover {
19969
20266
  text-decoration: none;
19970
20267
  background-color: rgba(0, 0, 0, 0.02);
@@ -19973,7 +20270,7 @@ caption {
19973
20270
  .table-list-action-link.focus, .table-list-action-link:focus {
19974
20271
  background-color: rgba(0, 0, 0, 0.02);
19975
20272
  color: #272833;
19976
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
20273
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
19977
20274
  outline: 0;
19978
20275
  }
19979
20276
  .table-list-action-link:active {
@@ -20625,10 +20922,10 @@ caption {
20625
20922
  width: 2.5rem;
20626
20923
  }
20627
20924
  .tbar-stacked .tbar-btn-monospaced:focus, .tbar-stacked .tbar-btn-monospaced.focus {
20628
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
20925
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
20629
20926
  }
20630
20927
  .tbar-stacked .tbar-btn-monospaced:active:focus {
20631
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
20928
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
20632
20929
  }
20633
20930
  .tbar-stacked .tbar-btn-monospaced .c-inner {
20634
20931
  margin-bottom: 0;
@@ -21084,6 +21381,10 @@ caption {
21084
21381
  transition: none;
21085
21382
  }
21086
21383
  }
21384
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar::before {
21385
+ transition: none;
21386
+ }
21387
+
21087
21388
  .toggle-switch-check ~ .toggle-switch-bar::after {
21088
21389
  background-color: #fff;
21089
21390
  border-color: #fff;
@@ -21105,6 +21406,10 @@ caption {
21105
21406
  transition: none;
21106
21407
  }
21107
21408
  }
21409
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar::after {
21410
+ transition: none;
21411
+ }
21412
+
21108
21413
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
21109
21414
  transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
21110
21415
  }
@@ -21113,6 +21418,10 @@ caption {
21113
21418
  transition: none;
21114
21419
  }
21115
21420
  }
21421
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
21422
+ transition: none;
21423
+ }
21424
+
21116
21425
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
21117
21426
  content: '\FEFF' attr(data-label-off);
21118
21427
  margin-left: 56px;
@@ -21124,6 +21433,10 @@ caption {
21124
21433
  transition: none;
21125
21434
  }
21126
21435
  }
21436
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
21437
+ transition: none;
21438
+ }
21439
+
21127
21440
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
21128
21441
  color: #fff;
21129
21442
  left: 4px;
@@ -21141,6 +21454,10 @@ caption {
21141
21454
  transition: none;
21142
21455
  }
21143
21456
  }
21457
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
21458
+ transition: none;
21459
+ }
21460
+
21144
21461
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-on {
21145
21462
  left: 4px;
21146
21463
  opacity: 0;
@@ -21155,7 +21472,7 @@ caption {
21155
21472
  opacity: 0;
21156
21473
  }
21157
21474
  .toggle-switch-check:focus ~ .toggle-switch-bar::before {
21158
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
21475
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
21159
21476
  }
21160
21477
  .toggle-switch-check[disabled] ~ .toggle-switch-bar, .toggle-switch-check:disabled ~ .toggle-switch-bar {
21161
21478
  cursor: not-allowed;
@@ -21603,10 +21920,10 @@ caption {
21603
21920
  width: 24px;
21604
21921
  }
21605
21922
  .treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
21606
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
21923
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
21607
21924
  }
21608
21925
  .treeview .btn-monospaced:active:focus {
21609
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
21926
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
21610
21927
  }
21611
21928
  .treeview .custom-control {
21612
21929
  margin-left: 4px;
@@ -21668,6 +21985,10 @@ caption {
21668
21985
  transition: none;
21669
21986
  }
21670
21987
  }
21988
+ .c-prefers-reduced-motion .treeview.show-component-expander-on-hover:hover .component-expander, .c-prefers-reduced-motion .treeview.show-component-expander-on-hover.hover .component-expander {
21989
+ transition: none;
21990
+ }
21991
+
21671
21992
  .treeview.show-component-expander-on-hover .treeview-link:focus .component-expander, .treeview.show-component-expander-on-hover .treeview-link.focus .component-expander {
21672
21993
  opacity: 1;
21673
21994
  transition: none;
@@ -21681,6 +22002,10 @@ caption {
21681
22002
  transition: none;
21682
22003
  }
21683
22004
  }
22005
+ .c-prefers-reduced-motion .treeview.show-component-expander-on-hover .component-expander {
22006
+ transition: none;
22007
+ }
22008
+
21684
22009
  .treeview .quick-action-item {
21685
22010
  margin: 0 2px;
21686
22011
  min-height: 0;
@@ -21711,6 +22036,25 @@ caption {
21711
22036
  overflow-wrap: break-word;
21712
22037
  word-wrap: break-word;
21713
22038
  }
22039
+ .treeview-dropping-indicator-top {
22040
+ background-color: transparent;
22041
+ display: block;
22042
+ height: 2px;
22043
+ margin-top: -2px;
22044
+ outline: none;
22045
+ width: 100%;
22046
+ }
22047
+ .treeview-dropping-indicator-bottom {
22048
+ background-color: transparent;
22049
+ display: block;
22050
+ height: 2px;
22051
+ margin-bottom: -2px;
22052
+ outline: none;
22053
+ width: 100%;
22054
+ }
22055
+ .treeview-dropping-indicator-over {
22056
+ background-color: #528eff;
22057
+ }
21714
22058
  .treeview-link {
21715
22059
  background-color: transparent;
21716
22060
  cursor: pointer;
@@ -21733,21 +22077,15 @@ caption {
21733
22077
  text-decoration: none;
21734
22078
  }
21735
22079
  .treeview-link.focus, .treeview-link:focus {
21736
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
22080
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
21737
22081
  outline: 0;
21738
22082
  }
21739
22083
  .treeview-link:disabled, .treeview-link.disabled {
21740
22084
  cursor: not-allowed;
21741
22085
  }
21742
- .treeview-link.treeview-dropping-bottom {
21743
- box-shadow: 0 2px 0 0 #80acff;
21744
- }
21745
22086
  .treeview-link.treeview-dropping-middle {
21746
22087
  background-color: #f0f5ff;
21747
- border-color: #80acff;
21748
- }
21749
- .treeview-link.treeview-dropping-top {
21750
- box-shadow: 0 -2px 0 0 #80acff;
22088
+ border-color: #528eff;
21751
22089
  }
21752
22090
  .treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
21753
22091
  display: none;
@@ -21770,7 +22108,7 @@ caption {
21770
22108
  }
21771
22109
  .treeview-dragging {
21772
22110
  background-color: #fff;
21773
- border-color: #80acff;
22111
+ border-color: #528eff;
21774
22112
  border-radius: 0.1875rem;
21775
22113
  border-style: solid;
21776
22114
  border-width: 1px;
@@ -21887,6 +22225,10 @@ caption {
21887
22225
  transition: none;
21888
22226
  }
21889
22227
  }
22228
+ .c-prefers-reduced-motion .close {
22229
+ transition: none;
22230
+ }
22231
+
21890
22232
  .close:hover {
21891
22233
  color: #272833;
21892
22234
  opacity: 1;
@@ -21894,7 +22236,7 @@ caption {
21894
22236
  outline: 0;
21895
22237
  }
21896
22238
  .close:focus {
21897
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
22239
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
21898
22240
  outline: 0;
21899
22241
  opacity: 0.75;
21900
22242
  }
@@ -21910,7 +22252,7 @@ caption {
21910
22252
  }
21911
22253
 
21912
22254
  .c-focus-inset:focus:not(:disabled):not(.disabled):not([disabled]), .c-focus-inset.focus:not(:disabled):not(.disabled):not([disabled]) {
21913
- box-shadow: inset 0 0 0 0.125rem #80acff, inset 0 0 0 0.25rem #fff;
22255
+ box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
21914
22256
  border-color: #80acff;
21915
22257
  outline: 0;
21916
22258
  }
@@ -22144,7 +22486,7 @@ ul.autofit-row {
22144
22486
  outline: 0;
22145
22487
  }
22146
22488
  .inline-scroller:focus-visible {
22147
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
22489
+ box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
22148
22490
  }
22149
22491
 
22150
22492
  .inline-item {
@@ -32280,6 +32622,11 @@ a.text-dark:hover, a.text-dark:focus {
32280
32622
  visibility: hidden !important;
32281
32623
  }
32282
32624
 
32625
+ .c-prefers-reduced-motion {
32626
+ scroll-behavior: auto;
32627
+ transition: none;
32628
+ }
32629
+
32283
32630
  @keyframes loading-animation-circle {
32284
32631
  100% {
32285
32632
  transform: rotate(360deg);