@clayui/css 3.45.0 → 3.48.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. package/README.md +23 -69
  2. package/lib/css/atlas.css +265 -97
  3. package/lib/css/atlas.css.map +1 -1
  4. package/lib/css/base.css +219 -79
  5. package/lib/css/base.css.map +1 -1
  6. package/lib/css/bootstrap.css.map +1 -1
  7. package/lib/css/cadmin.css +182 -76
  8. package/lib/css/cadmin.css.map +1 -1
  9. package/lib/images/icons/export.svg +11 -0
  10. package/lib/images/icons/icons.svg +1 -1
  11. package/package.json +2 -2
  12. package/src/images/icons/export.svg +11 -0
  13. package/src/scss/_cadmin-variables.scss +2 -0
  14. package/src/scss/_variables.scss +1 -0
  15. package/src/scss/atlas/variables/_buttons.scss +3 -0
  16. package/src/scss/atlas/variables/_cards.scss +12 -0
  17. package/src/scss/atlas/variables/_globals.scss +42 -13
  18. package/src/scss/atlas/variables/_list-group.scss +28 -12
  19. package/src/scss/atlas-variables.scss +2 -0
  20. package/src/scss/atlas.scss +2 -0
  21. package/src/scss/base-variables.scss +2 -0
  22. package/src/scss/base.scss +2 -0
  23. package/src/scss/cadmin/_variables.scss +1 -0
  24. package/src/scss/cadmin/components/_aspect-ratio.scss +25 -38
  25. package/src/scss/cadmin/components/_cards.scss +10 -120
  26. package/src/scss/cadmin/components/_empty-state.scss +36 -0
  27. package/src/scss/cadmin/components/_links.scss +0 -8
  28. package/src/scss/cadmin/components/_treeview.scss +58 -1
  29. package/src/scss/cadmin/components/_type.scss +27 -42
  30. package/src/scss/cadmin/components/_utilities-functional-important.scss +35 -15
  31. package/src/scss/cadmin/variables/_aspect-ratio.scss +26 -0
  32. package/src/scss/cadmin/variables/_cards.scss +164 -1
  33. package/src/scss/cadmin/variables/_empty-state.scss +23 -0
  34. package/src/scss/cadmin/variables/_globals.scss +173 -11
  35. package/src/scss/cadmin/variables/_links.scss +14 -0
  36. package/src/scss/cadmin/variables/_list-group.scss +32 -16
  37. package/src/scss/cadmin/variables/_sidebar.scss +1 -1
  38. package/src/scss/cadmin/variables/_treeview.scss +17 -1
  39. package/src/scss/cadmin/variables/_utilities.scss +42 -0
  40. package/src/scss/cadmin.scss +2 -0
  41. package/src/scss/components/_aspect-ratio.scss +25 -38
  42. package/src/scss/components/_cards.scss +28 -122
  43. package/src/scss/components/_custom-forms.scss +2 -2
  44. package/src/scss/components/_dropdowns.scss +0 -28
  45. package/src/scss/components/_empty-state.scss +30 -0
  46. package/src/scss/components/_links.scss +1 -9
  47. package/src/scss/components/_multi-step-nav.scss +11 -5
  48. package/src/scss/components/_tables.scss +0 -8
  49. package/src/scss/components/_treeview.scss +58 -1
  50. package/src/scss/components/_type.scss +27 -41
  51. package/src/scss/components/_utilities-functional-important.scss +35 -15
  52. package/src/scss/functions/_lx-icons-generated.scss +2 -0
  53. package/src/scss/mixins/_alerts.scss +180 -113
  54. package/src/scss/mixins/_buttons.scss +4 -0
  55. package/src/scss/mixins/_cards.scss +59 -25
  56. package/src/scss/mixins/_dropdown-menu.scss +17 -0
  57. package/src/scss/mixins/_grid.scss +29 -0
  58. package/src/scss/mixins/_links.scss +22 -2
  59. package/src/scss/variables/_aspect-ratio.scss +26 -0
  60. package/src/scss/variables/_buttons.scss +6 -0
  61. package/src/scss/variables/_cards.scss +158 -4
  62. package/src/scss/variables/_custom-forms.scss +19 -4
  63. package/src/scss/variables/_dropdowns.scss +45 -0
  64. package/src/scss/variables/_empty-state.scss +23 -0
  65. package/src/scss/variables/_globals.scss +172 -11
  66. package/src/scss/variables/_links.scss +21 -3
  67. package/src/scss/variables/_list-group.scss +22 -12
  68. package/src/scss/variables/_multi-step-nav.scss +6 -0
  69. package/src/scss/variables/_range.scss +4 -2
  70. package/src/scss/variables/_sidebar.scss +3 -3
  71. package/src/scss/variables/_stickers.scss +3 -3
  72. package/src/scss/variables/_tables.scss +14 -0
  73. package/src/scss/variables/_toggle-switch.scss +14 -2
  74. package/src/scss/variables/_treeview.scss +21 -1
  75. package/src/scss/variables/_utilities.scss +42 -0
package/lib/css/base.css CHANGED
@@ -1128,6 +1128,10 @@ button.collapse-icon .c-inner {
1128
1128
  padding-bottom: calc(3 / 4 * 100%);
1129
1129
  }
1130
1130
 
1131
+ .aspect-ratio-8-to-3 {
1132
+ padding-bottom: calc(3 / 8 * 100%);
1133
+ }
1134
+
1131
1135
  .aspect-ratio-8-to-5 {
1132
1136
  padding-bottom: calc(5 / 8 * 100%);
1133
1137
  }
@@ -1210,6 +1214,9 @@ button.collapse-icon .c-inner {
1210
1214
  margin-right: -0.75rem;
1211
1215
  margin-top: -0.375rem;
1212
1216
  }
1217
+ .btn .inline-item .lexicon-icon {
1218
+ margin-top: 0;
1219
+ }
1213
1220
  .btn .btn-section {
1214
1221
  display: block;
1215
1222
  font-size: 0.6875rem;
@@ -1331,6 +1338,9 @@ input[type=button].btn-block {
1331
1338
  padding: 0;
1332
1339
  width: 100%;
1333
1340
  }
1341
+ .btn-monospaced .lexicon-icon {
1342
+ margin-top: 0;
1343
+ }
1334
1344
  .btn-group-vertical > .btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-monospaced.btn-lg {
1335
1345
  height: 3rem;
1336
1346
  width: 3rem;
@@ -4392,6 +4402,20 @@ input[type=button].btn-block {
4392
4402
  word-wrap: break-word;
4393
4403
  }
4394
4404
 
4405
+ .c-empty-state-sm.c-empty-state-animation {
4406
+ margin: 2.5rem auto 2rem;
4407
+ max-width: 268px;
4408
+ }
4409
+ .c-empty-state-sm .c-empty-state-image {
4410
+ max-width: 120px;
4411
+ }
4412
+ .c-empty-state-sm .c-empty-state-title {
4413
+ font-size: 1rem;
4414
+ line-height: 1.5;
4415
+ }
4416
+ .c-empty-state-sm .c-empty-state-text {
4417
+ font-size: 0.875rem;
4418
+ }
4395
4419
  .label {
4396
4420
  border-color: #212529;
4397
4421
  border-radius: 0.25rem;
@@ -4978,6 +5002,12 @@ input[type=button].btn-block {
4978
5002
  bottom: -0.75rem;
4979
5003
  top: auto;
4980
5004
  }
5005
+ .sticker-outside.sticker-bottom-right.sticker-sm {
5006
+ bottom: -0.75rem;
5007
+ left: auto;
5008
+ right: -0.75rem;
5009
+ top: auto;
5010
+ }
4981
5011
  .sticker-outside.sticker-top-right.sticker-sm {
4982
5012
  left: auto;
4983
5013
  right: -0.75rem;
@@ -4997,6 +5027,12 @@ input[type=button].btn-block {
4997
5027
  bottom: -1.25rem;
4998
5028
  top: auto;
4999
5029
  }
5030
+ .sticker-outside.sticker-bottom-right.sticker-lg {
5031
+ bottom: -1.25rem;
5032
+ left: auto;
5033
+ right: -1.25rem;
5034
+ top: auto;
5035
+ }
5000
5036
  .sticker-outside.sticker-top-right.sticker-lg {
5001
5037
  left: auto;
5002
5038
  right: -1.25rem;
@@ -5016,6 +5052,12 @@ input[type=button].btn-block {
5016
5052
  bottom: -1.5rem;
5017
5053
  top: auto;
5018
5054
  }
5055
+ .sticker-outside.sticker-bottom-right.sticker-xl {
5056
+ bottom: -1.5rem;
5057
+ left: auto;
5058
+ right: -1.5rem;
5059
+ top: auto;
5060
+ }
5019
5061
  .sticker-outside.sticker-top-right.sticker-xl {
5020
5062
  left: auto;
5021
5063
  right: -1.5rem;
@@ -5060,33 +5102,16 @@ input[type=button].btn-block {
5060
5102
  .card-horizontal {
5061
5103
  background-color: #fff;
5062
5104
  border-color: rgba(0, 0, 0, 0.125);
5105
+ border-radius: 0.25rem;
5063
5106
  border-style: solid;
5064
5107
  border-width: 0.0625rem;
5065
- border-radius: 0.25rem;
5066
5108
  display: block;
5067
5109
  margin-bottom: 1.5rem;
5068
5110
  min-width: 0;
5069
5111
  position: relative;
5112
+ overflow-wrap: break-word;
5070
5113
  word-wrap: break-word;
5071
5114
  }
5072
- .card .autofit-col:first-child,
5073
- .card-horizontal .autofit-col:first-child {
5074
- border-bottom-left-radius: calc(
5075
- 0.25rem - 0.0625rem
5076
- );
5077
- border-top-left-radius: calc(
5078
- 0.25rem - 0.0625rem
5079
- );
5080
- }
5081
- .card .autofit-col:last-child,
5082
- .card-horizontal .autofit-col:last-child {
5083
- border-bottom-right-radius: calc(
5084
- 0.25rem - 0.0625rem
5085
- );
5086
- border-top-right-radius: calc(
5087
- 0.25rem - 0.0625rem
5088
- );
5089
- }
5090
5115
  .card .aspect-ratio .label,
5091
5116
  .card-horizontal .aspect-ratio .label {
5092
5117
  display: block;
@@ -5132,6 +5157,24 @@ input[type=button].btn-block {
5132
5157
  margin-left: 0;
5133
5158
  margin-right: 0;
5134
5159
  }
5160
+ .card .autofit-col:first-child,
5161
+ .card-horizontal .autofit-col:first-child {
5162
+ border-bottom-left-radius: calc(
5163
+ 0.25rem - 0.0625rem
5164
+ );
5165
+ border-top-left-radius: calc(
5166
+ 0.25rem - 0.0625rem
5167
+ );
5168
+ }
5169
+ .card .autofit-col:last-child,
5170
+ .card-horizontal .autofit-col:last-child {
5171
+ border-bottom-right-radius: calc(
5172
+ 0.25rem - 0.0625rem
5173
+ );
5174
+ border-top-right-radius: calc(
5175
+ 0.25rem - 0.0625rem
5176
+ );
5177
+ }
5135
5178
  .card > .list-group:first-child .list-group-item:first-child,
5136
5179
  .card-horizontal > .list-group:first-child .list-group-item:first-child {
5137
5180
  border-top-left-radius: 0.25rem;
@@ -5175,16 +5218,17 @@ input[type=button].btn-block {
5175
5218
  margin-bottom: 0;
5176
5219
  margin-top: 0;
5177
5220
  }
5178
- .card-subtitle a {
5221
+ .card-subtitle[href],
5222
+ .card-subtitle [href] {
5179
5223
  color: #6c757d;
5180
5224
  }
5181
- .card-subtitle a:hover {
5225
+ .card-subtitle[href]:hover,
5226
+ .card-subtitle [href]:hover {
5182
5227
  color: #494f54;
5183
5228
  }
5184
5229
  .card-text:last-child {
5185
5230
  margin-bottom: 0;
5186
5231
  }
5187
-
5188
5232
  .card-link {
5189
5233
  color: #007bff;
5190
5234
  }
@@ -5213,11 +5257,7 @@ input[type=button].btn-block {
5213
5257
  padding: 0.75rem 1.25rem;
5214
5258
  }
5215
5259
  .card-header:first-child {
5216
- border-radius: calc(
5217
- 0.25rem - 0.0625rem
5218
- ) calc(
5219
- 0.25rem - 0.0625rem
5220
- ) 0 0;
5260
+ border-radius: calc( 0.25rem - 0.0625rem ) calc( 0.25rem - 0.0625rem ) 0 0;
5221
5261
  }
5222
5262
  .card-header + .list-group .list-group-item:first-child {
5223
5263
  border-top: 0;
@@ -5241,13 +5281,8 @@ input[type=button].btn-block {
5241
5281
  padding: 0.75rem 1.25rem;
5242
5282
  }
5243
5283
  .card-footer:last-child {
5244
- border-radius: 0 0 calc(
5245
- 0.25rem - 0.0625rem
5246
- ) calc(
5247
- 0.25rem - 0.0625rem
5248
- );
5284
+ border-radius: 0 0 calc( 0.25rem - 0.0625rem ) calc( 0.25rem - 0.0625rem );
5249
5285
  }
5250
-
5251
5286
  .card-img-overlay {
5252
5287
  bottom: 0;
5253
5288
  left: 0;
@@ -6505,6 +6540,9 @@ input[type=button].btn-block {
6505
6540
  .dropdown-action > .dropdown-toggle .lexicon-icon {
6506
6541
  margin-top: 0;
6507
6542
  }
6543
+ .dropdown-action > .dropdown-toggle .inline-item .lexicon-icon {
6544
+ margin-top: 0;
6545
+ }
6508
6546
  .dropdown-menu-indicator-start .dropdown-item-indicator {
6509
6547
  height: 1rem;
6510
6548
  left: 1.5rem;
@@ -7829,20 +7867,24 @@ button.link-outline {
7829
7867
  margin-bottom: calc(( 1.9375rem - (1em * 1.2) ) / 2);
7830
7868
  margin-top: calc(( 1.9375rem - (1em * 1.2) ) / 2);
7831
7869
  }
7832
- .component-title a {
7870
+ .component-title[href],
7871
+ .component-title [href] {
7833
7872
  color: #212529;
7834
7873
  }
7835
- .component-title a:hover {
7874
+ .component-title[href]:hover,
7875
+ .component-title [href]:hover {
7836
7876
  color: black;
7837
7877
  }
7838
7878
  .component-subtitle {
7839
7879
  color: #6c757d;
7840
7880
  margin-bottom: 0;
7841
7881
  }
7842
- .component-subtitle a {
7882
+ .component-subtitle[href],
7883
+ .component-subtitle [href] {
7843
7884
  color: #6c757d;
7844
7885
  }
7845
- .component-subtitle a:hover {
7886
+ .component-subtitle[href]:hover,
7887
+ .component-subtitle [href]:hover {
7846
7888
  color: #494f54;
7847
7889
  }
7848
7890
  .component-action {
@@ -8135,10 +8177,10 @@ button.link-outline {
8135
8177
  margin-bottom: 1rem;
8136
8178
  }
8137
8179
  .clay-range-input[data-label-min]::before {
8138
- content: attr(data-label-min);
8180
+ content: '\FEFF' attr(data-label-min);
8139
8181
  }
8140
8182
  .clay-range-input[data-label-max]::after {
8141
- content: attr(data-label-max);
8183
+ content: '\FEFF' attr(data-label-max);
8142
8184
  right: 0;
8143
8185
  }
8144
8186
  .clay-range-input::after, .clay-range-input::before {
@@ -8714,10 +8756,10 @@ label.custom-control-label {
8714
8756
  background-color: #e9ecef;
8715
8757
  }
8716
8758
  .custom-file-input:lang(en) ~ .custom-file-label::after {
8717
- content: "Browse";
8759
+ content: '\FEFF Browse';
8718
8760
  }
8719
8761
  .custom-file-input ~ .custom-file-label[data-browse]::after {
8720
- content: attr(data-browse);
8762
+ content: '\FEFF' attr(data-browse);
8721
8763
  }
8722
8764
 
8723
8765
  .custom-file-label {
@@ -8741,7 +8783,7 @@ label.custom-control-label {
8741
8783
  border-radius: 0 0.25rem 0.25rem 0;
8742
8784
  bottom: 0;
8743
8785
  color: #495057;
8744
- content: "Browse";
8786
+ content: '\FEFF Browse';
8745
8787
  display: block;
8746
8788
  height: 36px;
8747
8789
  line-height: 1.5;
@@ -10448,41 +10490,49 @@ label.custom-control-label {
10448
10490
  margin-bottom: 0;
10449
10491
  margin-top: -0.25rem;
10450
10492
  }
10451
- .list-group-title a {
10493
+ .list-group-title[href],
10494
+ .list-group-title [href] {
10452
10495
  color: #212529;
10453
10496
  max-width: 100%;
10454
10497
  }
10455
- .list-group-title a:hover {
10498
+ .list-group-title[href]:hover,
10499
+ .list-group-title [href]:hover {
10456
10500
  color: black;
10457
10501
  }
10458
10502
  .list-group-subtitle {
10459
10503
  color: #6c757d;
10460
10504
  margin-bottom: 0;
10461
10505
  }
10462
- .list-group-subtitle a {
10506
+ .list-group-subtitle[href],
10507
+ .list-group-subtitle [href] {
10463
10508
  color: #6c757d;
10464
10509
  }
10465
- .list-group-subtitle a:hover {
10510
+ .list-group-subtitle[href]:hover,
10511
+ .list-group-subtitle [href]:hover {
10466
10512
  color: #494f54;
10467
10513
  }
10468
10514
  .list-group-text {
10469
10515
  color: #212529;
10470
10516
  margin-bottom: 0;
10471
10517
  }
10472
- .list-group-text a {
10518
+ .list-group-text[href],
10519
+ .list-group-text [href] {
10473
10520
  color: #212529;
10474
10521
  }
10475
- .list-group-text a:hover {
10522
+ .list-group-text[href]:hover,
10523
+ .list-group-text [href]:hover {
10476
10524
  color: black;
10477
10525
  }
10478
10526
  .list-group-subtext {
10479
10527
  color: #6c757d;
10480
10528
  margin-bottom: 0;
10481
10529
  }
10482
- .list-group-subtext a {
10530
+ .list-group-subtext[href],
10531
+ .list-group-subtext [href] {
10483
10532
  color: #6c757d;
10484
10533
  }
10485
- .list-group-subtext a:hover {
10534
+ .list-group-subtext[href]:hover,
10535
+ .list-group-subtext [href]:hover {
10486
10536
  color: #494f54;
10487
10537
  }
10488
10538
  .show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
@@ -11421,7 +11471,7 @@ label.custom-control-label {
11421
11471
  background-size: 1rem;
11422
11472
  }
11423
11473
  .multi-step-item.complete .multi-step-icon[data-multi-step-icon]:before {
11424
- content: normal;
11474
+ content: none;
11425
11475
  }
11426
11476
  .multi-step-item.complete .multi-step-icon:active {
11427
11477
  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='M192.9%20429.5c-8.3%200-16.4-3.3-22.3-9.2L44.5%20294.1C15%20263.2%2062.7%20222%2089.1%20249.5L191.5%20352l230-258.9c27.2-30.5%2074.3%2011.5%2047.1%2041.9L216.4%20418.9c-5.8%206.5-14%2010.3-22.6%2010.6h-.9z'%20fill='%23fff'/%3E%3C/svg%3E");
@@ -11525,8 +11575,8 @@ label.custom-control-label {
11525
11575
  outline: 0;
11526
11576
  text-decoration: none;
11527
11577
  }
11528
- .multi-step-icon[data-multi-step-icon]:before {
11529
- content: attr(data-multi-step-icon);
11578
+ .multi-step-icon[data-multi-step-icon]::before {
11579
+ content: '\FEFF' attr(data-multi-step-icon);
11530
11580
  height: 2rem;
11531
11581
  line-height: 2rem;
11532
11582
  text-align: center;
@@ -16738,7 +16788,8 @@ a.sheet-subtitle:hover {
16738
16788
  font-size: 1.5rem;
16739
16789
  font-weight: 500;
16740
16790
  }
16741
- .sidebar-header .component-title a {
16791
+ .sidebar-header .component-title[href],
16792
+ .sidebar-header .component-title [href] {
16742
16793
  color: #212529;
16743
16794
  }
16744
16795
  .sidebar-header .component-subtitle {
@@ -16798,6 +16849,12 @@ a.sheet-subtitle:hover {
16798
16849
  bottom: -0.75rem;
16799
16850
  top: auto;
16800
16851
  }
16852
+ .sidebar-list-group .sticker.sticker-outside.sticker-bottom-right {
16853
+ bottom: -0.75rem;
16854
+ left: auto;
16855
+ right: -0.75rem;
16856
+ top: auto;
16857
+ }
16801
16858
  .sidebar-list-group .sticker.sticker-outside.sticker-top-right {
16802
16859
  left: auto;
16803
16860
  right: -0.75rem;
@@ -16830,13 +16887,15 @@ a.sheet-subtitle:hover {
16830
16887
  .sidebar-light .sidebar-list-group .list-group-title {
16831
16888
  font-size: 1rem;
16832
16889
  }
16833
- .sidebar-light .sidebar-list-group .list-group-title a {
16890
+ .sidebar-light .sidebar-list-group .list-group-title[href],
16891
+ .sidebar-light .sidebar-list-group .list-group-title [href] {
16834
16892
  color: #212529;
16835
16893
  }
16836
16894
  .sidebar-light .sidebar-panel {
16837
16895
  background-color: #e9ecef;
16838
16896
  }
16839
- .sidebar-light .sidebar-dd a {
16897
+ .sidebar-light .sidebar-dd[href],
16898
+ .sidebar-light .sidebar-dd [href] {
16840
16899
  color: #212529;
16841
16900
  }
16842
16901
  .sidebar-light .component-navigation-bar {
@@ -16904,13 +16963,15 @@ a.sheet-subtitle:hover {
16904
16963
  .sidebar-dark .sidebar-header .component-title {
16905
16964
  color: inherit;
16906
16965
  }
16907
- .sidebar-dark .sidebar-header .component-title a {
16966
+ .sidebar-dark .sidebar-header .component-title[href],
16967
+ .sidebar-dark .sidebar-header .component-title [href] {
16908
16968
  color: inherit;
16909
16969
  }
16910
16970
  .sidebar-dark .sidebar-header .component-subtitle {
16911
16971
  color: inherit;
16912
16972
  }
16913
- .sidebar-dark .sidebar-header .component-subtitle a {
16973
+ .sidebar-dark .sidebar-header .component-subtitle[href],
16974
+ .sidebar-dark .sidebar-header .component-subtitle [href] {
16914
16975
  color: inherit;
16915
16976
  }
16916
16977
  .sidebar-dark .nav-nested .nav-link {
@@ -17468,10 +17529,12 @@ caption {
17468
17529
  line-height: 1.5;
17469
17530
  margin-bottom: 0;
17470
17531
  }
17471
- .table-title a {
17532
+ .table-title[href],
17533
+ .table-title [href] {
17472
17534
  color: #212529;
17473
17535
  }
17474
- .table-title a:hover {
17536
+ .table-title[href]:hover,
17537
+ .table-title [href]:hover {
17475
17538
  color: #212529;
17476
17539
  }
17477
17540
  .table-link {
@@ -17750,10 +17813,12 @@ caption {
17750
17813
  line-height: 1.2;
17751
17814
  margin-bottom: 0;
17752
17815
  }
17753
- .table-list-title a {
17816
+ .table-list-title[href],
17817
+ .table-list-title [href] {
17754
17818
  color: #212529;
17755
17819
  }
17756
- .table-list-title a:hover {
17820
+ .table-list-title[href]:hover,
17821
+ .table-list-title [href]:hover {
17757
17822
  color: #212529;
17758
17823
  }
17759
17824
  .table-list-link {
@@ -18956,7 +19021,7 @@ caption {
18956
19021
  }
18957
19022
  }
18958
19023
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
18959
- content: attr(data-label-off);
19024
+ content: '\FEFF' attr(data-label-off);
18960
19025
  margin-left: 58px;
18961
19026
  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;
18962
19027
  white-space: nowrap;
@@ -19019,7 +19084,7 @@ caption {
19019
19084
  left: 25px;
19020
19085
  }
19021
19086
  .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
19022
- content: attr(data-label-on);
19087
+ content: '\FEFF' attr(data-label-on);
19023
19088
  }
19024
19089
  .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon {
19025
19090
  color: #fff;
@@ -19520,6 +19585,7 @@ caption {
19520
19585
  word-wrap: break-word;
19521
19586
  }
19522
19587
  .treeview-link {
19588
+ background-color: transparent;
19523
19589
  cursor: pointer;
19524
19590
  display: block;
19525
19591
  border-color: transparent;
@@ -19530,6 +19596,7 @@ caption {
19530
19596
  min-width: 100%;
19531
19597
  padding: 0;
19532
19598
  position: relative;
19599
+ text-align: left;
19533
19600
  -ms-user-select: none;
19534
19601
  -moz-user-select: none;
19535
19602
  -webkit-user-select: none;
@@ -19542,6 +19609,9 @@ caption {
19542
19609
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
19543
19610
  outline: 0;
19544
19611
  }
19612
+ .treeview-link:disabled, .treeview-link.disabled {
19613
+ cursor: not-allowed;
19614
+ }
19545
19615
  .treeview-link.treeview-dropping-bottom {
19546
19616
  box-shadow: 0 2px 0 0 #75b8ff;
19547
19617
  }
@@ -19553,7 +19623,10 @@ caption {
19553
19623
  box-shadow: 0 -2px 0 0 #75b8ff;
19554
19624
  }
19555
19625
  .treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
19556
- display: block;
19626
+ display: flex;
19627
+ }
19628
+ .treeview-link:disabled .component-action, .treeview-link.disabled .component-action {
19629
+ display: none;
19557
19630
  }
19558
19631
  .treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
19559
19632
  display: none;
@@ -19594,6 +19667,10 @@ caption {
19594
19667
  .treeview-light .component-expander:hover {
19595
19668
  color: #007bff;
19596
19669
  }
19670
+ .treeview-light .component-expander:disabled, .treeview-light .component-expander.disabled {
19671
+ color: #6c757d;
19672
+ opacity: 0.5;
19673
+ }
19597
19674
  .treeview-light .component-expander.btn-secondary {
19598
19675
  background-color: #fff;
19599
19676
  }
@@ -19612,12 +19689,20 @@ caption {
19612
19689
  background-color: #e9ecef;
19613
19690
  color: #212529;
19614
19691
  }
19692
+ .treeview-light .treeview-link:disabled, .treeview-light .treeview-link.disabled {
19693
+ background-color: transparent;
19694
+ color: rgba(108, 117, 125, 0.5);
19695
+ }
19615
19696
  .treeview-dark .component-expander {
19616
19697
  color: #a9afb5;
19617
19698
  }
19618
19699
  .treeview-dark .component-expander:hover {
19619
19700
  color: #75b8ff;
19620
19701
  }
19702
+ .treeview-dark .component-expander:disabled, .treeview-dark .component-expander.disabled {
19703
+ color: #a9afb5;
19704
+ opacity: 0.5;
19705
+ }
19621
19706
  .treeview-dark .treeview-link {
19622
19707
  color: #a9afb5;
19623
19708
  }
@@ -19630,11 +19715,14 @@ caption {
19630
19715
  }
19631
19716
  .treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
19632
19717
  background-color: transparent;
19633
- color: rgba(169, 175, 181, 0.04);
19718
+ color: rgba(169, 175, 181, 0.5);
19634
19719
  }
19635
19720
  .treeview-dark .component-action {
19636
19721
  color: #a9afb5;
19637
19722
  }
19723
+ .treeview-dark .component-action:disabled, .treeview-dark .component-action.disabled {
19724
+ color: #a9afb5;
19725
+ }
19638
19726
  .bg-checkered {
19639
19727
  background-image: linear-gradient(45deg, #e9ecef 25%, transparent 25%), linear-gradient(-45deg, #e9ecef 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e9ecef 75%), linear-gradient(-45deg, transparent 75%, #e9ecef 75%);
19640
19728
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
@@ -27050,10 +27138,6 @@ button.bg-dark:focus {
27050
27138
  z-index: 1;
27051
27139
  }
27052
27140
 
27053
- .text-monospace {
27054
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
27055
- }
27056
-
27057
27141
  .text-justify {
27058
27142
  text-align: justify !important;
27059
27143
  }
@@ -27148,34 +27232,90 @@ button.bg-dark:focus {
27148
27232
  text-transform: capitalize !important;
27149
27233
  }
27150
27234
 
27151
- .font-weight-light {
27152
- font-weight: 300 !important;
27235
+ .font-weight-lighter,
27236
+ .text-weight-lighter {
27237
+ font-weight: lighter !important;
27153
27238
  }
27154
27239
 
27155
- .font-weight-lighter {
27156
- font-weight: lighter !important;
27240
+ .font-weight-light,
27241
+ .text-weight-light {
27242
+ font-weight: 300 !important;
27157
27243
  }
27158
27244
 
27159
- .font-weight-normal {
27245
+ .font-weight-normal,
27246
+ .text-weight-normal {
27160
27247
  font-weight: 400 !important;
27161
27248
  }
27162
27249
 
27163
- .font-weight-semi-bold {
27250
+ .font-weight-semi-bold,
27251
+ .text-weight-semi-bold {
27164
27252
  font-weight: 500 !important;
27165
27253
  }
27166
27254
 
27167
- .font-weight-bold {
27255
+ .font-weight-bold,
27256
+ .text-weight-bold {
27168
27257
  font-weight: 700 !important;
27169
27258
  }
27170
27259
 
27171
- .font-weight-bolder {
27260
+ .font-weight-bolder,
27261
+ .text-weight-bolder {
27172
27262
  font-weight: 900 !important;
27173
27263
  }
27174
27264
 
27175
- .font-italic {
27265
+ .font-italic,
27266
+ .text-italic {
27176
27267
  font-style: italic !important;
27177
27268
  }
27178
27269
 
27270
+ .font-monospace,
27271
+ .text-monospace {
27272
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
27273
+ }
27274
+
27275
+ .text-1 {
27276
+ font-size: 0.625rem;
27277
+ }
27278
+
27279
+ .text-2 {
27280
+ font-size: 0.75rem;
27281
+ }
27282
+
27283
+ .text-3 {
27284
+ font-size: 0.875rem;
27285
+ }
27286
+
27287
+ .text-4 {
27288
+ font-size: 1rem;
27289
+ }
27290
+
27291
+ .text-5 {
27292
+ font-size: 1.125rem;
27293
+ }
27294
+
27295
+ .text-6 {
27296
+ font-size: 1.25rem;
27297
+ }
27298
+
27299
+ .text-7 {
27300
+ font-size: 1.5rem;
27301
+ }
27302
+
27303
+ .text-8 {
27304
+ font-size: 1.75rem;
27305
+ }
27306
+
27307
+ .text-9 {
27308
+ font-size: 2rem;
27309
+ }
27310
+
27311
+ .text-10 {
27312
+ font-size: 2.25rem;
27313
+ }
27314
+
27315
+ .text-11 {
27316
+ font-size: 2.5rem;
27317
+ }
27318
+
27179
27319
  .text-white {
27180
27320
  color: #fff !important;
27181
27321
  }