@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/atlas.css CHANGED
@@ -325,26 +325,32 @@ h1,
325
325
  .h1 {
326
326
  font-size: 1.625rem;
327
327
  }
328
+
328
329
  h2,
329
330
  .h2 {
330
331
  font-size: 1.375rem;
331
332
  }
333
+
332
334
  h3,
333
335
  .h3 {
334
336
  font-size: 1.1875rem;
335
337
  }
338
+
336
339
  h4,
337
340
  .h4 {
338
341
  font-size: 1rem;
339
342
  }
343
+
340
344
  h5,
341
345
  .h5 {
342
346
  font-size: 0.875rem;
343
347
  }
348
+
344
349
  h6,
345
350
  .h6 {
346
351
  font-size: 0.8125rem;
347
352
  }
353
+
348
354
  .lead {
349
355
  font-size: 1.25rem;
350
356
  font-weight: 300;
@@ -1140,6 +1146,10 @@ button.collapse-icon .c-inner {
1140
1146
  padding-bottom: calc(3 / 4 * 100%);
1141
1147
  }
1142
1148
 
1149
+ .aspect-ratio-8-to-3 {
1150
+ padding-bottom: calc(3 / 8 * 100%);
1151
+ }
1152
+
1143
1153
  .aspect-ratio-8-to-5 {
1144
1154
  padding-bottom: calc(5 / 8 * 100%);
1145
1155
  }
@@ -1235,6 +1245,9 @@ button.collapse-icon .c-inner {
1235
1245
  .btn .inline-item {
1236
1246
  font-size: 1rem;
1237
1247
  }
1248
+ .btn .inline-item .lexicon-icon {
1249
+ margin-top: 0;
1250
+ }
1238
1251
  .btn .btn-section {
1239
1252
  display: block;
1240
1253
  font-size: 0.6875rem;
@@ -1294,6 +1307,10 @@ fieldset:disabled a.btn:active {
1294
1307
  margin-right: -0.75rem;
1295
1308
  margin-top: -0.4375rem;
1296
1309
  }
1310
+ .form-group-sm .btn .lexicon-icon, .btn-group-sm > .btn .lexicon-icon,
1311
+ .btn-group-sm .btn-group > .btn .lexicon-icon, .btn-sm .lexicon-icon {
1312
+ font-size: 1rem;
1313
+ }
1297
1314
  .form-group-sm .btn .btn-section, .btn-group-sm > .btn .btn-section,
1298
1315
  .btn-group-sm .btn-group > .btn .btn-section, .btn-sm .btn-section {
1299
1316
  font-size: 0.5625rem;
@@ -1360,6 +1377,9 @@ input[type=button].btn-block {
1360
1377
  padding: 0;
1361
1378
  width: 100%;
1362
1379
  }
1380
+ .btn-monospaced .lexicon-icon {
1381
+ margin-top: 0;
1382
+ }
1363
1383
  .btn-group-vertical > .btn-monospaced.btn-lg, .btn-group-lg .btn-monospaced, .btn-monospaced.btn-lg {
1364
1384
  height: 3rem;
1365
1385
  width: 3rem;
@@ -4537,6 +4557,20 @@ input[type=button].btn-block {
4537
4557
  word-wrap: break-word;
4538
4558
  }
4539
4559
 
4560
+ .c-empty-state-sm.c-empty-state-animation {
4561
+ margin: 2.5rem auto 2rem;
4562
+ max-width: 268px;
4563
+ }
4564
+ .c-empty-state-sm .c-empty-state-image {
4565
+ max-width: 120px;
4566
+ }
4567
+ .c-empty-state-sm .c-empty-state-title {
4568
+ font-size: 1rem;
4569
+ line-height: 1.5;
4570
+ }
4571
+ .c-empty-state-sm .c-empty-state-text {
4572
+ font-size: 0.875rem;
4573
+ }
4540
4574
  .label {
4541
4575
  border-color: #272833;
4542
4576
  border-radius: 0.125rem;
@@ -5088,6 +5122,12 @@ input[type=button].btn-block {
5088
5122
  bottom: -0.75rem;
5089
5123
  top: auto;
5090
5124
  }
5125
+ .sticker-outside.sticker-bottom-right.sticker-sm {
5126
+ bottom: -0.75rem;
5127
+ left: auto;
5128
+ right: -0.75rem;
5129
+ top: auto;
5130
+ }
5091
5131
  .sticker-outside.sticker-top-right.sticker-sm {
5092
5132
  left: auto;
5093
5133
  right: -0.75rem;
@@ -5107,6 +5147,12 @@ input[type=button].btn-block {
5107
5147
  bottom: -1.25rem;
5108
5148
  top: auto;
5109
5149
  }
5150
+ .sticker-outside.sticker-bottom-right.sticker-lg {
5151
+ bottom: -1.25rem;
5152
+ left: auto;
5153
+ right: -1.25rem;
5154
+ top: auto;
5155
+ }
5110
5156
  .sticker-outside.sticker-top-right.sticker-lg {
5111
5157
  left: auto;
5112
5158
  right: -1.25rem;
@@ -5126,6 +5172,12 @@ input[type=button].btn-block {
5126
5172
  bottom: -1.5rem;
5127
5173
  top: auto;
5128
5174
  }
5175
+ .sticker-outside.sticker-bottom-right.sticker-xl {
5176
+ bottom: -1.5rem;
5177
+ left: auto;
5178
+ right: -1.5rem;
5179
+ top: auto;
5180
+ }
5129
5181
  .sticker-outside.sticker-top-right.sticker-xl {
5130
5182
  left: auto;
5131
5183
  right: -1.5rem;
@@ -5170,34 +5222,17 @@ input[type=button].btn-block {
5170
5222
  .card-horizontal {
5171
5223
  background-color: #fff;
5172
5224
  border-color: rgba(0, 0, 0, 0.125);
5225
+ border-radius: 0.25rem;
5173
5226
  border-style: solid;
5174
5227
  border-width: 0px;
5175
- border-radius: 0.25rem;
5176
5228
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.6);
5177
5229
  display: block;
5178
5230
  margin-bottom: 1.5rem;
5179
5231
  min-width: 0;
5180
5232
  position: relative;
5233
+ overflow-wrap: break-word;
5181
5234
  word-wrap: break-word;
5182
5235
  }
5183
- .card .autofit-col:first-child,
5184
- .card-horizontal .autofit-col:first-child {
5185
- border-bottom-left-radius: calc(
5186
- 0.25rem - 0px
5187
- );
5188
- border-top-left-radius: calc(
5189
- 0.25rem - 0px
5190
- );
5191
- }
5192
- .card .autofit-col:last-child,
5193
- .card-horizontal .autofit-col:last-child {
5194
- border-bottom-right-radius: calc(
5195
- 0.25rem - 0px
5196
- );
5197
- border-top-right-radius: calc(
5198
- 0.25rem - 0px
5199
- );
5200
- }
5201
5236
  .card .aspect-ratio .label,
5202
5237
  .card-horizontal .aspect-ratio .label {
5203
5238
  display: block;
@@ -5243,6 +5278,24 @@ input[type=button].btn-block {
5243
5278
  margin-left: 0;
5244
5279
  margin-right: 0;
5245
5280
  }
5281
+ .card .autofit-col:first-child,
5282
+ .card-horizontal .autofit-col:first-child {
5283
+ border-bottom-left-radius: calc(
5284
+ 0.25rem - 0px
5285
+ );
5286
+ border-top-left-radius: calc(
5287
+ 0.25rem - 0px
5288
+ );
5289
+ }
5290
+ .card .autofit-col:last-child,
5291
+ .card-horizontal .autofit-col:last-child {
5292
+ border-bottom-right-radius: calc(
5293
+ 0.25rem - 0px
5294
+ );
5295
+ border-top-right-radius: calc(
5296
+ 0.25rem - 0px
5297
+ );
5298
+ }
5246
5299
  .card > .list-group:first-child .list-group-item:first-child,
5247
5300
  .card-horizontal > .list-group:first-child .list-group-item:first-child {
5248
5301
  border-top-left-radius: 0.25rem;
@@ -5280,10 +5333,12 @@ input[type=button].btn-block {
5280
5333
  margin-bottom: 0;
5281
5334
  color: #272833;
5282
5335
  }
5283
- .card-title a {
5336
+ .card-title[href],
5337
+ .card-title [href] {
5284
5338
  color: #272833;
5285
5339
  }
5286
- .card-title a:hover {
5340
+ .card-title[href]:hover,
5341
+ .card-title [href]:hover {
5287
5342
  color: #272833;
5288
5343
  }
5289
5344
  .card-subtitle {
@@ -5293,16 +5348,17 @@ input[type=button].btn-block {
5293
5348
  margin-bottom: 0;
5294
5349
  margin-top: 0;
5295
5350
  }
5296
- .card-subtitle a {
5351
+ .card-subtitle[href],
5352
+ .card-subtitle [href] {
5297
5353
  color: #6b6c7e;
5298
5354
  }
5299
- .card-subtitle a:hover {
5355
+ .card-subtitle[href]:hover,
5356
+ .card-subtitle [href]:hover {
5300
5357
  color: #6b6c7e;
5301
5358
  }
5302
5359
  .card-text:last-child {
5303
5360
  margin-bottom: 0;
5304
5361
  }
5305
-
5306
5362
  .card-link {
5307
5363
  color: #6b6c7e;
5308
5364
  font-size: 0.875rem;
@@ -5332,11 +5388,7 @@ input[type=button].btn-block {
5332
5388
  padding: 0.75rem 1.25rem;
5333
5389
  }
5334
5390
  .card-header:first-child {
5335
- border-radius: calc(
5336
- 0.25rem - 0px
5337
- ) calc(
5338
- 0.25rem - 0px
5339
- ) 0 0;
5391
+ border-radius: calc( 0.25rem - 0px ) calc( 0.25rem - 0px ) 0 0;
5340
5392
  }
5341
5393
  .card-header + .list-group .list-group-item:first-child {
5342
5394
  border-top: 0;
@@ -5360,13 +5412,8 @@ input[type=button].btn-block {
5360
5412
  padding: 0.75rem 1.25rem;
5361
5413
  }
5362
5414
  .card-footer:last-child {
5363
- border-radius: 0 0 calc(
5364
- 0.25rem - 0px
5365
- ) calc(
5366
- 0.25rem - 0px
5367
- );
5415
+ border-radius: 0 0 calc( 0.25rem - 0px ) calc( 0.25rem - 0px );
5368
5416
  }
5369
-
5370
5417
  .card-img-overlay {
5371
5418
  bottom: 0;
5372
5419
  left: 0;
@@ -6677,6 +6724,9 @@ input[type=button].btn-block {
6677
6724
  .dropdown-action > .dropdown-toggle .lexicon-icon {
6678
6725
  margin-top: 0;
6679
6726
  }
6727
+ .dropdown-action > .dropdown-toggle .inline-item .lexicon-icon {
6728
+ margin-top: 0;
6729
+ }
6680
6730
  .dropdown-menu-indicator-start .dropdown-item-indicator {
6681
6731
  height: 1rem;
6682
6732
  left: 1.25rem;
@@ -8138,20 +8188,24 @@ button.link-outline {
8138
8188
  margin-bottom: calc((2rem - (1em * 1.25)) / 2);
8139
8189
  margin-top: calc((2rem - (1em * 1.25)) / 2);
8140
8190
  }
8141
- .component-title a {
8191
+ .component-title[href],
8192
+ .component-title [href] {
8142
8193
  color: #272833;
8143
8194
  border-radius: 1px;
8144
8195
  transition: box-shadow 0.15s ease-in-out;
8145
8196
  }
8146
8197
  @media (prefers-reduced-motion: reduce) {
8147
- .component-title a {
8198
+ .component-title[href],
8199
+ .component-title [href] {
8148
8200
  transition: none;
8149
8201
  }
8150
8202
  }
8151
- .component-title a:hover {
8203
+ .component-title[href]:hover,
8204
+ .component-title [href]:hover {
8152
8205
  color: #060608;
8153
8206
  }
8154
- .component-title a:focus {
8207
+ .component-title[href]:focus,
8208
+ .component-title [href]:focus {
8155
8209
  color: #060608;
8156
8210
  box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
8157
8211
  outline: 0;
@@ -8162,20 +8216,24 @@ button.link-outline {
8162
8216
  font-weight: 600;
8163
8217
  line-height: 1.45;
8164
8218
  }
8165
- .component-subtitle a {
8219
+ .component-subtitle[href],
8220
+ .component-subtitle [href] {
8166
8221
  color: #6b6c7e;
8167
8222
  border-radius: 1px;
8168
8223
  transition: box-shadow 0.15s ease-in-out;
8169
8224
  }
8170
8225
  @media (prefers-reduced-motion: reduce) {
8171
- .component-subtitle a {
8226
+ .component-subtitle[href],
8227
+ .component-subtitle [href] {
8172
8228
  transition: none;
8173
8229
  }
8174
8230
  }
8175
- .component-subtitle a:hover {
8231
+ .component-subtitle[href]:hover,
8232
+ .component-subtitle [href]:hover {
8176
8233
  color: #272833;
8177
8234
  }
8178
- .component-subtitle a:focus {
8235
+ .component-subtitle[href]:focus,
8236
+ .component-subtitle [href]:focus {
8179
8237
  color: #272833;
8180
8238
  box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
8181
8239
  outline: 0;
@@ -8501,10 +8559,10 @@ button.link-outline {
8501
8559
  margin-bottom: 1rem;
8502
8560
  }
8503
8561
  .clay-range-input[data-label-min]::before {
8504
- content: attr(data-label-min);
8562
+ content: '\FEFF' attr(data-label-min);
8505
8563
  }
8506
8564
  .clay-range-input[data-label-max]::after {
8507
- content: attr(data-label-max);
8565
+ content: '\FEFF' attr(data-label-max);
8508
8566
  right: 0;
8509
8567
  }
8510
8568
  .clay-range-input::after, .clay-range-input::before {
@@ -9111,10 +9169,10 @@ label.custom-control-label {
9111
9169
  background-color: #f1f2f5;
9112
9170
  }
9113
9171
  .custom-file-input:lang(en) ~ .custom-file-label::after {
9114
- content: "Browse";
9172
+ content: '\FEFF Browse';
9115
9173
  }
9116
9174
  .custom-file-input ~ .custom-file-label[data-browse]::after {
9117
- content: attr(data-browse);
9175
+ content: '\FEFF' attr(data-browse);
9118
9176
  }
9119
9177
 
9120
9178
  .custom-file-label {
@@ -9139,7 +9197,7 @@ label.custom-control-label {
9139
9197
  border-radius: 0 0.25rem 0.25rem 0;
9140
9198
  bottom: 0;
9141
9199
  color: #272833;
9142
- content: "Browse";
9200
+ content: '\FEFF Browse';
9143
9201
  display: block;
9144
9202
  height: 36px;
9145
9203
  line-height: 1.5;
@@ -10954,7 +11012,8 @@ label.custom-control-label {
10954
11012
  margin-top: -0.25rem;
10955
11013
  color: #272833;
10956
11014
  }
10957
- .list-group-title a {
11015
+ .list-group-title[href],
11016
+ .list-group-title [href] {
10958
11017
  color: #272833;
10959
11018
  max-width: 100%;
10960
11019
  border-radius: 1px;
@@ -10962,14 +11021,17 @@ label.custom-control-label {
10962
11021
  transition: box-shadow 0.15s ease-in-out;
10963
11022
  }
10964
11023
  @media (prefers-reduced-motion: reduce) {
10965
- .list-group-title a {
11024
+ .list-group-title[href],
11025
+ .list-group-title [href] {
10966
11026
  transition: none;
10967
11027
  }
10968
11028
  }
10969
- .list-group-title a:hover {
11029
+ .list-group-title[href]:hover,
11030
+ .list-group-title [href]:hover {
10970
11031
  color: #272833;
10971
11032
  }
10972
- .list-group-title a:focus {
11033
+ .list-group-title[href]:focus,
11034
+ .list-group-title [href]:focus {
10973
11035
  box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
10974
11036
  outline: 0;
10975
11037
  }
@@ -10977,7 +11039,8 @@ label.custom-control-label {
10977
11039
  color: #6b6c7e;
10978
11040
  margin-bottom: 0;
10979
11041
  }
10980
- .list-group-subtitle a {
11042
+ .list-group-subtitle[href],
11043
+ .list-group-subtitle [href] {
10981
11044
  color: #6b6c7e;
10982
11045
  border-radius: 1px;
10983
11046
  display: inline-block;
@@ -10985,14 +11048,17 @@ label.custom-control-label {
10985
11048
  transition: box-shadow 0.15s ease-in-out;
10986
11049
  }
10987
11050
  @media (prefers-reduced-motion: reduce) {
10988
- .list-group-subtitle a {
11051
+ .list-group-subtitle[href],
11052
+ .list-group-subtitle [href] {
10989
11053
  transition: none;
10990
11054
  }
10991
11055
  }
10992
- .list-group-subtitle a:hover {
11056
+ .list-group-subtitle[href]:hover,
11057
+ .list-group-subtitle [href]:hover {
10993
11058
  color: #272833;
10994
11059
  }
10995
- .list-group-subtitle a:focus {
11060
+ .list-group-subtitle[href]:focus,
11061
+ .list-group-subtitle [href]:focus {
10996
11062
  box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
10997
11063
  outline: 0;
10998
11064
  }
@@ -11001,7 +11067,8 @@ label.custom-control-label {
11001
11067
  margin-bottom: 0;
11002
11068
  line-height: 1.45;
11003
11069
  }
11004
- .list-group-text a {
11070
+ .list-group-text[href],
11071
+ .list-group-text [href] {
11005
11072
  color: #272833;
11006
11073
  border-radius: 1px;
11007
11074
  display: inline-block;
@@ -11009,14 +11076,17 @@ label.custom-control-label {
11009
11076
  transition: box-shadow 0.15s ease-in-out;
11010
11077
  }
11011
11078
  @media (prefers-reduced-motion: reduce) {
11012
- .list-group-text a {
11079
+ .list-group-text[href],
11080
+ .list-group-text [href] {
11013
11081
  transition: none;
11014
11082
  }
11015
11083
  }
11016
- .list-group-text a:hover {
11084
+ .list-group-text[href]:hover,
11085
+ .list-group-text [href]:hover {
11017
11086
  color: #272833;
11018
11087
  }
11019
- .list-group-text a:focus {
11088
+ .list-group-text[href]:focus,
11089
+ .list-group-text [href]:focus {
11020
11090
  box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
11021
11091
  outline: 0;
11022
11092
  }
@@ -11025,7 +11095,8 @@ label.custom-control-label {
11025
11095
  margin-bottom: 0;
11026
11096
  line-height: 1.45;
11027
11097
  }
11028
- .list-group-subtext a {
11098
+ .list-group-subtext[href],
11099
+ .list-group-subtext [href] {
11029
11100
  color: #6b6c7e;
11030
11101
  border-radius: 1px;
11031
11102
  display: inline-block;
@@ -11033,14 +11104,17 @@ label.custom-control-label {
11033
11104
  transition: box-shadow 0.15s ease-in-out;
11034
11105
  }
11035
11106
  @media (prefers-reduced-motion: reduce) {
11036
- .list-group-subtext a {
11107
+ .list-group-subtext[href],
11108
+ .list-group-subtext [href] {
11037
11109
  transition: none;
11038
11110
  }
11039
11111
  }
11040
- .list-group-subtext a:hover {
11112
+ .list-group-subtext[href]:hover,
11113
+ .list-group-subtext [href]:hover {
11041
11114
  color: #272833;
11042
11115
  }
11043
- .list-group-subtext a:focus {
11116
+ .list-group-subtext[href]:focus,
11117
+ .list-group-subtext [href]:focus {
11044
11118
  box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
11045
11119
  outline: 0;
11046
11120
  }
@@ -12005,7 +12079,7 @@ label.custom-control-label {
12005
12079
  background-size: 0.875rem;
12006
12080
  }
12007
12081
  .multi-step-item.complete .multi-step-icon[data-multi-step-icon]:before {
12008
- content: normal;
12082
+ content: none;
12009
12083
  }
12010
12084
  .multi-step-item.complete .multi-step-icon:active {
12011
12085
  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");
@@ -12114,8 +12188,8 @@ label.custom-control-label {
12114
12188
  outline: 0;
12115
12189
  text-decoration: none;
12116
12190
  }
12117
- .multi-step-icon[data-multi-step-icon]:before {
12118
- content: attr(data-multi-step-icon);
12191
+ .multi-step-icon[data-multi-step-icon]::before {
12192
+ content: '\FEFF' attr(data-multi-step-icon);
12119
12193
  height: 2rem;
12120
12194
  line-height: 2rem;
12121
12195
  text-align: center;
@@ -17839,7 +17913,8 @@ a.sheet-subtitle:focus {
17839
17913
  font-size: 1.25rem;
17840
17914
  font-weight: 600;
17841
17915
  }
17842
- .sidebar-header .component-title a {
17916
+ .sidebar-header .component-title[href],
17917
+ .sidebar-header .component-title [href] {
17843
17918
  color: #272833;
17844
17919
  }
17845
17920
  .sidebar-header .component-subtitle {
@@ -17899,6 +17974,12 @@ a.sheet-subtitle:focus {
17899
17974
  bottom: -0.75rem;
17900
17975
  top: auto;
17901
17976
  }
17977
+ .sidebar-list-group .sticker.sticker-outside.sticker-bottom-right {
17978
+ bottom: -0.75rem;
17979
+ left: auto;
17980
+ right: -0.75rem;
17981
+ top: auto;
17982
+ }
17902
17983
  .sidebar-list-group .sticker.sticker-outside.sticker-top-right {
17903
17984
  left: auto;
17904
17985
  right: -0.75rem;
@@ -17932,7 +18013,8 @@ a.sheet-subtitle:focus {
17932
18013
  .sidebar-light .sidebar-list-group .list-group-title {
17933
18014
  font-size: 1rem;
17934
18015
  }
17935
- .sidebar-light .sidebar-list-group .list-group-title a {
18016
+ .sidebar-light .sidebar-list-group .list-group-title[href],
18017
+ .sidebar-light .sidebar-list-group .list-group-title [href] {
17936
18018
  color: #272833;
17937
18019
  }
17938
18020
  .sidebar-light .sidebar-panel {
@@ -17941,7 +18023,8 @@ a.sheet-subtitle:focus {
17941
18023
  .sidebar-light .sidebar-dt {
17942
18024
  color: #6b6c7e;
17943
18025
  }
17944
- .sidebar-light .sidebar-dd a {
18026
+ .sidebar-light .sidebar-dd[href],
18027
+ .sidebar-light .sidebar-dd [href] {
17945
18028
  color: #272833;
17946
18029
  }
17947
18030
  .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
@@ -18012,13 +18095,15 @@ a.sheet-subtitle:focus {
18012
18095
  .sidebar-dark .sidebar-header .component-title {
18013
18096
  color: inherit;
18014
18097
  }
18015
- .sidebar-dark .sidebar-header .component-title a {
18098
+ .sidebar-dark .sidebar-header .component-title[href],
18099
+ .sidebar-dark .sidebar-header .component-title [href] {
18016
18100
  color: inherit;
18017
18101
  }
18018
18102
  .sidebar-dark .sidebar-header .component-subtitle {
18019
18103
  color: inherit;
18020
18104
  }
18021
- .sidebar-dark .sidebar-header .component-subtitle a {
18105
+ .sidebar-dark .sidebar-header .component-subtitle[href],
18106
+ .sidebar-dark .sidebar-header .component-subtitle [href] {
18022
18107
  color: inherit;
18023
18108
  }
18024
18109
  .sidebar-dark .nav-nested .nav-link {
@@ -18610,7 +18695,8 @@ caption {
18610
18695
  margin-bottom: 0;
18611
18696
  color: #272833;
18612
18697
  }
18613
- .table-title a {
18698
+ .table-title[href],
18699
+ .table-title [href] {
18614
18700
  color: #272833;
18615
18701
  border-radius: 1px;
18616
18702
  display: inline-block;
@@ -18618,14 +18704,17 @@ caption {
18618
18704
  transition: box-shadow 0.15s ease-in-out;
18619
18705
  }
18620
18706
  @media (prefers-reduced-motion: reduce) {
18621
- .table-title a {
18707
+ .table-title[href],
18708
+ .table-title [href] {
18622
18709
  transition: none;
18623
18710
  }
18624
18711
  }
18625
- .table-title a:hover {
18712
+ .table-title[href]:hover,
18713
+ .table-title [href]:hover {
18626
18714
  color: #272833;
18627
18715
  }
18628
- .table-title a:focus {
18716
+ .table-title[href]:focus,
18717
+ .table-title [href]:focus {
18629
18718
  box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
18630
18719
  outline: 0;
18631
18720
  }
@@ -18945,7 +19034,8 @@ caption {
18945
19034
  margin-bottom: 0;
18946
19035
  color: #272833;
18947
19036
  }
18948
- .table-list-title a {
19037
+ .table-list-title[href],
19038
+ .table-list-title [href] {
18949
19039
  color: #272833;
18950
19040
  border-radius: 1px;
18951
19041
  display: inline-block;
@@ -18953,14 +19043,17 @@ caption {
18953
19043
  transition: box-shadow 0.15s ease-in-out;
18954
19044
  }
18955
19045
  @media (prefers-reduced-motion: reduce) {
18956
- .table-list-title a {
19046
+ .table-list-title[href],
19047
+ .table-list-title [href] {
18957
19048
  transition: none;
18958
19049
  }
18959
19050
  }
18960
- .table-list-title a:hover {
19051
+ .table-list-title[href]:hover,
19052
+ .table-list-title [href]:hover {
18961
19053
  color: #272833;
18962
19054
  }
18963
- .table-list-title a:focus {
19055
+ .table-list-title[href]:focus,
19056
+ .table-list-title [href]:focus {
18964
19057
  box-shadow: 0 0 0 0.125rem #fff , 0 0 0 0.25rem #80acff;
18965
19058
  outline: 0;
18966
19059
  }
@@ -20209,7 +20302,7 @@ caption {
20209
20302
  }
20210
20303
  }
20211
20304
  .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
20212
- content: attr(data-label-off);
20305
+ content: '\FEFF' attr(data-label-off);
20213
20306
  margin-left: 56px;
20214
20307
  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;
20215
20308
  white-space: nowrap;
@@ -20272,7 +20365,7 @@ caption {
20272
20365
  left: 28px;
20273
20366
  }
20274
20367
  .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
20275
- content: attr(data-label-on);
20368
+ content: '\FEFF' attr(data-label-on);
20276
20369
  }
20277
20370
  .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon {
20278
20371
  color: #fff;
@@ -20774,6 +20867,7 @@ caption {
20774
20867
  word-wrap: break-word;
20775
20868
  }
20776
20869
  .treeview-link {
20870
+ background-color: transparent;
20777
20871
  cursor: pointer;
20778
20872
  display: block;
20779
20873
  border-color: transparent;
@@ -20784,6 +20878,7 @@ caption {
20784
20878
  min-width: 100%;
20785
20879
  padding: 0;
20786
20880
  position: relative;
20881
+ text-align: left;
20787
20882
  -ms-user-select: none;
20788
20883
  -moz-user-select: none;
20789
20884
  -webkit-user-select: none;
@@ -20796,6 +20891,9 @@ caption {
20796
20891
  box-shadow: inset 0 0 0 0.125rem #80acff , inset 0 0 0 0.25rem #fff;
20797
20892
  outline: 0;
20798
20893
  }
20894
+ .treeview-link:disabled, .treeview-link.disabled {
20895
+ cursor: not-allowed;
20896
+ }
20799
20897
  .treeview-link.treeview-dropping-bottom {
20800
20898
  box-shadow: 0 2px 0 0 #80acff;
20801
20899
  }
@@ -20807,7 +20905,10 @@ caption {
20807
20905
  box-shadow: 0 -2px 0 0 #80acff;
20808
20906
  }
20809
20907
  .treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
20810
- display: block;
20908
+ display: flex;
20909
+ }
20910
+ .treeview-link:disabled .component-action, .treeview-link.disabled .component-action {
20911
+ display: none;
20811
20912
  }
20812
20913
  .treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
20813
20914
  display: none;
@@ -20848,6 +20949,10 @@ caption {
20848
20949
  .treeview-light .component-expander:hover {
20849
20950
  color: #0b5fff;
20850
20951
  }
20952
+ .treeview-light .component-expander:disabled, .treeview-light .component-expander.disabled {
20953
+ color: #6b6c7e;
20954
+ opacity: 0.5;
20955
+ }
20851
20956
  .treeview-light .component-expander.btn-secondary {
20852
20957
  background-color: #fff;
20853
20958
  }
@@ -20866,12 +20971,20 @@ caption {
20866
20971
  background-color: #f1f2f5;
20867
20972
  color: #272833;
20868
20973
  }
20974
+ .treeview-light .treeview-link:disabled, .treeview-light .treeview-link.disabled {
20975
+ background-color: transparent;
20976
+ color: rgba(107, 108, 126, 0.5);
20977
+ }
20869
20978
  .treeview-dark .component-expander {
20870
20979
  color: #a7a9bc;
20871
20980
  }
20872
20981
  .treeview-dark .component-expander:hover {
20873
20982
  color: #80acff;
20874
20983
  }
20984
+ .treeview-dark .component-expander:disabled, .treeview-dark .component-expander.disabled {
20985
+ color: #a7a9bc;
20986
+ opacity: 0.5;
20987
+ }
20875
20988
  .treeview-dark .treeview-link {
20876
20989
  color: #a7a9bc;
20877
20990
  }
@@ -20884,11 +20997,14 @@ caption {
20884
20997
  }
20885
20998
  .treeview-dark .treeview-link:disabled, .treeview-dark .treeview-link.disabled {
20886
20999
  background-color: transparent;
20887
- color: rgba(167, 169, 188, 0.04);
21000
+ color: rgba(167, 169, 188, 0.5);
20888
21001
  }
20889
21002
  .treeview-dark .component-action {
20890
21003
  color: #a7a9bc;
20891
21004
  }
21005
+ .treeview-dark .component-action:disabled, .treeview-dark .component-action.disabled {
21006
+ color: #a7a9bc;
21007
+ }
20892
21008
  .bg-checkered {
20893
21009
  background-image: linear-gradient(45deg, #e7e7ed 25%, transparent 25%), linear-gradient(-45deg, #e7e7ed 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e7e7ed 75%), linear-gradient(-45deg, transparent 75%, #e7e7ed 75%);
20894
21010
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
@@ -29418,10 +29534,6 @@ button.bg-dark:focus {
29418
29534
  z-index: 1;
29419
29535
  }
29420
29536
 
29421
- .text-monospace {
29422
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
29423
- }
29424
-
29425
29537
  .text-justify {
29426
29538
  text-align: justify !important;
29427
29539
  }
@@ -29516,34 +29628,90 @@ button.bg-dark:focus {
29516
29628
  text-transform: capitalize !important;
29517
29629
  }
29518
29630
 
29519
- .font-weight-light {
29520
- font-weight: 300 !important;
29631
+ .font-weight-lighter,
29632
+ .text-weight-lighter {
29633
+ font-weight: lighter !important;
29521
29634
  }
29522
29635
 
29523
- .font-weight-lighter {
29524
- font-weight: lighter !important;
29636
+ .font-weight-light,
29637
+ .text-weight-light {
29638
+ font-weight: 300 !important;
29525
29639
  }
29526
29640
 
29527
- .font-weight-normal {
29641
+ .font-weight-normal,
29642
+ .text-weight-normal {
29528
29643
  font-weight: 400 !important;
29529
29644
  }
29530
29645
 
29531
- .font-weight-semi-bold {
29646
+ .font-weight-semi-bold,
29647
+ .text-weight-semi-bold {
29532
29648
  font-weight: 600 !important;
29533
29649
  }
29534
29650
 
29535
- .font-weight-bold {
29651
+ .font-weight-bold,
29652
+ .text-weight-bold {
29536
29653
  font-weight: 700 !important;
29537
29654
  }
29538
29655
 
29539
- .font-weight-bolder {
29656
+ .font-weight-bolder,
29657
+ .text-weight-bolder {
29540
29658
  font-weight: 900 !important;
29541
29659
  }
29542
29660
 
29543
- .font-italic {
29661
+ .font-italic,
29662
+ .text-italic {
29544
29663
  font-style: italic !important;
29545
29664
  }
29546
29665
 
29666
+ .font-monospace,
29667
+ .text-monospace {
29668
+ font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
29669
+ }
29670
+
29671
+ .text-1 {
29672
+ font-size: 0.625rem;
29673
+ }
29674
+
29675
+ .text-2 {
29676
+ font-size: 0.75rem;
29677
+ }
29678
+
29679
+ .text-3 {
29680
+ font-size: 0.875rem;
29681
+ }
29682
+
29683
+ .text-4 {
29684
+ font-size: 1rem;
29685
+ }
29686
+
29687
+ .text-5 {
29688
+ font-size: 1.125rem;
29689
+ }
29690
+
29691
+ .text-6 {
29692
+ font-size: 1.25rem;
29693
+ }
29694
+
29695
+ .text-7 {
29696
+ font-size: 1.5rem;
29697
+ }
29698
+
29699
+ .text-8 {
29700
+ font-size: 1.75rem;
29701
+ }
29702
+
29703
+ .text-9 {
29704
+ font-size: 2rem;
29705
+ }
29706
+
29707
+ .text-10 {
29708
+ font-size: 2.25rem;
29709
+ }
29710
+
29711
+ .text-11 {
29712
+ font-size: 2.5rem;
29713
+ }
29714
+
29547
29715
  .text-white {
29548
29716
  color: #fff !important;
29549
29717
  }