@clayui/css 3.90.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 (71) hide show
  1. package/lib/css/atlas.css +564 -280
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +268 -82
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +453 -197
  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/_components.scss +1 -0
  10. package/src/scss/_license-text.scss +1 -1
  11. package/src/scss/_variables.scss +1 -0
  12. package/src/scss/atlas/variables/_cards.scss +3 -4
  13. package/src/scss/atlas/variables/_clay-color.scss +1 -1
  14. package/src/scss/atlas/variables/_globals.scss +2 -2
  15. package/src/scss/atlas/variables/_navbar.scss +34 -0
  16. package/src/scss/atlas/variables/_navigation-bar.scss +1 -1
  17. package/src/scss/atlas/variables/_navs.scss +12 -37
  18. package/src/scss/atlas/variables/_panels.scss +1 -1
  19. package/src/scss/atlas/variables/_popovers.scss +2 -1
  20. package/src/scss/atlas/variables/_sheets.scss +1 -1
  21. package/src/scss/atlas/variables/_sidebar.scss +1 -1
  22. package/src/scss/atlas/variables/_time.scss +1 -1
  23. package/src/scss/cadmin/_variables.scss +1 -0
  24. package/src/scss/cadmin/components/_badges.scss +5 -1
  25. package/src/scss/cadmin/components/_multi-step-nav.scss +39 -0
  26. package/src/scss/cadmin/components/_navbar.scss +1 -43
  27. package/src/scss/cadmin/components/_navs.scss +8 -16
  28. package/src/scss/cadmin/components/_resizer.scss +11 -0
  29. package/src/scss/cadmin/components/_treeview.scss +18 -16
  30. package/src/scss/cadmin/components/_utilities-functional-important.scss +6 -0
  31. package/src/scss/cadmin/variables/_badges.scss +5 -0
  32. package/src/scss/cadmin/variables/_buttons.scss +14 -1
  33. package/src/scss/cadmin/variables/_clay-color.scss +1 -1
  34. package/src/scss/cadmin/variables/_date-picker.scss +8 -0
  35. package/src/scss/cadmin/variables/_globals.scss +2 -2
  36. package/src/scss/cadmin/variables/_multi-step-nav.scss +23 -0
  37. package/src/scss/cadmin/variables/_navbar.scss +47 -0
  38. package/src/scss/cadmin/variables/_navigation-bar.scss +1 -1
  39. package/src/scss/cadmin/variables/_navs.scss +14 -110
  40. package/src/scss/cadmin/variables/_panels.scss +1 -1
  41. package/src/scss/cadmin/variables/_resizer.scss +21 -0
  42. package/src/scss/cadmin/variables/_sheets.scss +1 -1
  43. package/src/scss/cadmin/variables/_sidebar.scss +1 -1
  44. package/src/scss/cadmin/variables/_slideout.scss +7 -0
  45. package/src/scss/cadmin/variables/_tbar.scss +2 -4
  46. package/src/scss/cadmin/variables/_time.scss +1 -1
  47. package/src/scss/cadmin/variables/_treeview.scss +22 -8
  48. package/src/scss/cadmin/variables/_utilities.scss +12 -1
  49. package/src/scss/cadmin.scss +1 -0
  50. package/src/scss/components/_badges.scss +5 -1
  51. package/src/scss/components/_multi-step-nav.scss +42 -0
  52. package/src/scss/components/_navbar.scss +1 -40
  53. package/src/scss/components/_navs.scss +9 -26
  54. package/src/scss/components/_resizer.scss +11 -0
  55. package/src/scss/components/_treeview.scss +18 -12
  56. package/src/scss/components/_utilities-functional-important.scss +6 -0
  57. package/src/scss/mixins/_globals.scss +6 -0
  58. package/src/scss/mixins/_nav.scss +16 -0
  59. package/src/scss/mixins/_slideout.scss +32 -1
  60. package/src/scss/mixins/_transition.scss +6 -0
  61. package/src/scss/variables/_badges.scss +5 -0
  62. package/src/scss/variables/_buttons.scss +14 -1
  63. package/src/scss/variables/_date-picker.scss +2 -2
  64. package/src/scss/variables/_multi-step-nav.scss +23 -0
  65. package/src/scss/variables/_navbar.scss +46 -0
  66. package/src/scss/variables/_navs.scss +37 -100
  67. package/src/scss/variables/_resizer.scss +22 -0
  68. package/src/scss/variables/_slideout.scss +8 -0
  69. package/src/scss/variables/_tbar.scss +2 -2
  70. package/src/scss/variables/_treeview.scss +22 -8
  71. 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.90.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;
@@ -2001,6 +2034,28 @@ input[type=button].btn-block {
2001
2034
  margin-top: -0.1em;
2002
2035
  }
2003
2036
 
2037
+ .c-horizontal-resizer {
2038
+ background-color: transparent;
2039
+ bottom: 0;
2040
+ cursor: ew-resize;
2041
+ margin-right: -0.25rem;
2042
+ position: absolute;
2043
+ right: 0;
2044
+ top: 0;
2045
+ -ms-user-select: none;
2046
+ -moz-user-select: none;
2047
+ -webkit-user-select: none;
2048
+ user-select: none;
2049
+ width: 0.5rem;
2050
+ z-index: 10;
2051
+ }
2052
+ .c-horizontal-resizer:hover {
2053
+ background-color: #528eff;
2054
+ }
2055
+ .c-horizontal-resizer:focus {
2056
+ background-color: #528eff;
2057
+ }
2058
+
2004
2059
  .fade {
2005
2060
  transition: opacity 0.15s linear;
2006
2061
  }
@@ -2009,6 +2064,10 @@ input[type=button].btn-block {
2009
2064
  transition: none;
2010
2065
  }
2011
2066
  }
2067
+ .c-prefers-reduced-motion .fade {
2068
+ transition: none;
2069
+ }
2070
+
2012
2071
  .fade:not(.show) {
2013
2072
  opacity: 0;
2014
2073
  }
@@ -2028,6 +2087,9 @@ input[type=button].btn-block {
2028
2087
  transition: none;
2029
2088
  }
2030
2089
  }
2090
+ .c-prefers-reduced-motion .collapsing {
2091
+ transition: none;
2092
+ }
2031
2093
 
2032
2094
  .container {
2033
2095
  margin-left: auto;
@@ -4024,6 +4086,10 @@ input[type=button].btn-block {
4024
4086
  transition: none;
4025
4087
  }
4026
4088
  }
4089
+ .c-prefers-reduced-motion .badge {
4090
+ transition: none;
4091
+ }
4092
+
4027
4093
  .badge:empty {
4028
4094
  display: none;
4029
4095
  }
@@ -4031,7 +4097,7 @@ input[type=button].btn-block {
4031
4097
  text-decoration: none;
4032
4098
  }
4033
4099
  .badge[href].focus, .badge[href]:focus, .badge[type].focus, .badge[type]:focus {
4034
- 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;
4035
4101
  outline: 0;
4036
4102
  }
4037
4103
  .badge a {
@@ -4258,6 +4324,11 @@ input[type=button].btn-block {
4258
4324
  color: #fff;
4259
4325
  box-shadow: 0 0 0 0.2rem rgba(39, 40, 51, 0.5);
4260
4326
  }
4327
+ .badge-beta {
4328
+ background-color: #f7f8f9;
4329
+ color: #294f98;
4330
+ text-transform: uppercase;
4331
+ }
4261
4332
  .breadcrumb {
4262
4333
  background-color: transparent;
4263
4334
  border-radius: 0.25rem;
@@ -4281,6 +4352,10 @@ input[type=button].btn-block {
4281
4352
  transition: none;
4282
4353
  }
4283
4354
  }
4355
+ .c-prefers-reduced-motion .breadcrumb-link {
4356
+ transition: none;
4357
+ }
4358
+
4284
4359
  .breadcrumb-link:hover, .breadcrumb-link.hover {
4285
4360
  color: #6b6c7e;
4286
4361
  text-decoration: underline;
@@ -4288,7 +4363,7 @@ input[type=button].btn-block {
4288
4363
  .breadcrumb-link.focus, .breadcrumb-link:focus {
4289
4364
  color: #6b6c7e;
4290
4365
  text-decoration: underline;
4291
- 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;
4292
4367
  outline: 0;
4293
4368
  }
4294
4369
  .breadcrumb-item {
@@ -4578,6 +4653,10 @@ input[type=button].btn-block {
4578
4653
  transition: none;
4579
4654
  }
4580
4655
  }
4656
+ .c-prefers-reduced-motion .label {
4657
+ transition: none;
4658
+ }
4659
+
4581
4660
  .label:disabled, .label.disabled {
4582
4661
  box-shadow: none;
4583
4662
  }
@@ -4590,7 +4669,7 @@ input[type=button].btn-block {
4590
4669
  }
4591
4670
  .label[href].focus, .label[href]:focus, .label[type].focus, .label[type]:focus, .label[tabindex].focus, .label[tabindex]:focus {
4592
4671
  text-decoration: underline;
4593
- 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;
4594
4673
  }
4595
4674
  .label a,
4596
4675
  .label .btn-unstyled {
@@ -6089,12 +6168,16 @@ input[type=button].btn-block {
6089
6168
  transition: none;
6090
6169
  }
6091
6170
  }
6171
+ .c-prefers-reduced-motion .card-interactive {
6172
+ transition: none;
6173
+ }
6174
+
6092
6175
  .card-interactive:hover, .card-interactive.hover {
6093
6176
  background-color: #f7f8f9;
6094
6177
  text-decoration: none;
6095
6178
  }
6096
6179
  .card-interactive:focus, .card-interactive.focus {
6097
- 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;
6098
6181
  }
6099
6182
  .card-interactive:active, .card-interactive.active {
6100
6183
  background-color: #f1f2f5;
@@ -6114,6 +6197,10 @@ input[type=button].btn-block {
6114
6197
  transition: none;
6115
6198
  }
6116
6199
  }
6200
+ .c-prefers-reduced-motion .card-interactive::after {
6201
+ transition: none;
6202
+ }
6203
+
6117
6204
  .card-interactive:hover::after, .card-interactive.hover::after {
6118
6205
  height: 4px;
6119
6206
  }
@@ -6151,12 +6238,12 @@ input[type=button].btn-block {
6151
6238
  .card-interactive-secondary:hover, .card-interactive-secondary.hover {
6152
6239
  background-color: #fff;
6153
6240
  border-color: transparent;
6154
- box-shadow: 0 0 0 2px #719aff;
6241
+ box-shadow: 0 0 0 2px #528eff;
6155
6242
  color: #272833;
6156
6243
  }
6157
6244
  .card-interactive-secondary:focus, .card-interactive-secondary.focus {
6158
6245
  border-color: transparent;
6159
- box-shadow: 0 0 0 2px #719aff;
6246
+ box-shadow: 0 0 0 2px #528eff;
6160
6247
  }
6161
6248
  .card-interactive-secondary:active, .card-interactive-secondary.active {
6162
6249
  background-color: #fff;
@@ -6390,7 +6477,7 @@ input[type=button].btn-block {
6390
6477
  background-color: #f0f5ff;
6391
6478
  color: #272833;
6392
6479
  text-decoration: none;
6393
- 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;
6394
6481
  outline: 0;
6395
6482
  }
6396
6483
  .dropdown-item:active {
@@ -6419,7 +6506,7 @@ input[type=button].btn-block {
6419
6506
  color: #272833;
6420
6507
  }
6421
6508
  .dropdown-item.btn:not([disabled]):not(.disabled):active:focus, .dropdown-item.btn:not([disabled]):not(.disabled).active:focus {
6422
- 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;
6423
6510
  }
6424
6511
  .dropdown-item:disabled, .dropdown-item.disabled {
6425
6512
  background-color: transparent;
@@ -7080,6 +7167,9 @@ input[type=button].btn-block {
7080
7167
  transition: none;
7081
7168
  }
7082
7169
  }
7170
+ .c-prefers-reduced-motion .drilldown-inner {
7171
+ transition: none;
7172
+ }
7083
7173
 
7084
7174
  .drilldown-item {
7085
7175
  display: none;
@@ -7329,6 +7419,10 @@ fieldset[disabled] label .form-control {
7329
7419
  transition: none;
7330
7420
  }
7331
7421
  }
7422
+ .c-prefers-reduced-motion .form-control {
7423
+ transition: none;
7424
+ }
7425
+
7332
7426
  .form-control::placeholder {
7333
7427
  color: #6b6c7e;
7334
7428
  opacity: 1;
@@ -7336,7 +7430,7 @@ fieldset[disabled] label .form-control {
7336
7430
  .form-control:focus, .form-control.focus {
7337
7431
  background-color: #f0f5ff;
7338
7432
  border-color: #80acff;
7339
- 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;
7340
7434
  color: #272833;
7341
7435
  outline: 0;
7342
7436
  }
@@ -7709,7 +7803,7 @@ textarea.form-control-plaintext,
7709
7803
  box-shadow: none;
7710
7804
  }
7711
7805
  .form-control[type=range]:focus::-webkit-slider-thumb {
7712
- 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;
7713
7807
  }
7714
7808
  .form-control[type=range]::-webkit-slider-thumb {
7715
7809
  border-radius: 100px;
@@ -7799,6 +7893,10 @@ textarea.form-control-plaintext,
7799
7893
  transition: none;
7800
7894
  }
7801
7895
  }
7896
+ .c-prefers-reduced-motion .form-control-plaintext[readonly] {
7897
+ transition: none;
7898
+ }
7899
+
7802
7900
  .form-control-plaintext[readonly]:focus, .form-control-plaintext[readonly].focus {
7803
7901
  box-shadow: none;
7804
7902
  border-color: #80acff;
@@ -8078,12 +8176,16 @@ textarea.form-control-lg,
8078
8176
  transition: none;
8079
8177
  }
8080
8178
  }
8179
+ .c-prefers-reduced-motion .c-link {
8180
+ transition: none;
8181
+ }
8182
+
8081
8183
  .c-link:hover, .c-link.hover {
8082
8184
  text-decoration: none;
8083
8185
  }
8084
8186
  .c-link.focus, .c-link:focus {
8085
8187
  border-radius: 1px;
8086
- 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;
8087
8189
  outline: 0;
8088
8190
  }
8089
8191
  .c-link.text-secondary {
@@ -8112,12 +8214,16 @@ textarea.form-control-lg,
8112
8214
  transition: none;
8113
8215
  }
8114
8216
  }
8217
+ .c-prefers-reduced-motion .component-link {
8218
+ transition: none;
8219
+ }
8220
+
8115
8221
  .component-link:hover, .component-link.hover {
8116
8222
  color: #484955;
8117
8223
  }
8118
8224
  .component-link.focus, .component-link:focus {
8119
8225
  color: #484955;
8120
- 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;
8121
8227
  outline: 0;
8122
8228
  }
8123
8229
  .single-link {
@@ -8134,13 +8240,17 @@ textarea.form-control-lg,
8134
8240
  transition: none;
8135
8241
  }
8136
8242
  }
8243
+ .c-prefers-reduced-motion .link-primary {
8244
+ transition: none;
8245
+ }
8246
+
8137
8247
  .link-primary:hover, .link-primary.hover {
8138
8248
  color: #0041be;
8139
8249
  background-color: #f0f5ff;
8140
8250
  }
8141
8251
  .link-primary.focus, .link-primary:focus {
8142
8252
  color: #0041be;
8143
- 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;
8144
8254
  outline: 0;
8145
8255
  }
8146
8256
  .link-secondary {
@@ -8153,13 +8263,17 @@ textarea.form-control-lg,
8153
8263
  transition: none;
8154
8264
  }
8155
8265
  }
8266
+ .c-prefers-reduced-motion .link-secondary {
8267
+ transition: none;
8268
+ }
8269
+
8156
8270
  .link-secondary:hover, .link-secondary.hover {
8157
8271
  color: #272833;
8158
8272
  background-color: #f1f2f5;
8159
8273
  }
8160
8274
  .link-secondary.focus, .link-secondary:focus {
8161
8275
  color: #272833;
8162
- 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;
8163
8277
  outline: 0;
8164
8278
  }
8165
8279
  button.link-outline {
@@ -8190,11 +8304,15 @@ button.link-outline {
8190
8304
  transition: none;
8191
8305
  }
8192
8306
  }
8307
+ .c-prefers-reduced-motion .link-outline {
8308
+ transition: none;
8309
+ }
8310
+
8193
8311
  .link-outline:hover, .link-outline.hover {
8194
8312
  text-decoration: none;
8195
8313
  }
8196
8314
  .link-outline.focus, .link-outline:focus {
8197
- 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;
8198
8316
  outline: 0;
8199
8317
  }
8200
8318
  .link-outline:disabled, .link-outline.disabled {
@@ -8223,7 +8341,7 @@ button.link-outline {
8223
8341
  }
8224
8342
  .link-outline-primary.focus, .link-outline-primary:focus {
8225
8343
  background-color: #f0f5ff;
8226
- 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;
8227
8345
  color: #0b5fff;
8228
8346
  }
8229
8347
  .link-outline-primary:active {
@@ -8255,7 +8373,7 @@ button.link-outline {
8255
8373
  }
8256
8374
  .link-outline-secondary.focus, .link-outline-secondary:focus {
8257
8375
  background-color: rgba(39, 40, 51, 0.03);
8258
- 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;
8259
8377
  color: #272833;
8260
8378
  }
8261
8379
  .link-outline-secondary:active {
@@ -8323,6 +8441,11 @@ button.link-outline {
8323
8441
  transition: none;
8324
8442
  }
8325
8443
  }
8444
+ .c-prefers-reduced-motion .component-title[href],
8445
+ .c-prefers-reduced-motion .component-title [href] {
8446
+ transition: none;
8447
+ }
8448
+
8326
8449
  .component-title[href]:hover, .component-title[href].hover,
8327
8450
  .component-title [href]:hover,
8328
8451
  .component-title [href].hover {
@@ -8332,7 +8455,7 @@ button.link-outline {
8332
8455
  .component-title [href].focus,
8333
8456
  .component-title [href]:focus {
8334
8457
  color: #060608;
8335
- 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;
8336
8459
  outline: 0;
8337
8460
  }
8338
8461
  .component-subtitle {
@@ -8353,6 +8476,11 @@ button.link-outline {
8353
8476
  transition: none;
8354
8477
  }
8355
8478
  }
8479
+ .c-prefers-reduced-motion .component-subtitle[href],
8480
+ .c-prefers-reduced-motion .component-subtitle [href] {
8481
+ transition: none;
8482
+ }
8483
+
8356
8484
  .component-subtitle[href]:hover, .component-subtitle[href].hover,
8357
8485
  .component-subtitle [href]:hover,
8358
8486
  .component-subtitle [href].hover {
@@ -8362,7 +8490,7 @@ button.link-outline {
8362
8490
  .component-subtitle [href].focus,
8363
8491
  .component-subtitle [href]:focus {
8364
8492
  color: #272833;
8365
- 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;
8366
8494
  outline: 0;
8367
8495
  }
8368
8496
  .component-action {
@@ -8387,12 +8515,16 @@ button.link-outline {
8387
8515
  transition: none;
8388
8516
  }
8389
8517
  }
8518
+ .c-prefers-reduced-motion .component-action {
8519
+ transition: none;
8520
+ }
8521
+
8390
8522
  .component-action:hover, .component-action.hover {
8391
8523
  background-color: rgba(39, 40, 51, 0.03);
8392
8524
  color: #272833;
8393
8525
  }
8394
8526
  .component-action.focus, .component-action:focus {
8395
- 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;
8396
8528
  outline: 0;
8397
8529
  background-color: rgba(39, 40, 51, 0.03);
8398
8530
  color: #272833;
@@ -8492,6 +8624,10 @@ button.link-outline {
8492
8624
  transition: none;
8493
8625
  }
8494
8626
  }
8627
+ .c-prefers-reduced-motion .clay-range-input .tooltip {
8628
+ transition: none;
8629
+ }
8630
+
8495
8631
  .clay-range-input .tooltip-inner {
8496
8632
  padding: 0.5rem 0.75rem;
8497
8633
  }
@@ -8664,20 +8800,20 @@ button.link-outline {
8664
8800
  outline: 0;
8665
8801
  }
8666
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 {
8667
- 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;
8668
8804
  }
8669
8805
  .clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip, .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip {
8670
8806
  visibility: visible;
8671
8807
  opacity: 1;
8672
8808
  }
8673
8809
  .clay-range-input .form-control-range:focus::-moz-range-thumb, .clay-range-input .form-control-range.focus::-moz-range-thumb {
8674
- 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;
8675
8811
  }
8676
8812
  .clay-range-input .form-control-range:focus::-ms-thumb, .clay-range-input .form-control-range.focus::-ms-thumb {
8677
- 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;
8678
8814
  }
8679
8815
  .clay-range-input .form-control-range:focus::-webkit-slider-thumb, .clay-range-input .form-control-range.focus::-webkit-slider-thumb {
8680
- 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;
8681
8817
  }
8682
8818
  .clay-range-input .form-control-range:disabled {
8683
8819
  color: #a7a9bc;
@@ -8849,13 +8985,13 @@ button.link-outline {
8849
8985
  width: 1.5rem;
8850
8986
  }
8851
8987
  .clay-color-btn:active {
8852
- 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;
8853
8989
  }
8854
8990
  .clay-color-btn.active {
8855
- 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;
8856
8992
  }
8857
8993
  .clay-color-btn[aria-expanded=true], .clay-color-btn.show {
8858
- 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;
8859
8995
  }
8860
8996
  .clay-color-btn .c-inner {
8861
8997
  margin-bottom: 0;
@@ -8886,12 +9022,16 @@ button.link-outline {
8886
9022
  transition: none;
8887
9023
  }
8888
9024
  }
9025
+ .c-prefers-reduced-motion .clay-color-pointer {
9026
+ transition: none;
9027
+ }
9028
+
8889
9029
  .clay-color-pointer:focus, .clay-color-pointer.focus {
8890
- box-shadow: 0 0 0 0.125rem #80acff;
9030
+ box-shadow: 0 0 0 0.125rem #528eff;
8891
9031
  outline: 0;
8892
9032
  }
8893
9033
  .clay-color-pointer:active:focus {
8894
- box-shadow: 0 0 0 0.125rem #80acff;
9034
+ box-shadow: 0 0 0 0.125rem #528eff;
8895
9035
  }
8896
9036
  .clay-color-pointer .c-inner {
8897
9037
  margin-bottom: 0;
@@ -9028,7 +9168,7 @@ button.link-outline {
9028
9168
  }
9029
9169
  .form-file-input:focus + .input-group {
9030
9170
  border-radius: 1px;
9031
- 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;
9032
9172
  }
9033
9173
  .form-file-input:disabled {
9034
9174
  cursor: not-allowed;
@@ -9086,6 +9226,10 @@ button.link-outline {
9086
9226
  transition: none;
9087
9227
  }
9088
9228
  }
9229
+ .c-prefers-reduced-motion .custom-control-label::before {
9230
+ transition: none;
9231
+ }
9232
+
9089
9233
  .custom-control-label::after {
9090
9234
  background: no-repeat 50%/50% 50%;
9091
9235
  content: "";
@@ -9134,6 +9278,9 @@ label.custom-control-label {
9134
9278
  transition: none;
9135
9279
  }
9136
9280
  }
9281
+ .c-prefers-reduced-motion .custom-control-label::before {
9282
+ transition: none;
9283
+ }
9137
9284
 
9138
9285
  .custom-control-label::after {
9139
9286
  background: no-repeat 50%/50% 50%;
@@ -9158,12 +9305,12 @@ label.custom-control-label {
9158
9305
  }
9159
9306
  .custom-control-input:focus ~ .custom-control-label::before {
9160
9307
  border-color: #6b6c7e;
9161
- 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;
9162
9309
  }
9163
9310
  .custom-control-input:active ~ .custom-control-label::before {
9164
9311
  background-color: #fff;
9165
9312
  border-color: #6b6c7e;
9166
- 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;
9167
9314
  color: #fff;
9168
9315
  }
9169
9316
  .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
@@ -9312,6 +9459,10 @@ label.custom-control-label {
9312
9459
  transition: none;
9313
9460
  }
9314
9461
  }
9462
+ .c-prefers-reduced-motion .custom-switch .custom-control-label::after {
9463
+ transition: none;
9464
+ }
9465
+
9315
9466
  .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
9316
9467
  background-color: #fff;
9317
9468
  transform: translateX(0.75rem);
@@ -9397,7 +9548,7 @@ label.custom-control-label {
9397
9548
  }
9398
9549
  .custom-file-input:focus ~ .custom-file-label {
9399
9550
  border-color: #80acff;
9400
- 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;
9401
9552
  }
9402
9553
  .custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
9403
9554
  background-color: #f1f2f5;
@@ -9453,13 +9604,13 @@ label.custom-control-label {
9453
9604
  outline: none;
9454
9605
  }
9455
9606
  .custom-range:focus::-webkit-slider-thumb {
9456
- 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;
9457
9608
  }
9458
9609
  .custom-range:focus::-moz-range-thumb {
9459
- 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;
9460
9611
  }
9461
9612
  .custom-range:focus::-ms-thumb {
9462
- 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;
9463
9614
  }
9464
9615
  .custom-range::-moz-focus-outer {
9465
9616
  border: 0;
@@ -9481,6 +9632,10 @@ label.custom-control-label {
9481
9632
  transition: none;
9482
9633
  }
9483
9634
  }
9635
+ .c-prefers-reduced-motion .custom-range::-webkit-slider-thumb {
9636
+ transition: none;
9637
+ }
9638
+
9484
9639
  .custom-range::-webkit-slider-thumb:active {
9485
9640
  background-color: #bed4ff;
9486
9641
  }
@@ -9510,6 +9665,10 @@ label.custom-control-label {
9510
9665
  transition: none;
9511
9666
  }
9512
9667
  }
9668
+ .c-prefers-reduced-motion .custom-range::-moz-range-thumb {
9669
+ transition: none;
9670
+ }
9671
+
9513
9672
  .custom-range::-moz-range-thumb:active {
9514
9673
  background-color: #bed4ff;
9515
9674
  }
@@ -9541,6 +9700,10 @@ label.custom-control-label {
9541
9700
  transition: none;
9542
9701
  }
9543
9702
  }
9703
+ .c-prefers-reduced-motion .custom-range::-ms-thumb {
9704
+ transition: none;
9705
+ }
9706
+
9544
9707
  .custom-range::-ms-thumb:active {
9545
9708
  background-color: #bed4ff;
9546
9709
  }
@@ -9589,6 +9752,10 @@ label.custom-control-label {
9589
9752
  transition: none;
9590
9753
  }
9591
9754
  }
9755
+ .c-prefers-reduced-motion .custom-file-label,
9756
+ .c-prefers-reduced-motion .custom-select {
9757
+ transition: none;
9758
+ }
9592
9759
 
9593
9760
  .clay-time .btn {
9594
9761
  align-items: center;
@@ -9604,10 +9771,10 @@ label.custom-control-label {
9604
9771
  color: #6b6c7e;
9605
9772
  }
9606
9773
  .clay-time .btn:focus, .clay-time .btn.focus {
9607
- box-shadow: 0 0 0 1px #80acff;
9774
+ box-shadow: 0 0 0 1px #528eff;
9608
9775
  }
9609
9776
  .clay-time .btn:active:focus {
9610
- box-shadow: 0 0 0 1px #80acff;
9777
+ box-shadow: 0 0 0 1px #528eff;
9611
9778
  }
9612
9779
  .clay-time .btn .c-inner {
9613
9780
  margin-bottom: 0;
@@ -9736,12 +9903,16 @@ label.custom-control-label {
9736
9903
  transition: none;
9737
9904
  }
9738
9905
  }
9906
+ .c-prefers-reduced-motion .date-picker-nav .nav-btn {
9907
+ transition: none;
9908
+ }
9909
+
9739
9910
  .date-picker-nav .nav-btn:hover {
9740
9911
  background-color: #f1f2f5;
9741
9912
  color: #272833;
9742
9913
  }
9743
9914
  .date-picker-nav .nav-btn:focus, .date-picker-nav .nav-btn.focus {
9744
- 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;
9745
9916
  background-color: #f1f2f5;
9746
9917
  color: #272833;
9747
9918
  }
@@ -9749,7 +9920,7 @@ label.custom-control-label {
9749
9920
  background-color: #f1f2f5;
9750
9921
  }
9751
9922
  .date-picker-nav .nav-btn:active:focus {
9752
- 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;
9753
9924
  }
9754
9925
  .date-picker-nav .nav-btn.active {
9755
9926
  background-color: #f1f2f5;
@@ -9863,6 +10034,10 @@ label.custom-control-label {
9863
10034
  transition: none;
9864
10035
  }
9865
10036
  }
10037
+ .c-prefers-reduced-motion .date-picker-calendar-item {
10038
+ transition: none;
10039
+ }
10040
+
9866
10041
  .date-picker-calendar-item:disabled, .date-picker-calendar-item.disabled {
9867
10042
  cursor: not-allowed;
9868
10043
  }
@@ -9925,7 +10100,7 @@ label.custom-control-label {
9925
10100
  color: #272833;
9926
10101
  }
9927
10102
  .date-picker-date:focus, .date-picker-date.focus {
9928
- 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;
9929
10104
  outline: 0;
9930
10105
  background-color: #f1f2f5;
9931
10106
  color: #272833;
@@ -9935,7 +10110,7 @@ label.custom-control-label {
9935
10110
  color: #fff;
9936
10111
  }
9937
10112
  .date-picker-date:active:focus {
9938
- 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;
9939
10114
  }
9940
10115
  .date-picker-date.active {
9941
10116
  background-color: #0b5fff;
@@ -10225,7 +10400,7 @@ label.custom-control-label {
10225
10400
  }
10226
10401
  .was-validated .form-control:valid:focus,
10227
10402
  .was-validated .form-control.is-valid:focus {
10228
- 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;
10229
10404
  }
10230
10405
 
10231
10406
  .was-validated .form-control:invalid,
@@ -10237,7 +10412,7 @@ label.custom-control-label {
10237
10412
  }
10238
10413
  .was-validated .form-control:invalid:focus,
10239
10414
  .was-validated .form-control.is-invalid:focus {
10240
- 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;
10241
10416
  }
10242
10417
 
10243
10418
  .has-error .custom-control-label,
@@ -10251,7 +10426,7 @@ label.custom-control-label {
10251
10426
  color: #272833;
10252
10427
  }
10253
10428
  .has-error .form-control:focus, .has-error .form-control.focus {
10254
- 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;
10255
10430
  }
10256
10431
  .has-error .form-control[readonly] {
10257
10432
  background-color: #fff;
@@ -10276,7 +10451,7 @@ label.custom-control-label {
10276
10451
  color: #272833;
10277
10452
  }
10278
10453
  .has-error .input-group-item.focus {
10279
- 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;
10280
10455
  }
10281
10456
  .has-error .input-group-item.focus .input-group-inset {
10282
10457
  background-color: #feefef;
@@ -10310,7 +10485,7 @@ label.custom-control-label {
10310
10485
  color: #272833;
10311
10486
  }
10312
10487
  .has-warning .form-control:focus, .has-warning .form-control.focus {
10313
- 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;
10314
10489
  }
10315
10490
  .has-warning .form-control[readonly] {
10316
10491
  background-color: #fff;
@@ -10335,7 +10510,7 @@ label.custom-control-label {
10335
10510
  color: #272833;
10336
10511
  }
10337
10512
  .has-warning .input-group-item.focus {
10338
- 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;
10339
10514
  }
10340
10515
  .has-warning .input-group-item.focus .input-group-inset {
10341
10516
  background-color: #fff4ec;
@@ -10369,7 +10544,7 @@ label.custom-control-label {
10369
10544
  color: #272833;
10370
10545
  }
10371
10546
  .has-success .form-control:focus, .has-success .form-control.focus {
10372
- 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;
10373
10548
  }
10374
10549
  .has-success .form-control[readonly] {
10375
10550
  background-color: #fff;
@@ -10394,7 +10569,7 @@ label.custom-control-label {
10394
10569
  color: #272833;
10395
10570
  }
10396
10571
  .has-success .input-group-item.focus {
10397
- 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;
10398
10573
  }
10399
10574
  .has-success .input-group-item.focus .input-group-inset {
10400
10575
  background-color: #edf9f0;
@@ -10544,7 +10719,7 @@ label.custom-control-label {
10544
10719
  }
10545
10720
  .input-group-item.focus {
10546
10721
  border-radius: 0.25rem;
10547
- 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;
10548
10723
  }
10549
10724
  .input-group-item.focus.input-group-prepend {
10550
10725
  border-bottom-right-radius: 0;
@@ -11211,6 +11386,11 @@ label.custom-control-label {
11211
11386
  transition: none;
11212
11387
  }
11213
11388
  }
11389
+ .c-prefers-reduced-motion .list-group-title[href],
11390
+ .c-prefers-reduced-motion .list-group-title [href] {
11391
+ transition: none;
11392
+ }
11393
+
11214
11394
  .list-group-title[href]:hover, .list-group-title[href].hover,
11215
11395
  .list-group-title [href]:hover,
11216
11396
  .list-group-title [href].hover {
@@ -11219,7 +11399,7 @@ label.custom-control-label {
11219
11399
  .list-group-title[href].focus, .list-group-title[href]:focus,
11220
11400
  .list-group-title [href].focus,
11221
11401
  .list-group-title [href]:focus {
11222
- 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;
11223
11403
  outline: 0;
11224
11404
  }
11225
11405
  .list-group-subtitle {
@@ -11240,6 +11420,11 @@ label.custom-control-label {
11240
11420
  transition: none;
11241
11421
  }
11242
11422
  }
11423
+ .c-prefers-reduced-motion .list-group-subtitle[href],
11424
+ .c-prefers-reduced-motion .list-group-subtitle [href] {
11425
+ transition: none;
11426
+ }
11427
+
11243
11428
  .list-group-subtitle[href]:hover, .list-group-subtitle[href].hover,
11244
11429
  .list-group-subtitle [href]:hover,
11245
11430
  .list-group-subtitle [href].hover {
@@ -11248,7 +11433,7 @@ label.custom-control-label {
11248
11433
  .list-group-subtitle[href].focus, .list-group-subtitle[href]:focus,
11249
11434
  .list-group-subtitle [href].focus,
11250
11435
  .list-group-subtitle [href]:focus {
11251
- 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;
11252
11437
  outline: 0;
11253
11438
  }
11254
11439
  .list-group-text {
@@ -11269,6 +11454,11 @@ label.custom-control-label {
11269
11454
  transition: none;
11270
11455
  }
11271
11456
  }
11457
+ .c-prefers-reduced-motion .list-group-text[href],
11458
+ .c-prefers-reduced-motion .list-group-text [href] {
11459
+ transition: none;
11460
+ }
11461
+
11272
11462
  .list-group-text[href]:hover, .list-group-text[href].hover,
11273
11463
  .list-group-text [href]:hover,
11274
11464
  .list-group-text [href].hover {
@@ -11277,7 +11467,7 @@ label.custom-control-label {
11277
11467
  .list-group-text[href].focus, .list-group-text[href]:focus,
11278
11468
  .list-group-text [href].focus,
11279
11469
  .list-group-text [href]:focus {
11280
- 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;
11281
11471
  outline: 0;
11282
11472
  }
11283
11473
  .list-group-subtext {
@@ -11299,6 +11489,11 @@ label.custom-control-label {
11299
11489
  transition: none;
11300
11490
  }
11301
11491
  }
11492
+ .c-prefers-reduced-motion .list-group-subtext[href],
11493
+ .c-prefers-reduced-motion .list-group-subtext [href] {
11494
+ transition: none;
11495
+ }
11496
+
11302
11497
  .list-group-subtext[href]:hover, .list-group-subtext[href].hover,
11303
11498
  .list-group-subtext [href]:hover,
11304
11499
  .list-group-subtext [href].hover {
@@ -11307,7 +11502,7 @@ label.custom-control-label {
11307
11502
  .list-group-subtext[href].focus, .list-group-subtext[href]:focus,
11308
11503
  .list-group-subtext [href].focus,
11309
11504
  .list-group-subtext [href]:focus {
11310
- 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;
11311
11506
  outline: 0;
11312
11507
  }
11313
11508
  .show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
@@ -11681,6 +11876,10 @@ label.custom-control-label {
11681
11876
  transition: none;
11682
11877
  }
11683
11878
  }
11879
+ .c-prefers-reduced-motion .modal.fade .modal-dialog {
11880
+ transition: none;
11881
+ }
11882
+
11684
11883
  .modal.show .modal-dialog {
11685
11884
  transform: none;
11686
11885
  }
@@ -12184,6 +12383,18 @@ label.custom-control-label {
12184
12383
  .multi-step-item.complete .multi-step-divider {
12185
12384
  background-color: #6b6c7e;
12186
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
+ }
12187
12398
  .multi-step-item.disabled .multi-step-title {
12188
12399
  color: #a7a9bc;
12189
12400
  }
@@ -12257,6 +12468,9 @@ label.custom-control-label {
12257
12468
  .multi-step-icon {
12258
12469
  align-items: center;
12259
12470
  background-color: #e7e7ed;
12471
+ background-position: center;
12472
+ background-repeat: no-repeat;
12473
+ background-size: 0.875rem;
12260
12474
  border-radius: 100px;
12261
12475
  border-width: 0px;
12262
12476
  color: #6b6c7e;
@@ -12280,7 +12494,7 @@ label.custom-control-label {
12280
12494
  }
12281
12495
  .multi-step-icon:focus {
12282
12496
  background-color: #e7e7ed;
12283
- 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;
12284
12498
  color: #6b6c7e;
12285
12499
  outline: 0;
12286
12500
  text-decoration: none;
@@ -12413,10 +12627,10 @@ label.custom-control-label {
12413
12627
  width: 100%;
12414
12628
  }
12415
12629
  .nav-link.btn-unstyled:focus, .nav-link.btn-unstyled.focus {
12416
- 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;
12417
12631
  }
12418
12632
  .nav-link.btn-unstyled:active:focus {
12419
- 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;
12420
12634
  }
12421
12635
  .nav-link.btn-unstyled:disabled, .nav-link.btn-unstyled.disabled {
12422
12636
  opacity: 1;
@@ -12564,7 +12778,6 @@ label.custom-control-label {
12564
12778
  padding-right: 0.5rem;
12565
12779
  padding-top: 0.625rem;
12566
12780
  }
12567
-
12568
12781
  .nav-unstyled {
12569
12782
  flex-wrap: nowrap;
12570
12783
  }
@@ -12701,8 +12914,11 @@ label.custom-control-label {
12701
12914
  }
12702
12915
 
12703
12916
  .nav-tabs {
12704
- border-bottom: 0.0625rem solid transparent;
12917
+ border-bottom: 0.0625rem solid #cdced9;
12705
12918
  font-size: 0.875rem;
12919
+ padding-left: 1.5rem;
12920
+ padding-right: 1.5rem;
12921
+ padding-top: 0.4375rem;
12706
12922
  }
12707
12923
  .nav-tabs .nav-link {
12708
12924
  border-color: transparent;
@@ -12721,23 +12937,27 @@ label.custom-control-label {
12721
12937
  transition: none;
12722
12938
  }
12723
12939
  }
12940
+ .c-prefers-reduced-motion .nav-tabs .nav-link {
12941
+ transition: none;
12942
+ }
12943
+
12724
12944
  .nav-tabs .nav-link:hover, .nav-tabs .nav-link.hover {
12725
12945
  border-color: transparent;
12726
12946
  }
12727
12947
  .nav-tabs .nav-link.focus, .nav-tabs .nav-link:focus {
12728
12948
  border-color: transparent;
12729
- 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;
12730
12950
  outline: 0;
12731
12951
  }
12732
12952
  .nav-tabs .nav-link:active {
12733
12953
  background-color: #fff;
12734
- border-color: transparent transparent #fff;
12954
+ border-color: #cdced9 #cdced9 #fff;
12735
12955
  color: #272833;
12736
12956
  }
12737
12957
  .nav-tabs .nav-link.active {
12738
12958
  background-color: #fff;
12739
12959
  color: #272833;
12740
- border-color: transparent transparent #fff;
12960
+ border-color: #cdced9 #cdced9 #fff;
12741
12961
  }
12742
12962
  .nav-tabs .nav-link:disabled, .nav-tabs .nav-link.disabled {
12743
12963
  background-color: transparent;
@@ -12749,9 +12969,9 @@ label.custom-control-label {
12749
12969
  box-shadow: none;
12750
12970
  }
12751
12971
  .nav-tabs .nav-link[aria-expanded=true], .nav-tabs .nav-link.show {
12752
- background-color: transparent;
12972
+ background-color: #fff;
12753
12973
  color: #272833;
12754
- border-color: transparent transparent transparent transparent;
12974
+ border-color: #cdced9;
12755
12975
  }
12756
12976
  .nav-tabs .nav-link > .c-inner {
12757
12977
  margin-bottom: -0.28125rem;
@@ -12767,7 +12987,7 @@ label.custom-control-label {
12767
12987
  }
12768
12988
  .nav-tabs + .tab-content .tab-pane {
12769
12989
  background-color: #fff;
12770
- border-radius: 4px;
12990
+ border-radius: 0 0 4px 4px;
12771
12991
  padding: 2rem;
12772
12992
  }
12773
12993
  .nav-tabs + .tab-content .tab-pane.active:first-child {
@@ -12801,55 +13021,14 @@ label.custom-control-label {
12801
13021
  color: #fff;
12802
13022
  }
12803
13023
 
12804
- .nav-underline .nav-link {
12805
- color: #6b6c7e;
12806
- padding-bottom: 0.5625rem;
12807
- padding-top: 0.5625rem;
12808
- border-radius: 1px;
12809
- font-weight: 600;
12810
- line-height: 1;
12811
- transition: box-shadow 0.15s ease-in-out;
12812
- }
12813
- @media (prefers-reduced-motion: reduce) {
12814
- .nav-underline .nav-link {
12815
- transition: none;
12816
- }
12817
- }
12818
- .nav-underline .nav-link::after {
12819
- bottom: 0;
12820
- display: block;
12821
- position: absolute;
12822
- left: 0;
12823
- right: 0;
12824
- width: auto;
12825
- }
12826
- .nav-underline .nav-link.focus, .nav-underline .nav-link:focus {
12827
- box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
12828
- outline: 0;
12829
- }
12830
- .nav-underline .nav-link.active {
12831
- color: #272833;
12832
- }
12833
- .nav-underline .nav-link.active::after {
12834
- background-color: #528eff;
12835
- content: "";
12836
- height: 0.125rem;
12837
- }
12838
- .nav-underline .nav-link:disabled, .nav-underline .nav-link.disabled {
12839
- color: #a7a9bc;
12840
- box-shadow: none;
12841
- }
12842
- .nav-underline .nav-link[aria-expanded=true], .nav-underline .nav-link.show {
12843
- color: #272833;
12844
- }
12845
- .nav-underline .nav-link[aria-expanded=true]::after, .nav-underline .nav-link.show::after {
12846
- content: "";
12847
- height: 0.125rem;
13024
+ .nav-tabs-light {
13025
+ background-color: #f7f8f9;
12848
13026
  }
12849
- .nav-underline .nav-link > .c-inner {
12850
- margin-bottom: -0.5625rem;
12851
- margin-top: -0.5625rem;
13027
+ .nav-tabs-light + .tab-content .tab-pane {
13028
+ background-color: transparent;
13029
+ border-radius: 0;
12852
13030
  }
13031
+
12853
13032
  .menubar {
12854
13033
  position: relative;
12855
13034
  }
@@ -12935,13 +13114,17 @@ label.custom-control-label {
12935
13114
  transition: none;
12936
13115
  }
12937
13116
  }
13117
+ .c-prefers-reduced-motion .menubar-vertical-expand-md.menubar-transparent .nav-link {
13118
+ transition: none;
13119
+ }
13120
+
12938
13121
  .menubar-vertical-expand-md.menubar-transparent .nav-link:hover, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
12939
13122
  background-color: rgba(11, 95, 255, 0.04);
12940
13123
  color: #272833;
12941
13124
  }
12942
13125
  .menubar-vertical-expand-md.menubar-transparent .nav-link.focus, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
12943
13126
  background-color: rgba(11, 95, 255, 0.04);
12944
- 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;
12945
13128
  color: #272833;
12946
13129
  outline: 0;
12947
13130
  }
@@ -12984,6 +13167,11 @@ label.custom-control-label {
12984
13167
  transition: none;
12985
13168
  }
12986
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
+ }
12987
13175
  @media (max-width: 767.98px) {
12988
13176
  .menubar-vertical-expand-md.menubar-transparent .nav-link {
12989
13177
  border-radius: 0;
@@ -13110,13 +13298,17 @@ label.custom-control-label {
13110
13298
  transition: none;
13111
13299
  }
13112
13300
  }
13301
+ .c-prefers-reduced-motion .menubar-vertical-expand-lg.menubar-transparent .nav-link {
13302
+ transition: none;
13303
+ }
13304
+
13113
13305
  .menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
13114
13306
  background-color: rgba(11, 95, 255, 0.04);
13115
13307
  color: #272833;
13116
13308
  }
13117
13309
  .menubar-vertical-expand-lg.menubar-transparent .nav-link.focus, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
13118
13310
  background-color: rgba(11, 95, 255, 0.04);
13119
- 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;
13120
13312
  color: #272833;
13121
13313
  outline: 0;
13122
13314
  }
@@ -13159,6 +13351,11 @@ label.custom-control-label {
13159
13351
  transition: none;
13160
13352
  }
13161
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
+ }
13162
13359
  @media (max-width: 991.98px) {
13163
13360
  .menubar-vertical-expand-lg.menubar-transparent .nav-link {
13164
13361
  border-radius: 0;
@@ -14037,7 +14234,7 @@ label.custom-control-label {
14037
14234
  color: #fff;
14038
14235
  }
14039
14236
 
14040
- .navbar-underline .navbar-toggler-link:after {
14237
+ .navbar-underline .navbar-toggler-link::after {
14041
14238
  background-color: #80acff;
14042
14239
  bottom: -0.5rem;
14043
14240
  content: "";
@@ -14048,35 +14245,8 @@ label.custom-control-label {
14048
14245
  right: 0;
14049
14246
  width: auto;
14050
14247
  }
14051
-
14052
- @media (min-width: 576px) {
14053
- .navbar-underline.navbar-expand-sm .navbar-nav .nav-link.active:after {
14054
- background-color: #80acff;
14055
- bottom: -0.5rem;
14056
- content: "";
14057
- display: block;
14058
- height: 0.125rem;
14059
- left: 0;
14060
- position: absolute;
14061
- right: 0;
14062
- width: auto;
14063
- }
14064
- }
14065
14248
  @media (min-width: 768px) {
14066
- .navbar-underline.navbar-expand-md .navbar-nav .nav-link.active:after {
14067
- background-color: #80acff;
14068
- bottom: -0.5rem;
14069
- content: "";
14070
- display: block;
14071
- height: 0.125rem;
14072
- left: 0;
14073
- position: absolute;
14074
- right: 0;
14075
- width: auto;
14076
- }
14077
- }
14078
- @media (min-width: 992px) {
14079
- .navbar-underline.navbar-expand-lg .navbar-nav .nav-link.active:after {
14249
+ .navbar-underline.navbar-expand-md.navbar-underline .navbar-nav .nav-link.active::after {
14080
14250
  background-color: #80acff;
14081
14251
  bottom: -0.5rem;
14082
14252
  content: "";
@@ -14088,31 +14258,6 @@ label.custom-control-label {
14088
14258
  width: auto;
14089
14259
  }
14090
14260
  }
14091
- @media (min-width: 1280px) {
14092
- .navbar-underline.navbar-expand-xl .navbar-nav .nav-link.active:after {
14093
- background-color: #80acff;
14094
- bottom: -0.5rem;
14095
- content: "";
14096
- display: block;
14097
- height: 0.125rem;
14098
- left: 0;
14099
- position: absolute;
14100
- right: 0;
14101
- width: auto;
14102
- }
14103
- }
14104
- .navbar-underline.navbar-expand .navbar-nav .nav-link.active:after {
14105
- background-color: #80acff;
14106
- bottom: -0.5rem;
14107
- content: "";
14108
- display: block;
14109
- height: 0.125rem;
14110
- left: 0;
14111
- position: absolute;
14112
- right: 0;
14113
- width: auto;
14114
- }
14115
-
14116
14261
  .application-bar {
14117
14262
  flex-wrap: nowrap;
14118
14263
  border-width: 0px 0px 0px 0px;
@@ -15179,8 +15324,12 @@ label.custom-control-label {
15179
15324
  transition: none;
15180
15325
  }
15181
15326
  }
15327
+ .c-prefers-reduced-motion .application-bar .navbar-nav .nav-link {
15328
+ transition: none;
15329
+ }
15330
+
15182
15331
  .application-bar .navbar-nav .nav-link.focus, .application-bar .navbar-nav .nav-link:focus {
15183
- 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;
15184
15333
  }
15185
15334
  .application-bar .navbar-nav .nav-link:disabled, .application-bar .navbar-nav .nav-link.disabled {
15186
15335
  box-shadow: none;
@@ -15195,8 +15344,12 @@ label.custom-control-label {
15195
15344
  transition: none;
15196
15345
  }
15197
15346
  }
15347
+ .c-prefers-reduced-motion .application-bar .navbar-brand {
15348
+ transition: none;
15349
+ }
15350
+
15198
15351
  .application-bar .navbar-brand.focus, .application-bar .navbar-brand:focus {
15199
- 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;
15200
15353
  }
15201
15354
  .application-bar .navbar-brand:disabled, .application-bar .navbar-brand.disabled {
15202
15355
  box-shadow: none;
@@ -16358,8 +16511,12 @@ label.custom-control-label {
16358
16511
  transition: none;
16359
16512
  }
16360
16513
  }
16514
+ .c-prefers-reduced-motion .management-bar .navbar-nav .nav-link {
16515
+ transition: none;
16516
+ }
16517
+
16361
16518
  .management-bar .navbar-nav .nav-link.focus, .management-bar .navbar-nav .nav-link:focus {
16362
- 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;
16363
16520
  }
16364
16521
  .management-bar .navbar-nav .nav-link:disabled, .management-bar .navbar-nav .nav-link.disabled {
16365
16522
  box-shadow: none;
@@ -16374,8 +16531,12 @@ label.custom-control-label {
16374
16531
  transition: none;
16375
16532
  }
16376
16533
  }
16534
+ .c-prefers-reduced-motion .management-bar .navbar-brand {
16535
+ transition: none;
16536
+ }
16537
+
16377
16538
  .management-bar .navbar-brand.focus, .management-bar .navbar-brand:focus {
16378
- 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;
16379
16540
  }
16380
16541
  .management-bar .navbar-brand:disabled, .management-bar .navbar-brand.disabled {
16381
16542
  box-shadow: none;
@@ -16954,11 +17115,11 @@ label.custom-control-label {
16954
17115
  .navigation-bar .navbar-nav .nav-link {
16955
17116
  border-width: 0;
16956
17117
  font-size: inherit;
16957
- border-radius: 0px;
17118
+ border-radius: 0.25rem;
16958
17119
  outline: 0;
16959
17120
  }
16960
17121
  .navigation-bar .navbar-nav .nav-link.focus, .navigation-bar .navbar-nav .nav-link:focus {
16961
- 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;
16962
17123
  }
16963
17124
  .navigation-bar .navbar-nav .nav-link:disabled, .navigation-bar .navbar-nav .nav-link.disabled {
16964
17125
  box-shadow: none;
@@ -16966,11 +17127,11 @@ label.custom-control-label {
16966
17127
  .navigation-bar .navbar-brand {
16967
17128
  border-width: 0;
16968
17129
  font-size: inherit;
16969
- border-radius: 0px;
17130
+ border-radius: 0.25rem;
16970
17131
  outline: 0;
16971
17132
  }
16972
17133
  .navigation-bar .navbar-brand.focus, .navigation-bar .navbar-brand:focus {
16973
- 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;
16974
17135
  }
16975
17136
  .navigation-bar .navbar-brand:disabled, .navigation-bar .navbar-brand.disabled {
16976
17137
  box-shadow: none;
@@ -17198,6 +17359,10 @@ label.custom-control-label {
17198
17359
  transition: none;
17199
17360
  }
17200
17361
  }
17362
+ .c-prefers-reduced-motion .page-link {
17363
+ transition: none;
17364
+ }
17365
+
17201
17366
  .page-link:hover, .page-link.hover {
17202
17367
  background-color: rgba(39, 40, 41, 0.04);
17203
17368
  border-color: transparent;
@@ -17206,7 +17371,7 @@ label.custom-control-label {
17206
17371
  z-index: 2;
17207
17372
  }
17208
17373
  .page-link.focus, .page-link:focus {
17209
- 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;
17210
17375
  outline: 0;
17211
17376
  z-index: 4;
17212
17377
  background-color: rgba(39, 40, 41, 0.04);
@@ -17318,6 +17483,11 @@ label.custom-control-label {
17318
17483
  transition: none;
17319
17484
  }
17320
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
+
17321
17491
  .pagination-items-per-page > a:hover, .pagination-items-per-page > a.hover,
17322
17492
  .pagination-items-per-page > button:hover,
17323
17493
  .pagination-items-per-page > button.hover {
@@ -17328,7 +17498,7 @@ label.custom-control-label {
17328
17498
  .pagination-items-per-page > a.focus, .pagination-items-per-page > a:focus,
17329
17499
  .pagination-items-per-page > button.focus,
17330
17500
  .pagination-items-per-page > button:focus {
17331
- 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;
17332
17502
  outline: 0;
17333
17503
  background-color: rgba(39, 40, 41, 0.04);
17334
17504
  border-color: transparent;
@@ -17558,13 +17728,17 @@ label.custom-control-label {
17558
17728
  transition: none;
17559
17729
  }
17560
17730
  }
17731
+ .c-prefers-reduced-motion .panel-header-link {
17732
+ transition: none;
17733
+ }
17734
+
17561
17735
  .panel-header-link:hover, .panel-header-link.hover {
17562
17736
  color: inherit;
17563
17737
  text-decoration: none;
17564
17738
  }
17565
17739
  .panel-header-link.focus, .panel-header-link:focus {
17566
17740
  z-index: 1;
17567
- 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;
17568
17742
  outline: 0;
17569
17743
  }
17570
17744
  .panel-header-link .collapse-icon {
@@ -17786,7 +17960,7 @@ label.custom-control-label {
17786
17960
  border-radius: 1px;
17787
17961
  }
17788
17962
  .panel-unstyled .panel-header.panel-header-link.focus, .panel-unstyled .panel-header.panel-header-link:focus {
17789
- 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;
17790
17964
  }
17791
17965
  .panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-closed,
17792
17966
  .panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-open {
@@ -17805,7 +17979,7 @@ label.custom-control-label {
17805
17979
  .popover {
17806
17980
  background-clip: padding-box;
17807
17981
  background-color: #fff;
17808
- border: 0.0625rem solid transparent;
17982
+ border: 1px solid transparent;
17809
17983
  border-radius: 0.25rem;
17810
17984
  box-shadow: 0 1px 15px -2px rgba(0, 0, 0, 0.2);
17811
17985
  display: block;
@@ -17832,10 +18006,10 @@ label.custom-control-label {
17832
18006
  }
17833
18007
  .popover .arrow {
17834
18008
  display: block;
17835
- height: 0.3rem;
18009
+ height: 5px;
17836
18010
  margin: 0 0.25rem;
17837
18011
  position: absolute;
17838
- width: 0.6rem;
18012
+ width: 10px;
17839
18013
  }
17840
18014
  .popover .arrow::before {
17841
18015
  border-color: transparent;
@@ -17867,120 +18041,120 @@ label.custom-control-label {
17867
18041
  }
17868
18042
  .bs-popover-bottom,
17869
18043
  .bs-popover-auto[x-placement^=bottom] {
17870
- margin-top: 0.3rem;
18044
+ margin-top: 5px;
17871
18045
  }
17872
18046
  .bs-popover-bottom > .arrow,
17873
18047
  .bs-popover-auto[x-placement^=bottom] > .arrow {
17874
18048
  top: calc(
17875
- -0.3rem - 0.0625rem
18049
+ -5px - 1px
17876
18050
  );
17877
18051
  }
17878
18052
  .bs-popover-bottom > .arrow::before,
17879
18053
  .bs-popover-auto[x-placement^=bottom] > .arrow::before {
17880
18054
  border-bottom-color: transparent;
17881
- border-width: 0 0.3rem 0.3rem 0.3rem;
18055
+ border-width: 0 5px 5px 5px;
17882
18056
  top: 0;
17883
18057
  }
17884
18058
  .bs-popover-bottom > .arrow::after,
17885
18059
  .bs-popover-auto[x-placement^=bottom] > .arrow::after {
17886
18060
  border-bottom-color: #fff;
17887
- border-width: 0 0.3rem 0.3rem 0.3rem;
17888
- top: 0.0625rem;
18061
+ border-width: 0 5px 5px 5px;
18062
+ top: 1px;
17889
18063
  }
17890
18064
  .bs-popover-bottom .popover-header::before,
17891
18065
  .bs-popover-auto[x-placement^=bottom] .popover-header::before {
17892
- border-bottom: 0.0625rem solid #fff;
18066
+ border-bottom: 1px solid #fff;
17893
18067
  content: "";
17894
18068
  display: block;
17895
18069
  left: 50%;
17896
- margin-left: calc(-0.6rem / 2);
18070
+ margin-left: calc(-10px / 2);
17897
18071
  position: absolute;
17898
18072
  top: 0;
17899
- width: 0.6rem;
18073
+ width: 10px;
17900
18074
  }
17901
18075
 
17902
18076
  .bs-popover-left,
17903
18077
  .bs-popover-auto[x-placement^=left] {
17904
- margin-right: 0.3rem;
18078
+ margin-right: 5px;
17905
18079
  }
17906
18080
  .bs-popover-left > .arrow,
17907
18081
  .bs-popover-auto[x-placement^=left] > .arrow {
17908
- height: 0.6rem;
18082
+ height: 10px;
17909
18083
  margin: 0.25rem 0;
17910
18084
  right: calc(
17911
- -0.3rem - 0.0625rem
18085
+ -5px - 1px
17912
18086
  );
17913
- width: 0.3rem;
18087
+ width: 5px;
17914
18088
  }
17915
18089
  .bs-popover-left > .arrow::before,
17916
18090
  .bs-popover-auto[x-placement^=left] > .arrow::before {
17917
18091
  border-left-color: transparent;
17918
- border-width: 0.3rem 0 0.3rem 0.3rem;
18092
+ border-width: 5px 0 5px 5px;
17919
18093
  right: 0;
17920
18094
  }
17921
18095
  .bs-popover-left > .arrow::after,
17922
18096
  .bs-popover-auto[x-placement^=left] > .arrow::after {
17923
18097
  border-left-color: #fff;
17924
- border-width: 0.3rem 0 0.3rem 0.3rem;
17925
- right: 0.0625rem;
18098
+ border-width: 5px 0 5px 5px;
18099
+ right: 1px;
17926
18100
  }
17927
18101
 
17928
18102
  .bs-popover-right,
17929
18103
  .bs-popover-auto[x-placement^=right] {
17930
- margin-left: 0.3rem;
18104
+ margin-left: 5px;
17931
18105
  }
17932
18106
  .bs-popover-right > .arrow,
17933
18107
  .bs-popover-auto[x-placement^=right] > .arrow {
17934
- height: 0.6rem;
18108
+ height: 10px;
17935
18109
  left: calc(
17936
- -0.3rem - 0.0625rem
18110
+ -5px - 1px
17937
18111
  );
17938
18112
  margin: 0.25rem 0;
17939
- width: 0.3rem;
18113
+ width: 5px;
17940
18114
  }
17941
18115
  .bs-popover-right > .arrow::before,
17942
18116
  .bs-popover-auto[x-placement^=right] > .arrow::before {
17943
18117
  border-right-color: transparent;
17944
- border-width: 0.3rem 0.3rem 0.3rem 0;
18118
+ border-width: 5px 5px 5px 0;
17945
18119
  left: 0;
17946
18120
  }
17947
18121
  .bs-popover-right > .arrow::after,
17948
18122
  .bs-popover-auto[x-placement^=right] > .arrow::after {
17949
18123
  border-right-color: #fff;
17950
- border-width: 0.3rem 0.3rem 0.3rem 0;
17951
- left: 0.0625rem;
18124
+ border-width: 5px 5px 5px 0;
18125
+ left: 1px;
17952
18126
  }
17953
18127
 
17954
18128
  .bs-popover-top,
17955
18129
  .bs-popover-auto[x-placement^=top] {
17956
- margin-bottom: 0.3rem;
18130
+ margin-bottom: 5px;
17957
18131
  }
17958
18132
  .bs-popover-top > .arrow,
17959
18133
  .bs-popover-auto[x-placement^=top] > .arrow {
17960
18134
  bottom: calc(
17961
- -0.3rem - 0.0625rem
18135
+ -5px - 1px
17962
18136
  );
17963
18137
  }
17964
18138
  .bs-popover-top > .arrow::before,
17965
18139
  .bs-popover-auto[x-placement^=top] > .arrow::before {
17966
18140
  border-top-color: transparent;
17967
- border-width: 0.3rem 0.3rem 0;
18141
+ border-width: 5px 5px 0;
17968
18142
  bottom: 0;
17969
18143
  }
17970
18144
  .bs-popover-top > .arrow::after,
17971
18145
  .bs-popover-auto[x-placement^=top] > .arrow::after {
17972
18146
  border-top-color: #fff;
17973
- border-width: 0.3rem 0.3rem 0;
17974
- bottom: 0.0625rem;
18147
+ border-width: 5px 5px 0;
18148
+ bottom: 1px;
17975
18149
  }
17976
18150
 
17977
18151
  .popover-header {
17978
18152
  color: #272833;
17979
18153
  background-color: #fff;
17980
- border-bottom: 0.0625rem solid #f2f2f2;
18154
+ border-bottom: 1px solid #f2f2f2;
17981
18155
  border-color: #e7e7ed;
17982
- border-top-left-radius: calc( 0.25rem - 0.0625rem );
17983
- 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 );
17984
18158
  font-size: 0.875rem;
17985
18159
  font-weight: 600;
17986
18160
  margin-bottom: 0;
@@ -17993,8 +18167,8 @@ label.custom-control-label {
17993
18167
  display: none;
17994
18168
  }
17995
18169
  .popover-body {
17996
- border-bottom-left-radius: calc( 0.25rem - 0.0625rem );
17997
- 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 );
17998
18172
  color: #6b6c7e;
17999
18173
  padding: 0.75rem 1rem;
18000
18174
  }
@@ -18004,29 +18178,29 @@ label.custom-control-label {
18004
18178
  .clay-popover-top,
18005
18179
  .clay-popover-top-left,
18006
18180
  .clay-popover-top-right {
18007
- margin-bottom: 0.3rem;
18181
+ margin-bottom: 5px;
18008
18182
  }
18009
18183
  .clay-popover-top .arrow,
18010
18184
  .clay-popover-top-left .arrow,
18011
18185
  .clay-popover-top-right .arrow {
18012
18186
  left: 50%;
18013
- margin-left: -0.3rem;
18014
- bottom: calc((0.3rem + 0.0625rem) * -1);
18187
+ margin-left: -5px;
18188
+ bottom: calc((5px + 1px) * -1);
18015
18189
  margin: 0;
18016
18190
  }
18017
18191
  .clay-popover-top .arrow::before,
18018
18192
  .clay-popover-top-left .arrow::before,
18019
18193
  .clay-popover-top-right .arrow::before {
18020
18194
  border-top-color: transparent;
18021
- border-width: 0.3rem 0.3rem 0;
18195
+ border-width: 5px 5px 0;
18022
18196
  bottom: 0;
18023
18197
  }
18024
18198
  .clay-popover-top .arrow::after,
18025
18199
  .clay-popover-top-left .arrow::after,
18026
18200
  .clay-popover-top-right .arrow::after {
18027
18201
  border-top-color: #fff;
18028
- border-width: 0.3rem 0.3rem 0;
18029
- bottom: 0.0625rem;
18202
+ border-width: 5px 5px 0;
18203
+ bottom: 1px;
18030
18204
  }
18031
18205
  .clay-popover-top-left .arrow {
18032
18206
  left: 0.625rem;
@@ -18040,30 +18214,30 @@ label.custom-control-label {
18040
18214
  .clay-popover-right,
18041
18215
  .clay-popover-right-bottom,
18042
18216
  .clay-popover-right-top {
18043
- margin-left: 0.3rem;
18217
+ margin-left: 5px;
18044
18218
  }
18045
18219
  .clay-popover-right .arrow,
18046
18220
  .clay-popover-right-bottom .arrow,
18047
18221
  .clay-popover-right-top .arrow {
18048
- height: 0.6rem;
18049
- left: calc((0.3rem + 0.0625rem) * -1);
18050
- margin: -0.15rem 0 0;
18222
+ height: 10px;
18223
+ left: calc((5px + 1px) * -1);
18224
+ margin: -2.5px 0 0;
18051
18225
  top: 50%;
18052
- width: 0.3rem;
18226
+ width: 5px;
18053
18227
  }
18054
18228
  .clay-popover-right .arrow::before,
18055
18229
  .clay-popover-right-bottom .arrow::before,
18056
18230
  .clay-popover-right-top .arrow::before {
18057
18231
  border-right-color: transparent;
18058
- border-width: 0.3rem 0.3rem 0.3rem 0;
18232
+ border-width: 5px 5px 5px 0;
18059
18233
  left: 0;
18060
18234
  }
18061
18235
  .clay-popover-right .arrow::after,
18062
18236
  .clay-popover-right-bottom .arrow::after,
18063
18237
  .clay-popover-right-top .arrow::after {
18064
18238
  border-right-color: #fff;
18065
- border-width: 0.3rem 0.3rem 0.3rem 0;
18066
- left: 0.0625rem;
18239
+ border-width: 5px 5px 5px 0;
18240
+ left: 1px;
18067
18241
  }
18068
18242
  .clay-popover-right-bottom .arrow {
18069
18243
  bottom: 0.625rem;
@@ -18080,28 +18254,28 @@ label.custom-control-label {
18080
18254
  .clay-popover-bottom,
18081
18255
  .clay-popover-bottom-left,
18082
18256
  .clay-popover-bottom-right {
18083
- margin-top: 0.3rem;
18257
+ margin-top: 5px;
18084
18258
  }
18085
18259
  .clay-popover-bottom .arrow,
18086
18260
  .clay-popover-bottom-left .arrow,
18087
18261
  .clay-popover-bottom-right .arrow {
18088
18262
  left: 50%;
18089
- margin: 0 0 0 -0.3rem;
18090
- top: calc((0.3rem + 0.0625rem) * -1);
18263
+ margin: 0 0 0 -5px;
18264
+ top: calc((5px + 1px) * -1);
18091
18265
  }
18092
18266
  .clay-popover-bottom .arrow::before,
18093
18267
  .clay-popover-bottom-left .arrow::before,
18094
18268
  .clay-popover-bottom-right .arrow::before {
18095
18269
  border-bottom-color: transparent;
18096
- border-width: 0 0.3rem 0.3rem 0.3rem;
18270
+ border-width: 0 5px 5px 5px;
18097
18271
  top: 0;
18098
18272
  }
18099
18273
  .clay-popover-bottom .arrow::after,
18100
18274
  .clay-popover-bottom-left .arrow::after,
18101
18275
  .clay-popover-bottom-right .arrow::after {
18102
18276
  border-bottom-color: #fff;
18103
- border-width: 0 0.3rem 0.3rem 0.3rem;
18104
- top: 0.0625rem;
18277
+ border-width: 0 5px 5px 5px;
18278
+ top: 1px;
18105
18279
  }
18106
18280
  .clay-popover-bottom-left .arrow {
18107
18281
  left: 0.625rem;
@@ -18120,30 +18294,30 @@ label.custom-control-label {
18120
18294
  .clay-popover-left,
18121
18295
  .clay-popover-left-bottom,
18122
18296
  .clay-popover-left-top {
18123
- margin-right: 0.3rem;
18297
+ margin-right: 5px;
18124
18298
  }
18125
18299
  .clay-popover-left .arrow,
18126
18300
  .clay-popover-left-bottom .arrow,
18127
18301
  .clay-popover-left-top .arrow {
18128
- height: 0.6rem;
18129
- margin: -0.15rem 0 0;
18130
- right: calc((0.3rem + 0.0625rem) * -1);
18302
+ height: 10px;
18303
+ margin: -2.5px 0 0;
18304
+ right: calc((5px + 1px) * -1);
18131
18305
  top: 50%;
18132
- width: 0.3rem;
18306
+ width: 5px;
18133
18307
  }
18134
18308
  .clay-popover-left .arrow::before,
18135
18309
  .clay-popover-left-bottom .arrow::before,
18136
18310
  .clay-popover-left-top .arrow::before {
18137
18311
  border-left-color: transparent;
18138
- border-width: 0.3rem 0 0.3rem 0.3rem;
18312
+ border-width: 5px 0 5px 5px;
18139
18313
  right: 0;
18140
18314
  }
18141
18315
  .clay-popover-left .arrow::after,
18142
18316
  .clay-popover-left-bottom .arrow::after,
18143
18317
  .clay-popover-left-top .arrow::after {
18144
18318
  border-left-color: #fff;
18145
- border-width: 0.3rem 0 0.3rem 0.3rem;
18146
- right: 0.0625rem;
18319
+ border-width: 5px 0 5px 5px;
18320
+ right: 1px;
18147
18321
  }
18148
18322
  .clay-popover-left-bottom .arrow {
18149
18323
  bottom: 0.625rem;
@@ -18185,6 +18359,9 @@ label.custom-control-label {
18185
18359
  transition: none;
18186
18360
  }
18187
18361
  }
18362
+ .c-prefers-reduced-motion .progress-bar {
18363
+ transition: none;
18364
+ }
18188
18365
 
18189
18366
  .progress-bar-striped {
18190
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);
@@ -18527,11 +18704,15 @@ a.sheet-subtitle {
18527
18704
  transition: none;
18528
18705
  }
18529
18706
  }
18707
+ .c-prefers-reduced-motion a.sheet-subtitle {
18708
+ transition: none;
18709
+ }
18710
+
18530
18711
  a.sheet-subtitle:hover, a.sheet-subtitle.hover {
18531
18712
  text-decoration: none;
18532
18713
  }
18533
18714
  a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18534
- 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;
18535
18716
  outline: 0;
18536
18717
  }
18537
18718
  .sheet-tertiary-title {
@@ -18732,7 +18913,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18732
18913
  -webkit-overflow-scrolling: touch;
18733
18914
  }
18734
18915
  .sidebar:focus, .sidebar.focus {
18735
- 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;
18736
18917
  outline: 0;
18737
18918
  }
18738
18919
  .sidebar .container-fluid {
@@ -18862,7 +19043,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18862
19043
  .sidenav-start .sidebar-light:focus, .sidenav-start .sidebar-light.focus,
18863
19044
  .sidenav-left .sidebar-light:focus,
18864
19045
  .sidenav-left .sidebar-light.focus {
18865
- 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;
18866
19047
  }
18867
19048
 
18868
19049
  .sidebar-light .sidebar-list-group .list-group-title {
@@ -18883,7 +19064,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18883
19064
  color: #272833;
18884
19065
  }
18885
19066
  .sidebar-light .panel-unstyled .panel-header.panel-header-link.focus, .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
18886
- 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;
18887
19068
  }
18888
19069
  .sidebar-light .component-navigation-bar {
18889
19070
  background-color: #fff;
@@ -18959,11 +19140,15 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
18959
19140
  transition: none;
18960
19141
  }
18961
19142
  }
19143
+ .c-prefers-reduced-motion .sidebar-dark .nav-nested .nav-link {
19144
+ transition: none;
19145
+ }
19146
+
18962
19147
  .sidebar-dark .nav-nested .nav-link:hover, .sidebar-dark .nav-nested .nav-link.hover {
18963
19148
  color: #fff;
18964
19149
  }
18965
19150
  .sidebar-dark .nav-nested .nav-link.focus, .sidebar-dark .nav-nested .nav-link:focus {
18966
- 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;
18967
19152
  outline: 0;
18968
19153
  }
18969
19154
  .sidebar-dark .nav-nested .nav-link:active {
@@ -19017,11 +19202,15 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
19017
19202
  transition: none;
19018
19203
  }
19019
19204
  }
19205
+ .c-prefers-reduced-motion .sidebar-dark-l2 .nav-nested .nav-link {
19206
+ transition: none;
19207
+ }
19208
+
19020
19209
  .sidebar-dark-l2 .nav-nested .nav-link:hover, .sidebar-dark-l2 .nav-nested .nav-link.hover {
19021
19210
  color: #fff;
19022
19211
  }
19023
19212
  .sidebar-dark-l2 .nav-nested .nav-link.focus, .sidebar-dark-l2 .nav-nested .nav-link:focus {
19024
- 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;
19025
19214
  outline: 0;
19026
19215
  }
19027
19216
  .sidebar-dark-l2 .nav-nested .nav-link:active {
@@ -19049,6 +19238,9 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
19049
19238
  transition: none;
19050
19239
  }
19051
19240
  }
19241
+ .c-prefers-reduced-motion .c-slideout-transition-in {
19242
+ transition: none;
19243
+ }
19052
19244
 
19053
19245
  .c-slideout-transition-out {
19054
19246
  transition: all 0.2s ease-in;
@@ -19058,6 +19250,9 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
19058
19250
  transition: none;
19059
19251
  }
19060
19252
  }
19253
+ .c-prefers-reduced-motion .c-slideout-transition-out {
19254
+ transition: none;
19255
+ }
19061
19256
 
19062
19257
  .c-slideout-fixed {
19063
19258
  position: fixed;
@@ -19078,6 +19273,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
19078
19273
  .c-slideout .sidebar {
19079
19274
  display: none;
19080
19275
  flex-shrink: 0;
19276
+ overflow: visible;
19081
19277
  position: relative;
19082
19278
  width: 320px;
19083
19279
  }
@@ -19087,6 +19283,9 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
19087
19283
  .c-slideout .sidebar.c-slideout-transition {
19088
19284
  display: block;
19089
19285
  }
19286
+ .c-slideout .sidebar.c-slideout-transition .c-horizontal-resizer {
19287
+ display: none;
19288
+ }
19090
19289
  .c-slideout .tbar-stacked {
19091
19290
  display: none;
19092
19291
  flex-shrink: 0;
@@ -19161,6 +19360,10 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus {
19161
19360
  .c-slideout-end .tbar-stacked.c-slideout-show {
19162
19361
  right: 0;
19163
19362
  }
19363
+ .c-slideout-end .c-horizontal-resizer {
19364
+ left: 0;
19365
+ right: auto;
19366
+ }
19164
19367
  @media (max-width: 767.98px) {
19165
19368
  .c-slideout-end.c-slideout-tbar-shown .sidebar {
19166
19369
  right: -280px;
@@ -19228,11 +19431,15 @@ caption {
19228
19431
  transition: none;
19229
19432
  }
19230
19433
  }
19434
+ .c-prefers-reduced-motion .table thead th [href] {
19435
+ transition: none;
19436
+ }
19437
+
19231
19438
  .table thead th [href]:hover, .table thead th [href].hover {
19232
19439
  color: #272833;
19233
19440
  }
19234
19441
  .table thead th [href].focus, .table thead th [href]:focus {
19235
- 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;
19236
19443
  outline: 0;
19237
19444
  }
19238
19445
  .table th:first-child,
@@ -19640,6 +19847,11 @@ caption {
19640
19847
  transition: none;
19641
19848
  }
19642
19849
  }
19850
+ .c-prefers-reduced-motion .table-title[href],
19851
+ .c-prefers-reduced-motion .table-title [href] {
19852
+ transition: none;
19853
+ }
19854
+
19643
19855
  .table-title[href]:hover, .table-title[href].hover,
19644
19856
  .table-title [href]:hover,
19645
19857
  .table-title [href].hover {
@@ -19648,7 +19860,7 @@ caption {
19648
19860
  .table-title[href].focus, .table-title[href]:focus,
19649
19861
  .table-title [href].focus,
19650
19862
  .table-title [href]:focus {
19651
- 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;
19652
19864
  outline: 0;
19653
19865
  }
19654
19866
  .table-link {
@@ -19663,11 +19875,15 @@ caption {
19663
19875
  transition: none;
19664
19876
  }
19665
19877
  }
19878
+ .c-prefers-reduced-motion .table-link {
19879
+ transition: none;
19880
+ }
19881
+
19666
19882
  .table-link:hover, .table-link.hover {
19667
19883
  color: #272833;
19668
19884
  }
19669
19885
  .table-link.focus, .table-link:focus {
19670
- 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;
19671
19887
  outline: 0;
19672
19888
  }
19673
19889
  .table-action-link {
@@ -19687,6 +19903,10 @@ caption {
19687
19903
  transition: none;
19688
19904
  }
19689
19905
  }
19906
+ .c-prefers-reduced-motion .table-action-link {
19907
+ transition: none;
19908
+ }
19909
+
19690
19910
  .table-action-link:hover, .table-action-link.hover {
19691
19911
  text-decoration: none;
19692
19912
  background-color: rgba(0, 0, 0, 0.02);
@@ -19695,7 +19915,7 @@ caption {
19695
19915
  .table-action-link.focus, .table-action-link:focus {
19696
19916
  background-color: rgba(0, 0, 0, 0.02);
19697
19917
  color: #272833;
19698
- 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;
19699
19919
  outline: 0;
19700
19920
  }
19701
19921
  .table-action-link:active {
@@ -19983,6 +20203,11 @@ caption {
19983
20203
  transition: none;
19984
20204
  }
19985
20205
  }
20206
+ .c-prefers-reduced-motion .table-list-title[href],
20207
+ .c-prefers-reduced-motion .table-list-title [href] {
20208
+ transition: none;
20209
+ }
20210
+
19986
20211
  .table-list-title[href]:hover, .table-list-title[href].hover,
19987
20212
  .table-list-title [href]:hover,
19988
20213
  .table-list-title [href].hover {
@@ -19991,7 +20216,7 @@ caption {
19991
20216
  .table-list-title[href].focus, .table-list-title[href]:focus,
19992
20217
  .table-list-title [href].focus,
19993
20218
  .table-list-title [href]:focus {
19994
- 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;
19995
20220
  outline: 0;
19996
20221
  }
19997
20222
  .table-list-link {
@@ -20006,11 +20231,15 @@ caption {
20006
20231
  transition: none;
20007
20232
  }
20008
20233
  }
20234
+ .c-prefers-reduced-motion .table-list-link {
20235
+ transition: none;
20236
+ }
20237
+
20009
20238
  .table-list-link:hover, .table-list-link.hover {
20010
20239
  color: #272833;
20011
20240
  }
20012
20241
  .table-list-link.focus, .table-list-link:focus {
20013
- 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;
20014
20243
  outline: 0;
20015
20244
  }
20016
20245
  .table-list-action-link {
@@ -20029,6 +20258,10 @@ caption {
20029
20258
  transition: none;
20030
20259
  }
20031
20260
  }
20261
+ .c-prefers-reduced-motion .table-list-action-link {
20262
+ transition: none;
20263
+ }
20264
+
20032
20265
  .table-list-action-link:hover, .table-list-action-link.hover {
20033
20266
  text-decoration: none;
20034
20267
  background-color: rgba(0, 0, 0, 0.02);
@@ -20037,7 +20270,7 @@ caption {
20037
20270
  .table-list-action-link.focus, .table-list-action-link:focus {
20038
20271
  background-color: rgba(0, 0, 0, 0.02);
20039
20272
  color: #272833;
20040
- 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;
20041
20274
  outline: 0;
20042
20275
  }
20043
20276
  .table-list-action-link:active {
@@ -20689,10 +20922,10 @@ caption {
20689
20922
  width: 2.5rem;
20690
20923
  }
20691
20924
  .tbar-stacked .tbar-btn-monospaced:focus, .tbar-stacked .tbar-btn-monospaced.focus {
20692
- 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;
20693
20926
  }
20694
20927
  .tbar-stacked .tbar-btn-monospaced:active:focus {
20695
- 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;
20696
20929
  }
20697
20930
  .tbar-stacked .tbar-btn-monospaced .c-inner {
20698
20931
  margin-bottom: 0;
@@ -21148,6 +21381,10 @@ caption {
21148
21381
  transition: none;
21149
21382
  }
21150
21383
  }
21384
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar::before {
21385
+ transition: none;
21386
+ }
21387
+
21151
21388
  .toggle-switch-check ~ .toggle-switch-bar::after {
21152
21389
  background-color: #fff;
21153
21390
  border-color: #fff;
@@ -21169,6 +21406,10 @@ caption {
21169
21406
  transition: none;
21170
21407
  }
21171
21408
  }
21409
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar::after {
21410
+ transition: none;
21411
+ }
21412
+
21172
21413
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
21173
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;
21174
21415
  }
@@ -21177,6 +21418,10 @@ caption {
21177
21418
  transition: none;
21178
21419
  }
21179
21420
  }
21421
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
21422
+ transition: none;
21423
+ }
21424
+
21180
21425
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
21181
21426
  content: '\FEFF' attr(data-label-off);
21182
21427
  margin-left: 56px;
@@ -21188,6 +21433,10 @@ caption {
21188
21433
  transition: none;
21189
21434
  }
21190
21435
  }
21436
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
21437
+ transition: none;
21438
+ }
21439
+
21191
21440
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
21192
21441
  color: #fff;
21193
21442
  left: 4px;
@@ -21205,6 +21454,10 @@ caption {
21205
21454
  transition: none;
21206
21455
  }
21207
21456
  }
21457
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
21458
+ transition: none;
21459
+ }
21460
+
21208
21461
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-on {
21209
21462
  left: 4px;
21210
21463
  opacity: 0;
@@ -21219,7 +21472,7 @@ caption {
21219
21472
  opacity: 0;
21220
21473
  }
21221
21474
  .toggle-switch-check:focus ~ .toggle-switch-bar::before {
21222
- 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;
21223
21476
  }
21224
21477
  .toggle-switch-check[disabled] ~ .toggle-switch-bar, .toggle-switch-check:disabled ~ .toggle-switch-bar {
21225
21478
  cursor: not-allowed;
@@ -21652,6 +21905,7 @@ caption {
21652
21905
  padding: 2px 0;
21653
21906
  }
21654
21907
  .treeview .btn {
21908
+ color: inherit;
21655
21909
  font-size: 12px;
21656
21910
  line-height: 1;
21657
21911
  padding: 6px 8px;
@@ -21666,10 +21920,10 @@ caption {
21666
21920
  width: 24px;
21667
21921
  }
21668
21922
  .treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
21669
- 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;
21670
21924
  }
21671
21925
  .treeview .btn-monospaced:active:focus {
21672
- 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;
21673
21927
  }
21674
21928
  .treeview .custom-control {
21675
21929
  margin-left: 4px;
@@ -21731,6 +21985,10 @@ caption {
21731
21985
  transition: none;
21732
21986
  }
21733
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
+
21734
21992
  .treeview.show-component-expander-on-hover .treeview-link:focus .component-expander, .treeview.show-component-expander-on-hover .treeview-link.focus .component-expander {
21735
21993
  opacity: 1;
21736
21994
  transition: none;
@@ -21744,6 +22002,10 @@ caption {
21744
22002
  transition: none;
21745
22003
  }
21746
22004
  }
22005
+ .c-prefers-reduced-motion .treeview.show-component-expander-on-hover .component-expander {
22006
+ transition: none;
22007
+ }
22008
+
21747
22009
  .treeview .quick-action-item {
21748
22010
  margin: 0 2px;
21749
22011
  min-height: 0;
@@ -21774,6 +22036,25 @@ caption {
21774
22036
  overflow-wrap: break-word;
21775
22037
  word-wrap: break-word;
21776
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
+ }
21777
22058
  .treeview-link {
21778
22059
  background-color: transparent;
21779
22060
  cursor: pointer;
@@ -21796,21 +22077,15 @@ caption {
21796
22077
  text-decoration: none;
21797
22078
  }
21798
22079
  .treeview-link.focus, .treeview-link:focus {
21799
- 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;
21800
22081
  outline: 0;
21801
22082
  }
21802
22083
  .treeview-link:disabled, .treeview-link.disabled {
21803
22084
  cursor: not-allowed;
21804
22085
  }
21805
- .treeview-link.treeview-dropping-bottom {
21806
- box-shadow: 0 2px 0 0 #80acff;
21807
- }
21808
22086
  .treeview-link.treeview-dropping-middle {
21809
22087
  background-color: #f0f5ff;
21810
- border-color: #80acff;
21811
- }
21812
- .treeview-link.treeview-dropping-top {
21813
- box-shadow: 0 -2px 0 0 #80acff;
22088
+ border-color: #528eff;
21814
22089
  }
21815
22090
  .treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
21816
22091
  display: none;
@@ -21833,7 +22108,7 @@ caption {
21833
22108
  }
21834
22109
  .treeview-dragging {
21835
22110
  background-color: #fff;
21836
- border-color: #80acff;
22111
+ border-color: #528eff;
21837
22112
  border-radius: 0.1875rem;
21838
22113
  border-style: solid;
21839
22114
  border-width: 1px;
@@ -21950,6 +22225,10 @@ caption {
21950
22225
  transition: none;
21951
22226
  }
21952
22227
  }
22228
+ .c-prefers-reduced-motion .close {
22229
+ transition: none;
22230
+ }
22231
+
21953
22232
  .close:hover {
21954
22233
  color: #272833;
21955
22234
  opacity: 1;
@@ -21957,7 +22236,7 @@ caption {
21957
22236
  outline: 0;
21958
22237
  }
21959
22238
  .close:focus {
21960
- 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;
21961
22240
  outline: 0;
21962
22241
  opacity: 0.75;
21963
22242
  }
@@ -21973,7 +22252,7 @@ caption {
21973
22252
  }
21974
22253
 
21975
22254
  .c-focus-inset:focus:not(:disabled):not(.disabled):not([disabled]), .c-focus-inset.focus:not(:disabled):not(.disabled):not([disabled]) {
21976
- 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;
21977
22256
  border-color: #80acff;
21978
22257
  outline: 0;
21979
22258
  }
@@ -22207,7 +22486,7 @@ ul.autofit-row {
22207
22486
  outline: 0;
22208
22487
  }
22209
22488
  .inline-scroller:focus-visible {
22210
- 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;
22211
22490
  }
22212
22491
 
22213
22492
  .inline-item {
@@ -32343,6 +32622,11 @@ a.text-dark:hover, a.text-dark:focus {
32343
32622
  visibility: hidden !important;
32344
32623
  }
32345
32624
 
32625
+ .c-prefers-reduced-motion {
32626
+ scroll-behavior: auto;
32627
+ transition: none;
32628
+ }
32629
+
32346
32630
  @keyframes loading-animation-circle {
32347
32631
  100% {
32348
32632
  transform: rotate(360deg);