@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/base.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>
@@ -648,6 +648,9 @@ pre code {
648
648
  transition: none;
649
649
  }
650
650
  }
651
+ .c-prefers-reduced-motion .carousel-item {
652
+ transition: none;
653
+ }
651
654
 
652
655
  .carousel-item.active,
653
656
  .carousel-item-next,
@@ -688,6 +691,10 @@ pre code {
688
691
  transition: none;
689
692
  }
690
693
  }
694
+ .c-prefers-reduced-motion .carousel-fade .active.carousel-item-left,
695
+ .c-prefers-reduced-motion .carousel-fade .active.carousel-item-right {
696
+ transition: none;
697
+ }
691
698
 
692
699
  .carousel-control-prev,
693
700
  .carousel-control-next {
@@ -710,6 +717,11 @@ pre code {
710
717
  transition: none;
711
718
  }
712
719
  }
720
+ .c-prefers-reduced-motion .carousel-control-prev,
721
+ .c-prefers-reduced-motion .carousel-control-next {
722
+ transition: none;
723
+ }
724
+
713
725
  .carousel-control-prev:hover, .carousel-control-prev:focus,
714
726
  .carousel-control-next:hover,
715
727
  .carousel-control-next:focus {
@@ -777,6 +789,10 @@ pre code {
777
789
  transition: none;
778
790
  }
779
791
  }
792
+ .c-prefers-reduced-motion .carousel-indicators li {
793
+ transition: none;
794
+ }
795
+
780
796
  .carousel-indicators .active {
781
797
  opacity: 1;
782
798
  }
@@ -1155,6 +1171,10 @@ button.collapse-icon .c-inner {
1155
1171
  transition: none;
1156
1172
  }
1157
1173
  }
1174
+ .c-prefers-reduced-motion .btn {
1175
+ transition: none;
1176
+ }
1177
+
1158
1178
  .btn:hover {
1159
1179
  color: #212529;
1160
1180
  text-decoration: none;
@@ -1221,7 +1241,7 @@ fieldset:disabled a.btn:active {
1221
1241
  }
1222
1242
  .btn-xs .inline-item {
1223
1243
  font-size: inherit;
1224
- margin-top: -3px;
1244
+ margin-top: -0.16em;
1225
1245
  }
1226
1246
  .btn-xs .inline-item-before {
1227
1247
  margin-right: 0.25rem;
@@ -1691,6 +1711,19 @@ input[type=button].btn-block {
1691
1711
  color: #6c757d;
1692
1712
  text-decoration: none;
1693
1713
  }
1714
+ .btn-beta {
1715
+ background-color: white;
1716
+ color: #138496;
1717
+ text-transform: uppercase;
1718
+ }
1719
+ .btn-beta:hover {
1720
+ background-color: #f8f9fa;
1721
+ color: #138496;
1722
+ }
1723
+ .btn-beta:focus, .focus.btn-beta {
1724
+ background-color: #f8f9fa;
1725
+ color: #138496;
1726
+ }
1694
1727
  .btn-outline-primary {
1695
1728
  border-color: #007bff;
1696
1729
  color: #007bff;
@@ -2004,10 +2037,10 @@ input[type=button].btn-block {
2004
2037
  z-index: 10;
2005
2038
  }
2006
2039
  .c-horizontal-resizer:hover {
2007
- background-color: #75b8ff;
2040
+ background-color: #47a0ff;
2008
2041
  }
2009
2042
  .c-horizontal-resizer:focus {
2010
- background-color: #75b8ff;
2043
+ background-color: #47a0ff;
2011
2044
  }
2012
2045
 
2013
2046
  .fade {
@@ -2018,6 +2051,10 @@ input[type=button].btn-block {
2018
2051
  transition: none;
2019
2052
  }
2020
2053
  }
2054
+ .c-prefers-reduced-motion .fade {
2055
+ transition: none;
2056
+ }
2057
+
2021
2058
  .fade:not(.show) {
2022
2059
  opacity: 0;
2023
2060
  }
@@ -2037,6 +2074,9 @@ input[type=button].btn-block {
2037
2074
  transition: none;
2038
2075
  }
2039
2076
  }
2077
+ .c-prefers-reduced-motion .collapsing {
2078
+ transition: none;
2079
+ }
2040
2080
 
2041
2081
  .container {
2042
2082
  margin-left: auto;
@@ -3901,6 +3941,10 @@ input[type=button].btn-block {
3901
3941
  transition: none;
3902
3942
  }
3903
3943
  }
3944
+ .c-prefers-reduced-motion .badge {
3945
+ transition: none;
3946
+ }
3947
+
3904
3948
  .badge:empty {
3905
3949
  display: none;
3906
3950
  }
@@ -4129,6 +4173,11 @@ input[type=button].btn-block {
4129
4173
  color: #fff;
4130
4174
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
4131
4175
  }
4176
+ .badge-beta {
4177
+ background-color: white;
4178
+ color: #138496;
4179
+ text-transform: uppercase;
4180
+ }
4132
4181
  .breadcrumb {
4133
4182
  background-color: #e9ecef;
4134
4183
  border-radius: 0.25rem;
@@ -5974,6 +6023,10 @@ input[type=button].btn-block {
5974
6023
  transition: none;
5975
6024
  }
5976
6025
  }
6026
+ .c-prefers-reduced-motion .card-interactive {
6027
+ transition: none;
6028
+ }
6029
+
5977
6030
  .card-interactive:hover, .card-interactive.hover {
5978
6031
  background-color: #f8f9fa;
5979
6032
  text-decoration: none;
@@ -6000,6 +6053,10 @@ input[type=button].btn-block {
6000
6053
  transition: none;
6001
6054
  }
6002
6055
  }
6056
+ .c-prefers-reduced-motion .card-interactive::after {
6057
+ transition: none;
6058
+ }
6059
+
6003
6060
  .card-interactive:hover::after, .card-interactive.hover::after {
6004
6061
  height: 4px;
6005
6062
  }
@@ -6917,6 +6974,9 @@ input[type=button].btn-block {
6917
6974
  transition: none;
6918
6975
  }
6919
6976
  }
6977
+ .c-prefers-reduced-motion .drilldown-inner {
6978
+ transition: none;
6979
+ }
6920
6980
 
6921
6981
  .drilldown-item {
6922
6982
  display: none;
@@ -7161,6 +7221,10 @@ fieldset[disabled] label .form-control {
7161
7221
  transition: none;
7162
7222
  }
7163
7223
  }
7224
+ .c-prefers-reduced-motion .form-control {
7225
+ transition: none;
7226
+ }
7227
+
7164
7228
  .form-control::placeholder {
7165
7229
  color: #6c757d;
7166
7230
  opacity: 1;
@@ -7519,6 +7583,10 @@ textarea.form-control-plaintext,
7519
7583
  transition: none;
7520
7584
  }
7521
7585
  }
7586
+ .c-prefers-reduced-motion .form-control-plaintext[readonly] {
7587
+ transition: none;
7588
+ }
7589
+
7522
7590
  .form-control-plaintext[readonly]:focus, .form-control-plaintext[readonly].focus {
7523
7591
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
7524
7592
  }
@@ -7787,6 +7855,10 @@ textarea.form-control-lg,
7787
7855
  transition: none;
7788
7856
  }
7789
7857
  }
7858
+ .c-prefers-reduced-motion .c-link {
7859
+ transition: none;
7860
+ }
7861
+
7790
7862
  .c-link:hover, .c-link.hover {
7791
7863
  text-decoration: none;
7792
7864
  }
@@ -7861,6 +7933,10 @@ button.link-outline {
7861
7933
  transition: none;
7862
7934
  }
7863
7935
  }
7936
+ .c-prefers-reduced-motion .link-outline {
7937
+ transition: none;
7938
+ }
7939
+
7864
7940
  .link-outline:hover, .link-outline.hover {
7865
7941
  text-decoration: none;
7866
7942
  }
@@ -8014,6 +8090,10 @@ button.link-outline {
8014
8090
  transition: none;
8015
8091
  }
8016
8092
  }
8093
+ .c-prefers-reduced-motion .component-action {
8094
+ transition: none;
8095
+ }
8096
+
8017
8097
  .component-action:hover, .component-action.hover {
8018
8098
  background-color: #6c757d;
8019
8099
  color: #fff;
@@ -8116,6 +8196,10 @@ button.link-outline {
8116
8196
  transition: none;
8117
8197
  }
8118
8198
  }
8199
+ .c-prefers-reduced-motion .clay-range-input .tooltip {
8200
+ transition: none;
8201
+ }
8202
+
8119
8203
  .clay-range-input .tooltip-inner {
8120
8204
  padding: 0.25rem 0.5rem;
8121
8205
  }
@@ -8466,6 +8550,10 @@ button.link-outline {
8466
8550
  transition: none;
8467
8551
  }
8468
8552
  }
8553
+ .c-prefers-reduced-motion .clay-color-pointer {
8554
+ transition: none;
8555
+ }
8556
+
8469
8557
  .clay-color-pointer:focus, .clay-color-pointer.focus {
8470
8558
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8471
8559
  outline: 0;
@@ -8662,6 +8750,10 @@ button.link-outline {
8662
8750
  transition: none;
8663
8751
  }
8664
8752
  }
8753
+ .c-prefers-reduced-motion .custom-control-label::before {
8754
+ transition: none;
8755
+ }
8756
+
8665
8757
  .custom-control-label::after {
8666
8758
  background: no-repeat 50%/50% 50%;
8667
8759
  content: "";
@@ -8704,6 +8796,9 @@ label.custom-control-label {
8704
8796
  transition: none;
8705
8797
  }
8706
8798
  }
8799
+ .c-prefers-reduced-motion .custom-control-label::before {
8800
+ transition: none;
8801
+ }
8707
8802
 
8708
8803
  .custom-control-label::after {
8709
8804
  background: no-repeat 50%/50% 50%;
@@ -8844,6 +8939,10 @@ label.custom-control-label {
8844
8939
  transition: none;
8845
8940
  }
8846
8941
  }
8942
+ .c-prefers-reduced-motion .custom-switch .custom-control-label::after {
8943
+ transition: none;
8944
+ }
8945
+
8847
8946
  .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
8848
8947
  background-color: #fff;
8849
8948
  transform: translateX(0.75rem);
@@ -9010,6 +9109,10 @@ label.custom-control-label {
9010
9109
  transition: none;
9011
9110
  }
9012
9111
  }
9112
+ .c-prefers-reduced-motion .custom-range::-webkit-slider-thumb {
9113
+ transition: none;
9114
+ }
9115
+
9013
9116
  .custom-range::-webkit-slider-thumb:active {
9014
9117
  background-color: #b3d7ff;
9015
9118
  }
@@ -9037,6 +9140,10 @@ label.custom-control-label {
9037
9140
  transition: none;
9038
9141
  }
9039
9142
  }
9143
+ .c-prefers-reduced-motion .custom-range::-moz-range-thumb {
9144
+ transition: none;
9145
+ }
9146
+
9040
9147
  .custom-range::-moz-range-thumb:active {
9041
9148
  background-color: #b3d7ff;
9042
9149
  }
@@ -9066,6 +9173,10 @@ label.custom-control-label {
9066
9173
  transition: none;
9067
9174
  }
9068
9175
  }
9176
+ .c-prefers-reduced-motion .custom-range::-ms-thumb {
9177
+ transition: none;
9178
+ }
9179
+
9069
9180
  .custom-range::-ms-thumb:active {
9070
9181
  background-color: #b3d7ff;
9071
9182
  }
@@ -9113,6 +9224,10 @@ label.custom-control-label {
9113
9224
  transition: none;
9114
9225
  }
9115
9226
  }
9227
+ .c-prefers-reduced-motion .custom-file-label,
9228
+ .c-prefers-reduced-motion .custom-select {
9229
+ transition: none;
9230
+ }
9116
9231
 
9117
9232
  .clay-time .btn {
9118
9233
  align-items: center;
@@ -9253,6 +9368,10 @@ label.custom-control-label {
9253
9368
  transition: none;
9254
9369
  }
9255
9370
  }
9371
+ .c-prefers-reduced-motion .date-picker-nav .nav-btn {
9372
+ transition: none;
9373
+ }
9374
+
9256
9375
  .date-picker-nav .nav-btn:hover {
9257
9376
  background-color: #e9ecef;
9258
9377
  }
@@ -9346,6 +9465,10 @@ label.custom-control-label {
9346
9465
  transition: none;
9347
9466
  }
9348
9467
  }
9468
+ .c-prefers-reduced-motion .date-picker-calendar-item {
9469
+ transition: none;
9470
+ }
9471
+
9349
9472
  .date-picker-calendar-item:disabled, .date-picker-calendar-item.disabled {
9350
9473
  cursor: not-allowed;
9351
9474
  }
@@ -11029,6 +11152,10 @@ label.custom-control-label {
11029
11152
  transition: none;
11030
11153
  }
11031
11154
  }
11155
+ .c-prefers-reduced-motion .modal.fade .modal-dialog {
11156
+ transition: none;
11157
+ }
11158
+
11032
11159
  .modal.show .modal-dialog {
11033
11160
  transform: none;
11034
11161
  }
@@ -11515,6 +11642,18 @@ label.custom-control-label {
11515
11642
  .multi-step-item.complete .multi-step-divider {
11516
11643
  background-color: #6c757d;
11517
11644
  }
11645
+ .multi-step-item.error .multi-step-icon {
11646
+ background-color: #dc3545;
11647
+ 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");
11648
+ color: #fff;
11649
+ text-indent: -100px;
11650
+ }
11651
+ .multi-step-item.error .multi-step-icon[data-multi-step-icon]::before {
11652
+ content: none;
11653
+ }
11654
+ .multi-step-item.error .multi-step-icon .lexicon-icon {
11655
+ display: none;
11656
+ }
11518
11657
  .multi-step-item.disabled .multi-step-title {
11519
11658
  color: #ced4da;
11520
11659
  }
@@ -11584,6 +11723,9 @@ label.custom-control-label {
11584
11723
  .multi-step-icon {
11585
11724
  align-items: center;
11586
11725
  background-color: #e9ecef;
11726
+ background-position: center;
11727
+ background-repeat: no-repeat;
11728
+ background-size: 1rem;
11587
11729
  border-radius: 0.25rem;
11588
11730
  border-width: 0px;
11589
11731
  color: rgba(0, 0, 0, 0.5);
@@ -11882,7 +12024,6 @@ label.custom-control-label {
11882
12024
  padding-right: 0.5rem;
11883
12025
  padding-top: 0.5rem;
11884
12026
  }
11885
-
11886
12027
  .nav-unstyled {
11887
12028
  flex-wrap: nowrap;
11888
12029
  }
@@ -12093,6 +12234,14 @@ label.custom-control-label {
12093
12234
  color: #fff;
12094
12235
  }
12095
12236
 
12237
+ .nav-tabs-light {
12238
+ background-color: #f8f9fa;
12239
+ }
12240
+ .nav-tabs-light + .tab-content .tab-pane {
12241
+ background-color: transparent;
12242
+ border-radius: 0;
12243
+ }
12244
+
12096
12245
  .menubar {
12097
12246
  position: relative;
12098
12247
  }
@@ -16510,6 +16659,10 @@ label.custom-control-label {
16510
16659
  transition: none;
16511
16660
  }
16512
16661
  }
16662
+ .c-prefers-reduced-motion .panel-header-link {
16663
+ transition: none;
16664
+ }
16665
+
16513
16666
  .panel-header-link:hover, .panel-header-link.hover {
16514
16667
  color: inherit;
16515
16668
  }
@@ -16525,6 +16678,10 @@ label.custom-control-label {
16525
16678
  transition: none;
16526
16679
  }
16527
16680
  }
16681
+ .c-prefers-reduced-motion .panel-header-link.panel-header.collapsed {
16682
+ transition: none;
16683
+ }
16684
+
16528
16685
  .panel-header-link .collapse-icon {
16529
16686
  padding-right: 2.28125rem;
16530
16687
  }
@@ -17120,6 +17277,9 @@ label.custom-control-label {
17120
17277
  transition: none;
17121
17278
  }
17122
17279
  }
17280
+ .c-prefers-reduced-motion .progress-bar {
17281
+ transition: none;
17282
+ }
17123
17283
 
17124
17284
  .progress-bar-striped {
17125
17285
  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);
@@ -17774,6 +17934,10 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
17774
17934
  transition: none;
17775
17935
  }
17776
17936
  }
17937
+ .c-prefers-reduced-motion .sidebar-dark .nav-nested .nav-link {
17938
+ transition: none;
17939
+ }
17940
+
17777
17941
  .sidebar-dark .nav-nested .nav-link:hover, .sidebar-dark .nav-nested .nav-link.hover {
17778
17942
  color: #fff;
17779
17943
  }
@@ -17832,6 +17996,10 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
17832
17996
  transition: none;
17833
17997
  }
17834
17998
  }
17999
+ .c-prefers-reduced-motion .sidebar-dark-l2 .nav-nested .nav-link {
18000
+ transition: none;
18001
+ }
18002
+
17835
18003
  .sidebar-dark-l2 .nav-nested .nav-link:hover, .sidebar-dark-l2 .nav-nested .nav-link.hover {
17836
18004
  color: #fff;
17837
18005
  }
@@ -17864,6 +18032,9 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
17864
18032
  transition: none;
17865
18033
  }
17866
18034
  }
18035
+ .c-prefers-reduced-motion .c-slideout-transition-in {
18036
+ transition: none;
18037
+ }
17867
18038
 
17868
18039
  .c-slideout-transition-out {
17869
18040
  transition: all 0.2s ease-in;
@@ -17873,6 +18044,9 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
17873
18044
  transition: none;
17874
18045
  }
17875
18046
  }
18047
+ .c-prefers-reduced-motion .c-slideout-transition-out {
18048
+ transition: none;
18049
+ }
17876
18050
 
17877
18051
  .c-slideout-fixed {
17878
18052
  position: fixed;
@@ -19362,10 +19536,10 @@ caption {
19362
19536
  width: 2.5rem;
19363
19537
  }
19364
19538
  .tbar-stacked .tbar-btn-monospaced:focus, .tbar-stacked .tbar-btn-monospaced.focus {
19365
- box-shadow: inset 0 0 0 0.125rem #75b8ff, inset 0 0 0 0.25rem #fff;
19539
+ box-shadow: inset 0 0 0 0.125rem #47a0ff, inset 0 0 0 0.25rem #fff;
19366
19540
  }
19367
19541
  .tbar-stacked .tbar-btn-monospaced:active:focus {
19368
- box-shadow: inset 0 0 0 0.125rem #75b8ff, inset 0 0 0 0.25rem #fff;
19542
+ box-shadow: inset 0 0 0 0.125rem #47a0ff, inset 0 0 0 0.25rem #fff;
19369
19543
  }
19370
19544
  .tbar-stacked .tbar-btn-monospaced .c-inner {
19371
19545
  margin-bottom: 0;
@@ -19820,6 +19994,10 @@ caption {
19820
19994
  transition: none;
19821
19995
  }
19822
19996
  }
19997
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar::before {
19998
+ transition: none;
19999
+ }
20000
+
19823
20001
  .toggle-switch-check ~ .toggle-switch-bar::after {
19824
20002
  background-color: #fff;
19825
20003
  border-color: #ced4da;
@@ -19841,6 +20019,10 @@ caption {
19841
20019
  transition: none;
19842
20020
  }
19843
20021
  }
20022
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar::after {
20023
+ transition: none;
20024
+ }
20025
+
19844
20026
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
19845
20027
  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;
19846
20028
  }
@@ -19849,6 +20031,10 @@ caption {
19849
20031
  transition: none;
19850
20032
  }
19851
20033
  }
20034
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
20035
+ transition: none;
20036
+ }
20037
+
19852
20038
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
19853
20039
  content: '\FEFF' attr(data-label-off);
19854
20040
  margin-left: 58px;
@@ -19860,6 +20046,10 @@ caption {
19860
20046
  transition: none;
19861
20047
  }
19862
20048
  }
20049
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
20050
+ transition: none;
20051
+ }
20052
+
19863
20053
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
19864
20054
  color: #495057;
19865
20055
  left: 0;
@@ -19877,6 +20067,10 @@ caption {
19877
20067
  transition: none;
19878
20068
  }
19879
20069
  }
20070
+ .c-prefers-reduced-motion .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
20071
+ transition: none;
20072
+ }
20073
+
19880
20074
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-on {
19881
20075
  left: 0;
19882
20076
  opacity: 0;
@@ -20403,6 +20597,10 @@ caption {
20403
20597
  transition: none;
20404
20598
  }
20405
20599
  }
20600
+ .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 {
20601
+ transition: none;
20602
+ }
20603
+
20406
20604
  .treeview.show-component-expander-on-hover .treeview-link:focus .component-expander, .treeview.show-component-expander-on-hover .treeview-link.focus .component-expander {
20407
20605
  opacity: 1;
20408
20606
  transition: none;
@@ -20416,6 +20614,10 @@ caption {
20416
20614
  transition: none;
20417
20615
  }
20418
20616
  }
20617
+ .c-prefers-reduced-motion .treeview.show-component-expander-on-hover .component-expander {
20618
+ transition: none;
20619
+ }
20620
+
20419
20621
  .treeview .quick-action-item {
20420
20622
  margin: 0 2px;
20421
20623
  min-height: 0;
@@ -20446,6 +20648,25 @@ caption {
20446
20648
  overflow-wrap: break-word;
20447
20649
  word-wrap: break-word;
20448
20650
  }
20651
+ .treeview-dropping-indicator-top {
20652
+ background-color: transparent;
20653
+ display: block;
20654
+ height: 2px;
20655
+ margin-top: -2px;
20656
+ outline: none;
20657
+ width: 100%;
20658
+ }
20659
+ .treeview-dropping-indicator-bottom {
20660
+ background-color: transparent;
20661
+ display: block;
20662
+ height: 2px;
20663
+ margin-bottom: -2px;
20664
+ outline: none;
20665
+ width: 100%;
20666
+ }
20667
+ .treeview-dropping-indicator-over {
20668
+ background-color: #47a0ff;
20669
+ }
20449
20670
  .treeview-link {
20450
20671
  background-color: transparent;
20451
20672
  cursor: pointer;
@@ -20474,15 +20695,9 @@ caption {
20474
20695
  .treeview-link:disabled, .treeview-link.disabled {
20475
20696
  cursor: not-allowed;
20476
20697
  }
20477
- .treeview-link.treeview-dropping-bottom {
20478
- box-shadow: 0 2px 0 0 #75b8ff;
20479
- }
20480
20698
  .treeview-link.treeview-dropping-middle {
20481
20699
  background-color: #e5f2ff;
20482
- border-color: #75b8ff;
20483
- }
20484
- .treeview-link.treeview-dropping-top {
20485
- box-shadow: 0 -2px 0 0 #75b8ff;
20700
+ border-color: #47a0ff;
20486
20701
  }
20487
20702
  .treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
20488
20703
  display: none;
@@ -20505,7 +20720,7 @@ caption {
20505
20720
  }
20506
20721
  .treeview-dragging {
20507
20722
  background-color: #fff;
20508
- border-color: #75b8ff;
20723
+ border-color: #47a0ff;
20509
20724
  border-radius: 0.2rem;
20510
20725
  border-style: solid;
20511
20726
  border-width: 1px;
@@ -20623,6 +20838,10 @@ caption {
20623
20838
  transition: none;
20624
20839
  }
20625
20840
  }
20841
+ .c-prefers-reduced-motion .close {
20842
+ transition: none;
20843
+ }
20844
+
20626
20845
  .close:hover {
20627
20846
  color: #000;
20628
20847
  opacity: 0.75;
@@ -29542,6 +29761,11 @@ a.text-dark:hover, a.text-dark:focus {
29542
29761
  visibility: hidden !important;
29543
29762
  }
29544
29763
 
29764
+ .c-prefers-reduced-motion {
29765
+ scroll-behavior: auto;
29766
+ transition: none;
29767
+ }
29768
+
29545
29769
  @keyframes loading-animation-circle {
29546
29770
  100% {
29547
29771
  transform: rotate(360deg);