@festo-ui/web-essentials 11.0.1 → 11.1.0-dev.978

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 (46) hide show
  1. package/dist/css/festo-web-essentials.css +130 -85
  2. package/dist/css/festo-web-essentials.css.map +1 -1
  3. package/dist/css/festo-web-essentials.min.css +17 -17
  4. package/dist/css/festo-web-essentials.min.css.map +1 -1
  5. package/dist/css/light/festo-web-essentials-light.css +121 -76
  6. package/dist/css/light/festo-web-essentials-light.css.map +1 -1
  7. package/dist/css/organisms/festo-web-essentials-organisms.css +12 -3
  8. package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
  9. package/dist/css/organisms/festo-web-essentials-organisms.min.css +2 -2
  10. package/dist/css/organisms/festo-web-essentials-organisms.min.css.map +1 -1
  11. package/dist/css/themes/flatpickr/festo.css +1 -1
  12. package/dist/css/themes/flatpickr/festo.min.css +1 -1
  13. package/dist/scss/_accordion.scss +3 -3
  14. package/dist/scss/_badge.scss +16 -23
  15. package/dist/scss/_button.scss +4 -2
  16. package/dist/scss/_list.scss +9 -3
  17. package/dist/scss/{_bottom-navigation.scss → _mobile-tab-bar.scss} +50 -47
  18. package/dist/scss/_modal.scss +2 -1
  19. package/dist/scss/_popover.scss +15 -2
  20. package/dist/scss/_root.scss +4 -4
  21. package/dist/scss/_snackbar.scss +6 -4
  22. package/dist/scss/_tree.scss +2 -1
  23. package/dist/scss/festo-web-essentials.scss +2 -2
  24. package/dist/scss/light/festo-web-essentials-light.scss +1 -1
  25. package/dist/scss/organisms/_header-slider.scss +4 -2
  26. package/dist/scss/organisms/_image-gallery.scss +4 -2
  27. package/dist/scss/organisms/_side-menu.scss +6 -0
  28. package/dist/scss/themes/flatpickr/festo.scss +1 -1
  29. package/llm-doc/components.md +11 -11
  30. package/llm-doc/organisms.md +1 -1
  31. package/package.json +1 -1
  32. package/scss/_accordion.scss +3 -3
  33. package/scss/_badge.scss +16 -23
  34. package/scss/_button.scss +4 -2
  35. package/scss/_list.scss +9 -3
  36. package/scss/{_bottom-navigation.scss → _mobile-tab-bar.scss} +50 -47
  37. package/scss/_modal.scss +2 -1
  38. package/scss/_popover.scss +15 -2
  39. package/scss/_root.scss +4 -4
  40. package/scss/_snackbar.scss +6 -4
  41. package/scss/_tree.scss +2 -1
  42. package/scss/festo-web-essentials.scss +1 -1
  43. package/scss/light/festo-web-essentials-light.scss +1 -1
  44. package/scss/organisms/_header-slider.scss +4 -2
  45. package/scss/organisms/_image-gallery.scss +4 -2
  46. package/scss/organisms/_side-menu.scss +6 -0
@@ -426,7 +426,7 @@ h6,
426
426
  }
427
427
 
428
428
  :root {
429
- --fwe-black: #000000;
429
+ --fwe-black: #333333;
430
430
  --fwe-white: #ffffff;
431
431
  --fwe-white-hover: #ededed;
432
432
  --fwe-caerul: #0091dc;
@@ -438,7 +438,7 @@ h6,
438
438
  --fwe-gray-400: #b6bec6;
439
439
  --fwe-text: #333333;
440
440
  --fwe-text-light: #82868b;
441
- --fwe-text-disabled: #b9babb;
441
+ --fwe-text-disabled: #a9b0b7;
442
442
  --fwe-hero: #0091dc;
443
443
  --fwe-hero-hover: #0588cb;
444
444
  --fwe-hero-active: #0a7eba;
@@ -456,12 +456,12 @@ h6,
456
456
  --fwe-red-active: #b50a0a;
457
457
  --fwe-orange-bg: #fbf0e1;
458
458
  --fwe-red-bg: #f7e1e1;
459
- --fwe-control: #d3d8dd;
459
+ --fwe-control: #dbdfe3;
460
460
  --fwe-control-hover: #c5cbd1;
461
461
  --fwe-control-active: #a9b0b7;
462
462
  --fwe-control-disabled: #e2e5e8;
463
463
  --fwe-control-border: #b6bec6;
464
- --fwe-control-border-hover: #a9b0b7;
464
+ --fwe-control-border-hover: #c5cbd1;
465
465
  --fwe-control-border-active: #9ca2a9;
466
466
  --fwe-control-scrollbar: #d2d5d9;
467
467
  --fwe-border: #d3d8dd;
@@ -2712,7 +2712,7 @@ ul.fwe-list-group {
2712
2712
  color: var(--fwe-text);
2713
2713
  }
2714
2714
  .fwe-list-group a.fwe-list-group-item:not(.fwe-disabled):hover {
2715
- background-color: var(--fwe-sucanul);
2715
+ background-color: var(--fwe-background);
2716
2716
  }
2717
2717
  .fwe-list-group a.fwe-list-group-item:not(.fwe-disabled):hover .fwe-list-group-item-body,
2718
2718
  .fwe-list-group a.fwe-list-group-item:not(.fwe-disabled):hover .fwe-list-group-item-footer {
@@ -2728,7 +2728,7 @@ ul.fwe-list-group {
2728
2728
  }
2729
2729
  .fwe-list-group button.fwe-list-group-item:not(.fwe-disabled):hover {
2730
2730
  color: var(--fwe-hero);
2731
- background-color: var(--fwe-sucanul);
2731
+ background-color: var(--fwe-background);
2732
2732
  }
2733
2733
  .fwe-list-group.fwe-list-group-border .fwe-list-group-item,
2734
2734
  .fwe-list-group.fwe-list-group-border button.fwe-list-group-item {
@@ -2788,9 +2788,12 @@ ul.fwe-list-group {
2788
2788
  width: auto;
2789
2789
  }
2790
2790
  .fwe-list-group.fwe-list-group-horizontal a.fwe-list-group-item:not(.fwe-disabled):hover,
2791
+ .fwe-list-group.fwe-list-group-horizontal button.fwe-list-group-item:not(.fwe-disabled):hover {
2792
+ background-color: var(--fwe-background);
2793
+ }
2791
2794
  .fwe-list-group.fwe-list-group-horizontal button.fwe-list-group-item:not(.fwe-disabled):hover {
2792
2795
  color: var(--fwe-hero);
2793
- background-color: unset;
2796
+ background-color: var(--fwe-background);
2794
2797
  }
2795
2798
 
2796
2799
  .fwe-list-group-header {
@@ -4227,23 +4230,28 @@ button.fwe-btn.fwe-disabled {
4227
4230
  background: var(--fwe-control-disabled);
4228
4231
  color: var(--fwe-text-disabled);
4229
4232
  }
4230
- a.fwe-btn.fwe-btn-hero,
4231
- button.fwe-btn.fwe-btn-hero {
4233
+ a.fwe-btn.fwe-btn-hero, a.fwe-btn.fwe-btn-primary,
4234
+ button.fwe-btn.fwe-btn-hero,
4235
+ button.fwe-btn.fwe-btn-primary {
4232
4236
  color: var(--fwe-white);
4233
4237
  background: var(--fwe-hero);
4234
4238
  }
4235
- a.fwe-btn.fwe-btn-hero:hover,
4236
- button.fwe-btn.fwe-btn-hero:hover {
4239
+ a.fwe-btn.fwe-btn-hero:hover, a.fwe-btn.fwe-btn-primary:hover,
4240
+ button.fwe-btn.fwe-btn-hero:hover,
4241
+ button.fwe-btn.fwe-btn-primary:hover {
4237
4242
  color: var(--fwe-white);
4238
4243
  background: var(--fwe-hero-hover);
4239
4244
  }
4240
- a.fwe-btn.fwe-btn-hero:active,
4241
- button.fwe-btn.fwe-btn-hero:active {
4245
+ a.fwe-btn.fwe-btn-hero:active, a.fwe-btn.fwe-btn-primary:active,
4246
+ button.fwe-btn.fwe-btn-hero:active,
4247
+ button.fwe-btn.fwe-btn-primary:active {
4242
4248
  background: var(--fwe-hero-active);
4243
4249
  }
4244
- a.fwe-btn.fwe-btn-hero:disabled, a.fwe-btn.fwe-btn-hero.fwe-disabled,
4250
+ a.fwe-btn.fwe-btn-hero:disabled, a.fwe-btn.fwe-btn-hero.fwe-disabled, a.fwe-btn.fwe-btn-primary:disabled, a.fwe-btn.fwe-btn-primary.fwe-disabled,
4245
4251
  button.fwe-btn.fwe-btn-hero:disabled,
4246
- button.fwe-btn.fwe-btn-hero.fwe-disabled {
4252
+ button.fwe-btn.fwe-btn-hero.fwe-disabled,
4253
+ button.fwe-btn.fwe-btn-primary:disabled,
4254
+ button.fwe-btn.fwe-btn-primary.fwe-disabled {
4247
4255
  background: var(--fwe-control-disabled);
4248
4256
  color: var(--fwe-text-disabled);
4249
4257
  }
@@ -4251,37 +4259,48 @@ a.fwe-btn.fwe-btn-block,
4251
4259
  button.fwe-btn.fwe-btn-block {
4252
4260
  width: 100%;
4253
4261
  }
4254
- a.fwe-btn.fwe-btn-link,
4255
- button.fwe-btn.fwe-btn-link {
4262
+ a.fwe-btn.fwe-btn-link, a.fwe-btn.fwe-btn-tertiary,
4263
+ button.fwe-btn.fwe-btn-link,
4264
+ button.fwe-btn.fwe-btn-tertiary {
4256
4265
  background: none;
4257
4266
  color: var(--fwe-hero);
4258
4267
  padding: 0;
4259
4268
  }
4260
4269
  a.fwe-btn.fwe-btn-link i[class^=fwe-icon-],
4261
4270
  a.fwe-btn.fwe-btn-link i[class*=" fwe-icon-"],
4262
- a.fwe-btn.fwe-btn-link .fwe-svg-icon,
4271
+ a.fwe-btn.fwe-btn-link .fwe-svg-icon, a.fwe-btn.fwe-btn-tertiary i[class^=fwe-icon-],
4272
+ a.fwe-btn.fwe-btn-tertiary i[class*=" fwe-icon-"],
4273
+ a.fwe-btn.fwe-btn-tertiary .fwe-svg-icon,
4263
4274
  button.fwe-btn.fwe-btn-link i[class^=fwe-icon-],
4264
4275
  button.fwe-btn.fwe-btn-link i[class*=" fwe-icon-"],
4265
- button.fwe-btn.fwe-btn-link .fwe-svg-icon {
4276
+ button.fwe-btn.fwe-btn-link .fwe-svg-icon,
4277
+ button.fwe-btn.fwe-btn-tertiary i[class^=fwe-icon-],
4278
+ button.fwe-btn.fwe-btn-tertiary i[class*=" fwe-icon-"],
4279
+ button.fwe-btn.fwe-btn-tertiary .fwe-svg-icon {
4266
4280
  margin-right: 4px;
4267
4281
  }
4268
- a.fwe-btn.fwe-btn-link.fwe-dark,
4269
- button.fwe-btn.fwe-btn-link.fwe-dark {
4282
+ a.fwe-btn.fwe-btn-link.fwe-dark, a.fwe-btn.fwe-btn-tertiary.fwe-dark,
4283
+ button.fwe-btn.fwe-btn-link.fwe-dark,
4284
+ button.fwe-btn.fwe-btn-tertiary.fwe-dark {
4270
4285
  color: var(--fwe-text);
4271
4286
  }
4272
- a.fwe-btn.fwe-btn-link:hover,
4273
- button.fwe-btn.fwe-btn-link:hover {
4287
+ a.fwe-btn.fwe-btn-link:hover, a.fwe-btn.fwe-btn-tertiary:hover,
4288
+ button.fwe-btn.fwe-btn-link:hover,
4289
+ button.fwe-btn.fwe-btn-tertiary:hover {
4274
4290
  background: none;
4275
4291
  color: var(--fwe-hero-hover);
4276
4292
  }
4277
- a.fwe-btn.fwe-btn-link:active,
4278
- button.fwe-btn.fwe-btn-link:active {
4293
+ a.fwe-btn.fwe-btn-link:active, a.fwe-btn.fwe-btn-tertiary:active,
4294
+ button.fwe-btn.fwe-btn-link:active,
4295
+ button.fwe-btn.fwe-btn-tertiary:active {
4279
4296
  background: none;
4280
4297
  color: var(--fwe-hero-hover);
4281
4298
  }
4282
- a.fwe-btn.fwe-btn-link:disabled, a.fwe-btn.fwe-btn-link.fwe-disabled,
4299
+ a.fwe-btn.fwe-btn-link:disabled, a.fwe-btn.fwe-btn-link.fwe-disabled, a.fwe-btn.fwe-btn-tertiary:disabled, a.fwe-btn.fwe-btn-tertiary.fwe-disabled,
4283
4300
  button.fwe-btn.fwe-btn-link:disabled,
4284
- button.fwe-btn.fwe-btn-link.fwe-disabled {
4301
+ button.fwe-btn.fwe-btn-link.fwe-disabled,
4302
+ button.fwe-btn.fwe-btn-tertiary:disabled,
4303
+ button.fwe-btn.fwe-btn-tertiary.fwe-disabled {
4285
4304
  color: var(--fwe-text-disabled);
4286
4305
  }
4287
4306
  a.fwe-btn.fwe-btn-lg,
@@ -4776,40 +4795,33 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
4776
4795
 
4777
4796
  .fwe-badge {
4778
4797
  display: inline-block;
4779
- border-radius: 2px;
4780
- font-size: var(--fwe-font-size-md);
4781
- padding-left: 6px;
4782
- padding-right: 6px;
4783
4798
  color: var(--fwe-white);
4784
- max-height: 19px;
4785
- height: 19px;
4786
- line-height: 17px;
4787
4799
  background-color: var(--fwe-hero);
4800
+ border-radius: 2px;
4801
+ max-height: 18px;
4802
+ height: 18px;
4803
+ line-height: 18px;
4804
+ padding: 0 4px;
4788
4805
  font-weight: var(--fwe-font-weight-bold);
4806
+ font-size: var(--fwe-font-size-md);
4789
4807
  }
4790
4808
  .fwe-badge.fwe-badge-sm {
4791
4809
  font-size: var(--fwe-font-size-small);
4792
- max-height: 17px;
4793
- height: 17px;
4794
- line-height: 16px;
4810
+ max-height: 18px;
4811
+ height: 18px;
4812
+ line-height: 18px;
4795
4813
  }
4796
- .fwe-badge.fwe-badge-md {
4814
+ .fwe-badge.fwe-badge-md, .fwe-badge.fwe-badge-lg {
4797
4815
  font-size: var(--fwe-font-size-base);
4798
4816
  max-height: 22px;
4799
4817
  height: 22px;
4800
- line-height: 20px;
4801
- }
4802
- .fwe-badge.fwe-badge-lg {
4803
- font-size: var(--fwe-font-size-xl);
4804
- max-height: 32px;
4805
- height: 32px;
4806
- line-height: 30px;
4818
+ line-height: 22px;
4807
4819
  }
4808
4820
  .fwe-badge.fwe-badge-xl {
4809
- font-size: var(--fwe-font-size-xxl);
4810
- max-height: 44px;
4811
- height: 44px;
4812
- line-height: 42px;
4821
+ font-size: var(--fwe-font-size-xl);
4822
+ max-height: 34px;
4823
+ height: 34px;
4824
+ line-height: 34px;
4813
4825
  }
4814
4826
 
4815
4827
  .fwe-badge-caerul {
@@ -5157,7 +5169,7 @@ fieldset.fwe-progress-container label {
5157
5169
  }
5158
5170
  .fwe-snackbar.fwe-snackbar-warning {
5159
5171
  border-color: var(--fwe-orange);
5160
- background-color: var(--fwe-orange-bg);
5172
+ background-color: #ffeacc;
5161
5173
  }
5162
5174
  .fwe-snackbar.fwe-snackbar-warning span::before {
5163
5175
  background-color: var(--fwe-orange);
@@ -5169,7 +5181,7 @@ fieldset.fwe-progress-container label {
5169
5181
  }
5170
5182
  .fwe-snackbar.fwe-snackbar-error {
5171
5183
  border-color: var(--fwe-red);
5172
- background-color: var(--fwe-red-bg);
5184
+ background-color: #f6cccc;
5173
5185
  }
5174
5186
  .fwe-snackbar.fwe-snackbar-error span::before {
5175
5187
  background-color: var(--fwe-red);
@@ -5185,37 +5197,37 @@ fieldset.fwe-progress-container label {
5185
5197
  margin: 0px 12px;
5186
5198
  background: var(--fwe-hero);
5187
5199
  }
5188
- .fwe-snackbar.fwe-snackbar-b {
5200
+ .fwe-snackbar.fwe-snackbar-b, .fwe-snackbar.fwe-snackbar-light {
5189
5201
  border: none;
5190
5202
  background-color: var(--fwe-white);
5191
5203
  }
5192
- .fwe-snackbar.fwe-snackbar-b span::before {
5204
+ .fwe-snackbar.fwe-snackbar-b span::before, .fwe-snackbar.fwe-snackbar-light span::before {
5193
5205
  background-color: var(--fwe-text);
5194
5206
  }
5195
- .fwe-snackbar.fwe-snackbar-b .fwe-snackbar-separator {
5207
+ .fwe-snackbar.fwe-snackbar-b .fwe-snackbar-separator, .fwe-snackbar.fwe-snackbar-light .fwe-snackbar-separator {
5196
5208
  background-color: var(--fwe-text-light);
5197
5209
  }
5198
- .fwe-snackbar.fwe-snackbar-c {
5210
+ .fwe-snackbar.fwe-snackbar-c, .fwe-snackbar.fwe-snackbar-strong {
5199
5211
  border: none;
5200
5212
  color: var(--fwe-white);
5201
5213
  background-color: var(--fwe-hero);
5202
5214
  }
5203
- .fwe-snackbar.fwe-snackbar-c.fwe-snackbar-warning {
5215
+ .fwe-snackbar.fwe-snackbar-c.fwe-snackbar-warning, .fwe-snackbar.fwe-snackbar-strong.fwe-snackbar-warning {
5204
5216
  background-color: var(--fwe-orange);
5205
5217
  }
5206
- .fwe-snackbar.fwe-snackbar-c.fwe-snackbar-error {
5218
+ .fwe-snackbar.fwe-snackbar-c.fwe-snackbar-error, .fwe-snackbar.fwe-snackbar-strong.fwe-snackbar-error {
5207
5219
  background-color: var(--fwe-red);
5208
5220
  }
5209
- .fwe-snackbar.fwe-snackbar-c span::before {
5221
+ .fwe-snackbar.fwe-snackbar-c span::before, .fwe-snackbar.fwe-snackbar-strong span::before {
5210
5222
  background-color: var(--fwe-white);
5211
5223
  }
5212
- .fwe-snackbar.fwe-snackbar-c .fwe-snackbar-close-btn {
5224
+ .fwe-snackbar.fwe-snackbar-c .fwe-snackbar-close-btn, .fwe-snackbar.fwe-snackbar-strong .fwe-snackbar-close-btn {
5213
5225
  background-color: var(--fwe-white);
5214
5226
  }
5215
- .fwe-snackbar.fwe-snackbar-c .fwe-snackbar-separator {
5227
+ .fwe-snackbar.fwe-snackbar-c .fwe-snackbar-separator, .fwe-snackbar.fwe-snackbar-strong .fwe-snackbar-separator {
5216
5228
  background-color: var(--fwe-white-hover);
5217
5229
  }
5218
- .fwe-snackbar.fwe-snackbar-c .fwe-snackbar-link-btn {
5230
+ .fwe-snackbar.fwe-snackbar-c .fwe-snackbar-link-btn, .fwe-snackbar.fwe-snackbar-strong .fwe-snackbar-link-btn {
5219
5231
  color: var(--fwe-white);
5220
5232
  }
5221
5233
 
@@ -5345,7 +5357,9 @@ fieldset.fwe-progress-container label {
5345
5357
  .fwe-modal--with-indicator-bar {
5346
5358
  border-left: 8px solid var(--fwe-hero);
5347
5359
  }
5348
- .fwe-modal--with-indicator-bar.fwe-modal--warning button.fwe-btn.fwe-btn-link, .fwe-modal--with-indicator-bar.fwe-modal--error button.fwe-btn.fwe-btn-link {
5360
+ .fwe-modal--with-indicator-bar.fwe-modal--warning button.fwe-btn.fwe-btn-link,
5361
+ .fwe-modal--with-indicator-bar.fwe-modal--warning button.fwe-btn.fwe-btn-tertiary, .fwe-modal--with-indicator-bar.fwe-modal--error button.fwe-btn.fwe-btn-link,
5362
+ .fwe-modal--with-indicator-bar.fwe-modal--error button.fwe-btn.fwe-btn-tertiary {
5349
5363
  color: var(--fwe-text);
5350
5364
  }
5351
5365
  .fwe-modal--info .fwe-modal-h2, .fwe-modal--warning .fwe-modal-h2, .fwe-modal--error .fwe-modal-h2 {
@@ -5673,7 +5687,7 @@ fieldset.fwe-progress-container label {
5673
5687
  .fwe-popover--menu {
5674
5688
  font-size: var(--fwe-font-size-base);
5675
5689
  line-height: 1.5rem;
5676
- padding: 16px;
5690
+ padding: 18px 16px 10px 16px;
5677
5691
  }
5678
5692
  .fwe-popover--menu button {
5679
5693
  all: unset;
@@ -5708,11 +5722,21 @@ fieldset.fwe-progress-container label {
5708
5722
  margin-right: 8px;
5709
5723
  }
5710
5724
  .fwe-popover--menu button:hover {
5711
- background-color: rgba(51, 51, 51, 0.1019607843);
5725
+ color: var(--fwe-hero);
5712
5726
  }
5713
5727
  .fwe-popover--menu button:active {
5714
5728
  background-color: rgba(51, 51, 51, 0.2);
5715
5729
  }
5730
+ .fwe-popover--menu button:disabled {
5731
+ color: var(--fwe-text-disabled);
5732
+ cursor: default;
5733
+ }
5734
+ .fwe-popover--menu button:disabled:hover {
5735
+ color: var(--fwe-text-disabled);
5736
+ }
5737
+ .fwe-popover--menu button:disabled:active {
5738
+ background-color: transparent;
5739
+ }
5716
5740
  .fwe-popover--content {
5717
5741
  width: auto;
5718
5742
  min-width: -moz-max-content;
@@ -6571,7 +6595,8 @@ input[type=search]::-webkit-search-cancel-button {
6571
6595
  border-color: transparent;
6572
6596
  }
6573
6597
 
6574
- .fwe-bottom-navigation {
6598
+ .fwe-bottom-navigation,
6599
+ .fwe-mobile-tab-bar {
6575
6600
  width: 100%;
6576
6601
  display: flex;
6577
6602
  background: var(--fwe-white);
@@ -6581,7 +6606,10 @@ input[type=search]::-webkit-search-cancel-button {
6581
6606
  height: 84px;
6582
6607
  padding: 22px 16px;
6583
6608
  }
6584
- .fwe-bottom-navigation .fwe-bottom-navigation-button {
6609
+ .fwe-bottom-navigation .fwe-bottom-navigation-button,
6610
+ .fwe-bottom-navigation .fwe-mobile-tab-bar-button,
6611
+ .fwe-mobile-tab-bar .fwe-bottom-navigation-button,
6612
+ .fwe-mobile-tab-bar .fwe-mobile-tab-bar-button {
6585
6613
  cursor: pointer;
6586
6614
  -webkit-user-select: none;
6587
6615
  -moz-user-select: none;
@@ -6594,10 +6622,16 @@ input[type=search]::-webkit-search-cancel-button {
6594
6622
  color: var(--fwe-hero-gray);
6595
6623
  position: relative;
6596
6624
  }
6597
- .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-icon {
6625
+ .fwe-bottom-navigation .fwe-bottom-navigation-button .fwe-icon,
6626
+ .fwe-bottom-navigation .fwe-mobile-tab-bar-button .fwe-icon,
6627
+ .fwe-mobile-tab-bar .fwe-bottom-navigation-button .fwe-icon,
6628
+ .fwe-mobile-tab-bar .fwe-mobile-tab-bar-button .fwe-icon {
6598
6629
  line-height: 0px;
6599
6630
  }
6600
- .fwe-bottom-navigation .fwe-bottom-navigation-button :after {
6631
+ .fwe-bottom-navigation .fwe-bottom-navigation-button :after,
6632
+ .fwe-bottom-navigation .fwe-mobile-tab-bar-button :after,
6633
+ .fwe-mobile-tab-bar .fwe-bottom-navigation-button :after,
6634
+ .fwe-mobile-tab-bar .fwe-mobile-tab-bar-button :after {
6601
6635
  content: "";
6602
6636
  position: absolute;
6603
6637
  top: -23px;
@@ -6607,14 +6641,23 @@ input[type=search]::-webkit-search-cancel-button {
6607
6641
  background: var(--fwe-hero);
6608
6642
  transition: height 0.3s ease;
6609
6643
  }
6610
- .fwe-bottom-navigation .fwe-bottom-navigation-button.fwe-selected {
6644
+ .fwe-bottom-navigation .fwe-bottom-navigation-button.fwe-selected,
6645
+ .fwe-bottom-navigation .fwe-mobile-tab-bar-button.fwe-selected,
6646
+ .fwe-mobile-tab-bar .fwe-bottom-navigation-button.fwe-selected,
6647
+ .fwe-mobile-tab-bar .fwe-mobile-tab-bar-button.fwe-selected {
6611
6648
  color: var(--fwe-hero);
6612
6649
  cursor: default;
6613
6650
  }
6614
- .fwe-bottom-navigation .fwe-bottom-navigation-button.fwe-selected :after {
6651
+ .fwe-bottom-navigation .fwe-bottom-navigation-button.fwe-selected :after,
6652
+ .fwe-bottom-navigation .fwe-mobile-tab-bar-button.fwe-selected :after,
6653
+ .fwe-mobile-tab-bar .fwe-bottom-navigation-button.fwe-selected :after,
6654
+ .fwe-mobile-tab-bar .fwe-mobile-tab-bar-button.fwe-selected :after {
6615
6655
  height: 4px;
6616
6656
  }
6617
- .fwe-bottom-navigation .fwe-bottom-navigation-button:active {
6657
+ .fwe-bottom-navigation .fwe-bottom-navigation-button:active,
6658
+ .fwe-bottom-navigation .fwe-mobile-tab-bar-button:active,
6659
+ .fwe-mobile-tab-bar .fwe-bottom-navigation-button:active,
6660
+ .fwe-mobile-tab-bar .fwe-mobile-tab-bar-button:active {
6618
6661
  color: var(--fwe-hero-active);
6619
6662
  }
6620
6663
 
@@ -6660,12 +6703,12 @@ input[type=search]::-webkit-search-cancel-button {
6660
6703
  }
6661
6704
  .fwe-accordion-item::after {
6662
6705
  position: absolute;
6663
- top: 21px;
6706
+ top: 23px;
6664
6707
  right: 16px;
6665
6708
  pointer-events: none;
6666
6709
  content: "";
6667
- height: 32px;
6668
- width: 32px;
6710
+ height: 24px;
6711
+ width: 24px;
6669
6712
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgzMnYzMkgweiIvPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Im0xNiAyMi04LjcwNy04LjcwNyAxLjQxNC0xLjQxNEwxNiAxOS4xNzJsNy4yOTMtNy4yOTMgMS40MTQgMS40MTRMMTYgMjJ6IiAvPjwvc3ZnPg==");
6670
6713
  transition: transform 0.2s ease;
6671
6714
  }
@@ -6920,12 +6963,14 @@ input[type=search]::-webkit-search-cancel-button {
6920
6963
  margin-left: 16px;
6921
6964
  }
6922
6965
 
6923
- .fwe-btn.fwe-btn-link.fwe-btn--tree-node-toggle {
6966
+ .fwe-btn.fwe-btn-link.fwe-btn--tree-node-toggle,
6967
+ .fwe-btn.fwe-btn-tertiary.fwe-btn--tree-node-toggle {
6924
6968
  color: var(--fwe-text);
6925
6969
  padding: 0 8px 0 16px;
6926
6970
  justify-content: flex-start;
6927
6971
  }
6928
- .fwe-btn.fwe-btn-link.fwe-btn--tree-node-select {
6972
+ .fwe-btn.fwe-btn-link.fwe-btn--tree-node-select,
6973
+ .fwe-btn.fwe-btn-tertiary.fwe-btn--tree-node-select {
6929
6974
  color: var(--fwe-text);
6930
6975
  justify-content: flex-start;
6931
6976
  min-width: 0;