@clayui/css 3.44.2 → 3.47.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 (76) hide show
  1. package/README.md +23 -69
  2. package/lib/css/atlas.css +457 -86
  3. package/lib/css/atlas.css.map +1 -1
  4. package/lib/css/base.css +411 -68
  5. package/lib/css/base.css.map +1 -1
  6. package/lib/css/cadmin.css +204 -90
  7. package/lib/css/cadmin.css.map +1 -1
  8. package/lib/images/icons/add-cell.svg +1 -1
  9. package/lib/images/icons/corner-radius.svg +12 -0
  10. package/lib/images/icons/export.svg +11 -0
  11. package/lib/images/icons/font-family.svg +10 -0
  12. package/lib/images/icons/font-size.svg +10 -0
  13. package/lib/images/icons/icons.svg +1 -1
  14. package/lib/images/icons/shadow.svg +9 -0
  15. package/package.json +2 -2
  16. package/src/images/icons/add-cell.svg +1 -1
  17. package/src/images/icons/corner-radius.svg +12 -0
  18. package/src/images/icons/export.svg +11 -0
  19. package/src/images/icons/font-family.svg +10 -0
  20. package/src/images/icons/font-size.svg +10 -0
  21. package/src/images/icons/shadow.svg +9 -0
  22. package/src/scss/_components.scss +1 -0
  23. package/src/scss/_variables.scss +2 -0
  24. package/src/scss/atlas/variables/_buttons.scss +3 -0
  25. package/src/scss/atlas/variables/_cards.scss +12 -0
  26. package/src/scss/atlas/variables/_forms.scss +2 -1
  27. package/src/scss/atlas/variables/_globals.scss +42 -13
  28. package/src/scss/atlas/variables/_list-group.scss +28 -12
  29. package/src/scss/cadmin/_variables.scss +1 -0
  30. package/src/scss/cadmin/components/_aspect-ratio.scss +25 -38
  31. package/src/scss/cadmin/components/_cards.scss +10 -120
  32. package/src/scss/cadmin/components/_custom-forms.scss +4 -0
  33. package/src/scss/cadmin/components/_empty-state.scss +36 -0
  34. package/src/scss/cadmin/components/_forms.scss +1 -1
  35. package/src/scss/cadmin/components/_links.scss +1 -14
  36. package/src/scss/cadmin/components/_navs.scss +8 -0
  37. package/src/scss/cadmin/components/_treeview.scss +191 -210
  38. package/src/scss/cadmin/components/_type.scss +27 -42
  39. package/src/scss/cadmin/components/_utilities-functional-important.scss +35 -15
  40. package/src/scss/cadmin/variables/_aspect-ratio.scss +26 -0
  41. package/src/scss/cadmin/variables/_cards.scss +164 -1
  42. package/src/scss/cadmin/variables/_custom-forms.scss +3 -0
  43. package/src/scss/cadmin/variables/_empty-state.scss +23 -0
  44. package/src/scss/cadmin/variables/_forms.scss +3 -2
  45. package/src/scss/cadmin/variables/_globals.scss +173 -11
  46. package/src/scss/cadmin/variables/_links.scss +14 -0
  47. package/src/scss/cadmin/variables/_list-group.scss +32 -16
  48. package/src/scss/cadmin/variables/_sidebar.scss +1 -1
  49. package/src/scss/cadmin/variables/_treeview.scss +38 -17
  50. package/src/scss/cadmin/variables/_utilities.scss +42 -0
  51. package/src/scss/components/_aspect-ratio.scss +25 -38
  52. package/src/scss/components/_cards.scss +28 -122
  53. package/src/scss/components/_empty-state.scss +30 -0
  54. package/src/scss/components/_forms.scss +1 -1
  55. package/src/scss/components/_links.scss +12 -8
  56. package/src/scss/components/_tables.scss +0 -8
  57. package/src/scss/components/_treeview.scss +367 -0
  58. package/src/scss/components/_type.scss +27 -41
  59. package/src/scss/components/_utilities-functional-important.scss +35 -15
  60. package/src/scss/functions/_lx-icons-generated.scss +10 -0
  61. package/src/scss/mixins/_buttons.scss +4 -0
  62. package/src/scss/mixins/_cards.scss +59 -25
  63. package/src/scss/mixins/_grid.scss +29 -0
  64. package/src/scss/mixins/_links.scss +22 -2
  65. package/src/scss/variables/_aspect-ratio.scss +26 -0
  66. package/src/scss/variables/_buttons.scss +6 -0
  67. package/src/scss/variables/_cards.scss +158 -4
  68. package/src/scss/variables/_empty-state.scss +23 -0
  69. package/src/scss/variables/_forms.scss +3 -2
  70. package/src/scss/variables/_globals.scss +172 -11
  71. package/src/scss/variables/_links.scss +38 -3
  72. package/src/scss/variables/_list-group.scss +22 -12
  73. package/src/scss/variables/_sidebar.scss +3 -3
  74. package/src/scss/variables/_tables.scss +14 -0
  75. package/src/scss/variables/_treeview.scss +242 -0
  76. 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;
@@ -5060,33 +5084,16 @@ input[type=button].btn-block {
5060
5084
  .card-horizontal {
5061
5085
  background-color: #fff;
5062
5086
  border-color: rgba(0, 0, 0, 0.125);
5087
+ border-radius: 0.25rem;
5063
5088
  border-style: solid;
5064
5089
  border-width: 0.0625rem;
5065
- border-radius: 0.25rem;
5066
5090
  display: block;
5067
5091
  margin-bottom: 1.5rem;
5068
5092
  min-width: 0;
5069
5093
  position: relative;
5094
+ overflow-wrap: break-word;
5070
5095
  word-wrap: break-word;
5071
5096
  }
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
5097
  .card .aspect-ratio .label,
5091
5098
  .card-horizontal .aspect-ratio .label {
5092
5099
  display: block;
@@ -5132,6 +5139,24 @@ input[type=button].btn-block {
5132
5139
  margin-left: 0;
5133
5140
  margin-right: 0;
5134
5141
  }
5142
+ .card .autofit-col:first-child,
5143
+ .card-horizontal .autofit-col:first-child {
5144
+ border-bottom-left-radius: calc(
5145
+ 0.25rem - 0.0625rem
5146
+ );
5147
+ border-top-left-radius: calc(
5148
+ 0.25rem - 0.0625rem
5149
+ );
5150
+ }
5151
+ .card .autofit-col:last-child,
5152
+ .card-horizontal .autofit-col:last-child {
5153
+ border-bottom-right-radius: calc(
5154
+ 0.25rem - 0.0625rem
5155
+ );
5156
+ border-top-right-radius: calc(
5157
+ 0.25rem - 0.0625rem
5158
+ );
5159
+ }
5135
5160
  .card > .list-group:first-child .list-group-item:first-child,
5136
5161
  .card-horizontal > .list-group:first-child .list-group-item:first-child {
5137
5162
  border-top-left-radius: 0.25rem;
@@ -5175,16 +5200,17 @@ input[type=button].btn-block {
5175
5200
  margin-bottom: 0;
5176
5201
  margin-top: 0;
5177
5202
  }
5178
- .card-subtitle a {
5203
+ .card-subtitle[href],
5204
+ .card-subtitle [href] {
5179
5205
  color: #6c757d;
5180
5206
  }
5181
- .card-subtitle a:hover {
5207
+ .card-subtitle[href]:hover,
5208
+ .card-subtitle [href]:hover {
5182
5209
  color: #494f54;
5183
5210
  }
5184
5211
  .card-text:last-child {
5185
5212
  margin-bottom: 0;
5186
5213
  }
5187
-
5188
5214
  .card-link {
5189
5215
  color: #007bff;
5190
5216
  }
@@ -5213,11 +5239,7 @@ input[type=button].btn-block {
5213
5239
  padding: 0.75rem 1.25rem;
5214
5240
  }
5215
5241
  .card-header:first-child {
5216
- border-radius: calc(
5217
- 0.25rem - 0.0625rem
5218
- ) calc(
5219
- 0.25rem - 0.0625rem
5220
- ) 0 0;
5242
+ border-radius: calc( 0.25rem - 0.0625rem ) calc( 0.25rem - 0.0625rem ) 0 0;
5221
5243
  }
5222
5244
  .card-header + .list-group .list-group-item:first-child {
5223
5245
  border-top: 0;
@@ -5241,13 +5263,8 @@ input[type=button].btn-block {
5241
5263
  padding: 0.75rem 1.25rem;
5242
5264
  }
5243
5265
  .card-footer:last-child {
5244
- border-radius: 0 0 calc(
5245
- 0.25rem - 0.0625rem
5246
- ) calc(
5247
- 0.25rem - 0.0625rem
5248
- );
5266
+ border-radius: 0 0 calc( 0.25rem - 0.0625rem ) calc( 0.25rem - 0.0625rem );
5249
5267
  }
5250
-
5251
5268
  .card-img-overlay {
5252
5269
  bottom: 0;
5253
5270
  left: 0;
@@ -6505,6 +6522,9 @@ input[type=button].btn-block {
6505
6522
  .dropdown-action > .dropdown-toggle .lexicon-icon {
6506
6523
  margin-top: 0;
6507
6524
  }
6525
+ .dropdown-action > .dropdown-toggle .inline-item .lexicon-icon {
6526
+ margin-top: 0;
6527
+ }
6508
6528
  .dropdown-menu-indicator-start .dropdown-item-indicator {
6509
6529
  height: 1rem;
6510
6530
  left: 1.5rem;
@@ -7088,10 +7108,11 @@ fieldset[disabled] label .form-control {
7088
7108
  }
7089
7109
  .form-control .label {
7090
7110
  border-width: 0.0625rem;
7091
- height: 1.25rem;
7111
+ height: auto;
7092
7112
  margin-bottom: 0.25rem;
7093
7113
  margin-right: 0.5rem;
7094
7114
  margin-top: 0.25rem;
7115
+ min-height: 1.25rem;
7095
7116
  }
7096
7117
  fieldset[disabled] .form-control {
7097
7118
  background-color: #e9ecef;
@@ -7828,20 +7849,24 @@ button.link-outline {
7828
7849
  margin-bottom: calc(( 1.9375rem - (1em * 1.2) ) / 2);
7829
7850
  margin-top: calc(( 1.9375rem - (1em * 1.2) ) / 2);
7830
7851
  }
7831
- .component-title a {
7852
+ .component-title[href],
7853
+ .component-title [href] {
7832
7854
  color: #212529;
7833
7855
  }
7834
- .component-title a:hover {
7856
+ .component-title[href]:hover,
7857
+ .component-title [href]:hover {
7835
7858
  color: black;
7836
7859
  }
7837
7860
  .component-subtitle {
7838
7861
  color: #6c757d;
7839
7862
  margin-bottom: 0;
7840
7863
  }
7841
- .component-subtitle a {
7864
+ .component-subtitle[href],
7865
+ .component-subtitle [href] {
7842
7866
  color: #6c757d;
7843
7867
  }
7844
- .component-subtitle a:hover {
7868
+ .component-subtitle[href]:hover,
7869
+ .component-subtitle [href]:hover {
7845
7870
  color: #494f54;
7846
7871
  }
7847
7872
  .component-action {
@@ -7898,6 +7923,17 @@ button.link-outline {
7898
7923
  margin-top: 0;
7899
7924
  }
7900
7925
 
7926
+ .component-icon {
7927
+ align-items: center;
7928
+ display: inline-flex;
7929
+ height: 32px;
7930
+ justify-content: center;
7931
+ width: 32px;
7932
+ }
7933
+ .component-icon .lexicon-icon {
7934
+ margin-top: 0;
7935
+ }
7936
+
7901
7937
  .clay-range {
7902
7938
  padding-bottom: 0.1px;
7903
7939
  }
@@ -10436,41 +10472,49 @@ label.custom-control-label {
10436
10472
  margin-bottom: 0;
10437
10473
  margin-top: -0.25rem;
10438
10474
  }
10439
- .list-group-title a {
10475
+ .list-group-title[href],
10476
+ .list-group-title [href] {
10440
10477
  color: #212529;
10441
10478
  max-width: 100%;
10442
10479
  }
10443
- .list-group-title a:hover {
10480
+ .list-group-title[href]:hover,
10481
+ .list-group-title [href]:hover {
10444
10482
  color: black;
10445
10483
  }
10446
10484
  .list-group-subtitle {
10447
10485
  color: #6c757d;
10448
10486
  margin-bottom: 0;
10449
10487
  }
10450
- .list-group-subtitle a {
10488
+ .list-group-subtitle[href],
10489
+ .list-group-subtitle [href] {
10451
10490
  color: #6c757d;
10452
10491
  }
10453
- .list-group-subtitle a:hover {
10492
+ .list-group-subtitle[href]:hover,
10493
+ .list-group-subtitle [href]:hover {
10454
10494
  color: #494f54;
10455
10495
  }
10456
10496
  .list-group-text {
10457
10497
  color: #212529;
10458
10498
  margin-bottom: 0;
10459
10499
  }
10460
- .list-group-text a {
10500
+ .list-group-text[href],
10501
+ .list-group-text [href] {
10461
10502
  color: #212529;
10462
10503
  }
10463
- .list-group-text a:hover {
10504
+ .list-group-text[href]:hover,
10505
+ .list-group-text [href]:hover {
10464
10506
  color: black;
10465
10507
  }
10466
10508
  .list-group-subtext {
10467
10509
  color: #6c757d;
10468
10510
  margin-bottom: 0;
10469
10511
  }
10470
- .list-group-subtext a {
10512
+ .list-group-subtext[href],
10513
+ .list-group-subtext [href] {
10471
10514
  color: #6c757d;
10472
10515
  }
10473
- .list-group-subtext a:hover {
10516
+ .list-group-subtext[href]:hover,
10517
+ .list-group-subtext [href]:hover {
10474
10518
  color: #494f54;
10475
10519
  }
10476
10520
  .show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
@@ -16726,7 +16770,8 @@ a.sheet-subtitle:hover {
16726
16770
  font-size: 1.5rem;
16727
16771
  font-weight: 500;
16728
16772
  }
16729
- .sidebar-header .component-title a {
16773
+ .sidebar-header .component-title[href],
16774
+ .sidebar-header .component-title [href] {
16730
16775
  color: #212529;
16731
16776
  }
16732
16777
  .sidebar-header .component-subtitle {
@@ -16818,13 +16863,15 @@ a.sheet-subtitle:hover {
16818
16863
  .sidebar-light .sidebar-list-group .list-group-title {
16819
16864
  font-size: 1rem;
16820
16865
  }
16821
- .sidebar-light .sidebar-list-group .list-group-title a {
16866
+ .sidebar-light .sidebar-list-group .list-group-title[href],
16867
+ .sidebar-light .sidebar-list-group .list-group-title [href] {
16822
16868
  color: #212529;
16823
16869
  }
16824
16870
  .sidebar-light .sidebar-panel {
16825
16871
  background-color: #e9ecef;
16826
16872
  }
16827
- .sidebar-light .sidebar-dd a {
16873
+ .sidebar-light .sidebar-dd[href],
16874
+ .sidebar-light .sidebar-dd [href] {
16828
16875
  color: #212529;
16829
16876
  }
16830
16877
  .sidebar-light .component-navigation-bar {
@@ -16892,13 +16939,15 @@ a.sheet-subtitle:hover {
16892
16939
  .sidebar-dark .sidebar-header .component-title {
16893
16940
  color: inherit;
16894
16941
  }
16895
- .sidebar-dark .sidebar-header .component-title a {
16942
+ .sidebar-dark .sidebar-header .component-title[href],
16943
+ .sidebar-dark .sidebar-header .component-title [href] {
16896
16944
  color: inherit;
16897
16945
  }
16898
16946
  .sidebar-dark .sidebar-header .component-subtitle {
16899
16947
  color: inherit;
16900
16948
  }
16901
- .sidebar-dark .sidebar-header .component-subtitle a {
16949
+ .sidebar-dark .sidebar-header .component-subtitle[href],
16950
+ .sidebar-dark .sidebar-header .component-subtitle [href] {
16902
16951
  color: inherit;
16903
16952
  }
16904
16953
  .sidebar-dark .nav-nested .nav-link {
@@ -17456,10 +17505,12 @@ caption {
17456
17505
  line-height: 1.5;
17457
17506
  margin-bottom: 0;
17458
17507
  }
17459
- .table-title a {
17508
+ .table-title[href],
17509
+ .table-title [href] {
17460
17510
  color: #212529;
17461
17511
  }
17462
- .table-title a:hover {
17512
+ .table-title[href]:hover,
17513
+ .table-title [href]:hover {
17463
17514
  color: #212529;
17464
17515
  }
17465
17516
  .table-link {
@@ -17738,10 +17789,12 @@ caption {
17738
17789
  line-height: 1.2;
17739
17790
  margin-bottom: 0;
17740
17791
  }
17741
- .table-list-title a {
17792
+ .table-list-title[href],
17793
+ .table-list-title [href] {
17742
17794
  color: #212529;
17743
17795
  }
17744
- .table-list-title a:hover {
17796
+ .table-list-title[href]:hover,
17797
+ .table-list-title [href]:hover {
17745
17798
  color: #212529;
17746
17799
  }
17747
17800
  .table-list-link {
@@ -19408,6 +19461,244 @@ caption {
19408
19461
  margin-left: 0;
19409
19462
  right: 0.25rem;
19410
19463
  }
19464
+ .treeview {
19465
+ display: flex;
19466
+ flex-direction: column;
19467
+ font-size: 14px;
19468
+ list-style: none;
19469
+ margin-bottom: 0;
19470
+ padding: 2px 0;
19471
+ }
19472
+ .treeview .btn-monospaced {
19473
+ font-size: 14px;
19474
+ height: 24px;
19475
+ width: 24px;
19476
+ }
19477
+ .treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
19478
+ box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
19479
+ }
19480
+ .treeview .btn-monospaced:active:focus {
19481
+ box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
19482
+ }
19483
+ .treeview .custom-control {
19484
+ margin-left: 4px;
19485
+ margin-right: 4px;
19486
+ margin-top: 1.5px;
19487
+ }
19488
+ .treeview .component-expander .lexicon-icon:not(.component-expanded-d-none) {
19489
+ display: none;
19490
+ }
19491
+ .treeview .component-action {
19492
+ display: none;
19493
+ margin-left: 2px;
19494
+ margin-right: 2px;
19495
+ }
19496
+ .treeview .component-action:hover {
19497
+ background-color: transparent;
19498
+ color: #6c757d;
19499
+ }
19500
+ .treeview .component-action:focus, .treeview .component-action.focus {
19501
+ color: #6c757d;
19502
+ }
19503
+ .treeview .component-action:active {
19504
+ background-color: transparent;
19505
+ }
19506
+ .treeview .component-action.active {
19507
+ background-color: transparent;
19508
+ }
19509
+ .treeview .component-action[aria-expanded=true], .treeview .component-action.show {
19510
+ background-color: transparent;
19511
+ }
19512
+ .treeview .component-icon {
19513
+ display: inline;
19514
+ height: auto;
19515
+ margin-left: 4px;
19516
+ margin-right: 4px;
19517
+ width: auto;
19518
+ }
19519
+ .treeview .component-text {
19520
+ padding-bottom: 1.5px;
19521
+ padding-left: 4px;
19522
+ padding-top: 1.5px;
19523
+ -ms-user-select: auto;
19524
+ -moz-user-select: auto;
19525
+ -webkit-user-select: auto;
19526
+ user-select: auto;
19527
+ }
19528
+ .treeview.show-component-expander-on-hover:hover .component-expander, .treeview.show-component-expander-on-hover.hover .component-expander {
19529
+ opacity: 1;
19530
+ transition: opacity ease-in-out 600ms;
19531
+ }
19532
+ @media (prefers-reduced-motion: reduce) {
19533
+ .treeview.show-component-expander-on-hover:hover .component-expander, .treeview.show-component-expander-on-hover.hover .component-expander {
19534
+ transition: none;
19535
+ }
19536
+ }
19537
+ .treeview.show-component-expander-on-hover .treeview-link:focus .component-expander, .treeview.show-component-expander-on-hover .treeview-link.focus .component-expander {
19538
+ opacity: 1;
19539
+ transition: none;
19540
+ }
19541
+ .treeview.show-component-expander-on-hover .component-expander {
19542
+ opacity: 0;
19543
+ transition: opacity ease-in-out 450ms;
19544
+ }
19545
+ @media (prefers-reduced-motion: reduce) {
19546
+ .treeview.show-component-expander-on-hover .component-expander {
19547
+ transition: none;
19548
+ }
19549
+ }
19550
+
19551
+ .treeview-group {
19552
+ display: flex;
19553
+ flex-direction: column;
19554
+ list-style: none;
19555
+ margin-bottom: 0;
19556
+ padding-left: 0;
19557
+ }
19558
+
19559
+ .treeview-item {
19560
+ overflow-wrap: break-word;
19561
+ word-wrap: break-word;
19562
+ }
19563
+ .treeview-link {
19564
+ background-color: transparent;
19565
+ cursor: pointer;
19566
+ display: block;
19567
+ border-color: transparent;
19568
+ border-style: solid;
19569
+ border-width: 1px;
19570
+ margin-bottom: 2px;
19571
+ margin-top: 2px;
19572
+ min-width: 100%;
19573
+ padding: 0;
19574
+ position: relative;
19575
+ text-align: left;
19576
+ -ms-user-select: none;
19577
+ -moz-user-select: none;
19578
+ -webkit-user-select: none;
19579
+ user-select: none;
19580
+ }
19581
+ .treeview-link:hover {
19582
+ text-decoration: none;
19583
+ }
19584
+ .treeview-link:focus {
19585
+ box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
19586
+ outline: 0;
19587
+ }
19588
+ .treeview-link:disabled, .treeview-link.disabled {
19589
+ cursor: not-allowed;
19590
+ }
19591
+ .treeview-link.treeview-dropping-bottom {
19592
+ box-shadow: 0 2px 0 0 #75b8ff;
19593
+ }
19594
+ .treeview-link.treeview-dropping-middle {
19595
+ background-color: #e5f2ff;
19596
+ border-color: #75b8ff;
19597
+ }
19598
+ .treeview-link.treeview-dropping-top {
19599
+ box-shadow: 0 -2px 0 0 #75b8ff;
19600
+ }
19601
+ .treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
19602
+ display: flex;
19603
+ }
19604
+ .treeview-link:disabled .component-action, .treeview-link.disabled .component-action {
19605
+ display: none;
19606
+ }
19607
+ .treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
19608
+ display: none;
19609
+ }
19610
+ .treeview-link.show .component-expander .lexicon-icon:not(.component-expanded-d-none), .treeview-link[aria-expanded=true] .component-expander .lexicon-icon:not(.component-expanded-d-none) {
19611
+ display: inline-block;
19612
+ }
19613
+
19614
+ .treeview-nested-margins .treeview-group .treeview-item {
19615
+ margin-left: 24px;
19616
+ }
19617
+
19618
+ .treeview-item-dragging {
19619
+ cursor: not-allowed;
19620
+ opacity: 0.4;
19621
+ }
19622
+ .treeview-item-dragging .treeview-link {
19623
+ background-color: transparent;
19624
+ border-color: transparent;
19625
+ box-shadow: none;
19626
+ }
19627
+ .treeview-dragging {
19628
+ background-color: #fff;
19629
+ border-color: #75b8ff;
19630
+ border-radius: 0.2rem;
19631
+ border-style: solid;
19632
+ border-width: 1px;
19633
+ display: inline-block;
19634
+ font-size: 10px;
19635
+ font-weight: 500;
19636
+ padding: 4px 12px;
19637
+ text-transform: uppercase;
19638
+ }
19639
+
19640
+ .treeview-light .component-expander {
19641
+ color: #6c757d;
19642
+ }
19643
+ .treeview-light .component-expander:hover {
19644
+ color: #007bff;
19645
+ }
19646
+ .treeview-light .component-expander:disabled, .treeview-light .component-expander.disabled {
19647
+ color: #6c757d;
19648
+ opacity: 0.5;
19649
+ }
19650
+ .treeview-light .component-expander.btn-secondary {
19651
+ background-color: #fff;
19652
+ }
19653
+ .treeview-light .treeview-link {
19654
+ color: #6c757d;
19655
+ }
19656
+ .treeview-light .treeview-link:hover {
19657
+ background-color: #f8f9fa;
19658
+ color: #212529;
19659
+ }
19660
+ .treeview-light .treeview-link:active {
19661
+ background-color: #e9ecef;
19662
+ color: #212529;
19663
+ }
19664
+ .treeview-light .treeview-link.active {
19665
+ background-color: #e9ecef;
19666
+ color: #212529;
19667
+ }
19668
+ .treeview-light .treeview-link:disabled, .treeview-light .treeview-link.disabled {
19669
+ background-color: transparent;
19670
+ color: rgba(108, 117, 125, 0.5);
19671
+ }
19672
+ .treeview-dark .component-expander {
19673
+ color: #a9afb5;
19674
+ }
19675
+ .treeview-dark .component-expander:hover {
19676
+ color: #75b8ff;
19677
+ }
19678
+ .treeview-dark .component-expander:disabled, .treeview-dark .component-expander.disabled {
19679
+ color: #a9afb5;
19680
+ opacity: 0.5;
19681
+ }
19682
+ .treeview-dark .treeview-link {
19683
+ color: #a9afb5;
19684
+ }
19685
+ .treeview-dark .treeview-link:hover {
19686
+ background-color: rgba(255, 255, 255, 0.04);
19687
+ }
19688
+ .treeview-dark .treeview-link.active {
19689
+ background-color: rgba(255, 255, 255, 0.06);
19690
+ color: #fff;
19691
+ }
19692
+ .treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
19693
+ background-color: transparent;
19694
+ color: rgba(169, 175, 181, 0.5);
19695
+ }
19696
+ .treeview-dark .component-action {
19697
+ color: #a9afb5;
19698
+ }
19699
+ .treeview-dark .component-action:disabled, .treeview-dark .component-action.disabled {
19700
+ color: #a9afb5;
19701
+ }
19411
19702
  .bg-checkered {
19412
19703
  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%);
19413
19704
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
@@ -26823,10 +27114,6 @@ button.bg-dark:focus {
26823
27114
  z-index: 1;
26824
27115
  }
26825
27116
 
26826
- .text-monospace {
26827
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
26828
- }
26829
-
26830
27117
  .text-justify {
26831
27118
  text-align: justify !important;
26832
27119
  }
@@ -26921,34 +27208,90 @@ button.bg-dark:focus {
26921
27208
  text-transform: capitalize !important;
26922
27209
  }
26923
27210
 
26924
- .font-weight-light {
26925
- font-weight: 300 !important;
27211
+ .font-weight-lighter,
27212
+ .text-weight-lighter {
27213
+ font-weight: lighter !important;
26926
27214
  }
26927
27215
 
26928
- .font-weight-lighter {
26929
- font-weight: lighter !important;
27216
+ .font-weight-light,
27217
+ .text-weight-light {
27218
+ font-weight: 300 !important;
26930
27219
  }
26931
27220
 
26932
- .font-weight-normal {
27221
+ .font-weight-normal,
27222
+ .text-weight-normal {
26933
27223
  font-weight: 400 !important;
26934
27224
  }
26935
27225
 
26936
- .font-weight-semi-bold {
27226
+ .font-weight-semi-bold,
27227
+ .text-weight-semi-bold {
26937
27228
  font-weight: 500 !important;
26938
27229
  }
26939
27230
 
26940
- .font-weight-bold {
27231
+ .font-weight-bold,
27232
+ .text-weight-bold {
26941
27233
  font-weight: 700 !important;
26942
27234
  }
26943
27235
 
26944
- .font-weight-bolder {
27236
+ .font-weight-bolder,
27237
+ .text-weight-bolder {
26945
27238
  font-weight: 900 !important;
26946
27239
  }
26947
27240
 
26948
- .font-italic {
27241
+ .font-italic,
27242
+ .text-italic {
26949
27243
  font-style: italic !important;
26950
27244
  }
26951
27245
 
27246
+ .font-monospace,
27247
+ .text-monospace {
27248
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
27249
+ }
27250
+
27251
+ .text-1 {
27252
+ font-size: 0.625rem;
27253
+ }
27254
+
27255
+ .text-2 {
27256
+ font-size: 0.75rem;
27257
+ }
27258
+
27259
+ .text-3 {
27260
+ font-size: 0.875rem;
27261
+ }
27262
+
27263
+ .text-4 {
27264
+ font-size: 1rem;
27265
+ }
27266
+
27267
+ .text-5 {
27268
+ font-size: 1.125rem;
27269
+ }
27270
+
27271
+ .text-6 {
27272
+ font-size: 1.25rem;
27273
+ }
27274
+
27275
+ .text-7 {
27276
+ font-size: 1.5rem;
27277
+ }
27278
+
27279
+ .text-8 {
27280
+ font-size: 1.75rem;
27281
+ }
27282
+
27283
+ .text-9 {
27284
+ font-size: 2rem;
27285
+ }
27286
+
27287
+ .text-10 {
27288
+ font-size: 2.25rem;
27289
+ }
27290
+
27291
+ .text-11 {
27292
+ font-size: 2.5rem;
27293
+ }
27294
+
26952
27295
  .text-white {
26953
27296
  color: #fff !important;
26954
27297
  }