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

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
@@ -1,47 +1,50 @@
1
- @use "variables";
2
-
3
- .fwe-bottom-navigation {
4
- width: 100%;
5
- display: flex;
6
- background: variables.$white;
7
- align-items: flex-start;
8
- justify-content: space-around;
9
- border-top: 1px solid variables.$border;
10
- height: 84px;
11
- padding: 22px 16px;
12
- .fwe-bottom-navigation-button {
13
- cursor: pointer;
14
- -webkit-user-select: none;
15
- user-select: none;
16
- .fwe-icon {
17
- line-height: 0px;
18
- }
19
- display: flex;
20
- align-items: center;
21
- background: none;
22
- border: none;
23
- outline: none;
24
- color: variables.$hero-gray;
25
- position: relative;
26
- :after {
27
- content: "";
28
- position: absolute;
29
- top: -23px;
30
- left: 0px;
31
- right: 0px;
32
- height: 0px;
33
- background: variables.$hero;
34
- transition: height 0.3s ease;
35
- }
36
- &.fwe-selected {
37
- color: variables.$hero;
38
- cursor: default;
39
- :after {
40
- height: 4px;
41
- }
42
- }
43
- &:active {
44
- color: variables.$hero-active;
45
- }
46
- }
47
- }
1
+ @use "variables";
2
+
3
+ .fwe-bottom-navigation, // deprecated
4
+ .fwe-mobile-tab-bar {
5
+ width: 100%;
6
+ display: flex;
7
+ background: variables.$white;
8
+ align-items: flex-start;
9
+ justify-content: space-around;
10
+ border-top: 1px solid variables.$border;
11
+ height: 84px;
12
+ padding: 22px 16px;
13
+
14
+ .fwe-bottom-navigation-button, // deprecated
15
+ .fwe-mobile-tab-bar-button {
16
+ cursor: pointer;
17
+ -webkit-user-select: none;
18
+ user-select: none;
19
+ .fwe-icon {
20
+ line-height: 0px;
21
+ }
22
+ display: flex;
23
+ align-items: center;
24
+ background: none;
25
+ border: none;
26
+ outline: none;
27
+ color: variables.$hero-gray;
28
+ position: relative;
29
+ :after {
30
+ content: "";
31
+ position: absolute;
32
+ top: -23px;
33
+ left: 0px;
34
+ right: 0px;
35
+ height: 0px;
36
+ background: variables.$hero;
37
+ transition: height 0.3s ease;
38
+ }
39
+ &.fwe-selected {
40
+ color: variables.$hero;
41
+ cursor: default;
42
+ :after {
43
+ height: 4px;
44
+ }
45
+ }
46
+ &:active {
47
+ color: variables.$hero-active;
48
+ }
49
+ }
50
+ }
@@ -91,7 +91,8 @@
91
91
 
92
92
  &.fwe-modal--warning,
93
93
  &.fwe-modal--error {
94
- button.fwe-btn.fwe-btn-link {
94
+ button.fwe-btn.fwe-btn-link, // override for deprecated class fwe-btn-link
95
+ button.fwe-btn.fwe-btn-tertiary {
95
96
  color: variables.$text;
96
97
  }
97
98
  }
@@ -137,7 +137,7 @@
137
137
  @mixin popover-menu {
138
138
  font-size: variables.$font-size-base;
139
139
  line-height: 1.5rem;
140
- padding: 16px;
140
+ padding: 18px 16px 10px 16px;
141
141
 
142
142
  button {
143
143
  all: unset;
@@ -176,12 +176,25 @@
176
176
  }
177
177
 
178
178
  &:hover {
179
- background-color: #3333331a;
179
+ color: variables.$hero;
180
180
  }
181
181
 
182
182
  &:active {
183
183
  background-color: #33333333;
184
184
  }
185
+
186
+ &:disabled {
187
+ color: variables.$text-disabled;
188
+ cursor: default;
189
+
190
+ &:hover {
191
+ color: variables.$text-disabled;
192
+ }
193
+
194
+ &:active {
195
+ background-color: transparent;
196
+ }
197
+ }
185
198
  }
186
199
  }
187
200
 
@@ -1,7 +1,7 @@
1
1
  @use "variables";
2
2
 
3
3
  :root {
4
- --fwe-black: #000000;
4
+ --fwe-black: #333333;
5
5
  --fwe-white: #ffffff;
6
6
  --fwe-white-hover: #ededed;
7
7
  --fwe-caerul: #0091dc;
@@ -15,7 +15,7 @@
15
15
 
16
16
  --fwe-text: #333333;
17
17
  --fwe-text-light: #82868b;
18
- --fwe-text-disabled: #b9babb;
18
+ --fwe-text-disabled: #a9b0b7;
19
19
 
20
20
  --fwe-hero: #0091dc;
21
21
  --fwe-hero-hover: #0588cb;
@@ -36,12 +36,12 @@
36
36
  --fwe-orange-bg: #fbf0e1;
37
37
  --fwe-red-bg: #f7e1e1;
38
38
 
39
- --fwe-control: #d3d8dd;
39
+ --fwe-control: #dbdfe3;
40
40
  --fwe-control-hover: #c5cbd1;
41
41
  --fwe-control-active: #a9b0b7; // 80% * --fwe-gray-300 + 20% * #333333
42
42
  --fwe-control-disabled: #e2e5e8; // 64% * --fwe-gray-300 + 36% * #FFFFFF
43
43
  --fwe-control-border: #b6bec6; // OK
44
- --fwe-control-border-hover: #a9b0b7; // 90% * --fwe-gray-400 + 10% * #333333
44
+ --fwe-control-border-hover: #c5cbd1;
45
45
  --fwe-control-border-active: #9ca2a9; // 80% * --fwe-gray-400 + 20% * #333333
46
46
  --fwe-control-scrollbar: #d2d5d9; // 80% * --fwe-control-hover + 20% * #FFFFFF
47
47
 
@@ -71,7 +71,7 @@
71
71
 
72
72
  &.fwe-snackbar-warning {
73
73
  border-color: variables.$orange;
74
- background-color: variables.$orange-bg;
74
+ background-color: #ffeacc;
75
75
  span::before {
76
76
  background-color: variables.$orange;
77
77
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGcgZGF0YS1uYW1lPSJjb250ZW50Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAwaDI0djI0SDB6Ii8+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTIyLjQgMTkuODYgMTMuMjczIDIuNzQzYTEuNDQxIDEuNDQxIDAgMCAwLTIuNTQ0IDBMMS42IDE5Ljg2YTEuNDQxIDEuNDQxIDAgMCAwIDEuMjcyIDIuMTJIMjEuMTNhMS40NDEgMS40NDEgMCAwIDAgMS4yNzItMi4xMlpNMTEgN2gydjhoLTJabTIuMDA1IDExLjk2NWgtMi4wMXYtMi4wMWgyLjAxWiIvPjwvZz48L3N2Zz4=");
@@ -83,7 +83,7 @@
83
83
 
84
84
  &.fwe-snackbar-error {
85
85
  border-color: variables.$red;
86
- background-color: variables.$red-bg;
86
+ background-color: #f6cccc;
87
87
  span::before {
88
88
  background-color: variables.$red;
89
89
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PGcgZGF0YS1uYW1lPSJjb250ZW50Ij48cGF0aCBmaWxsPSJub25lIiBkPSJNMCAwaDI0djI0SDB6Ii8+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTEyIDFhMTEgMTEgMCAxIDAgMTEgMTFBMTEgMTEgMCAwIDAgMTIgMVptNS43IDE1LjItMS41IDEuNS00LjItNC4zLTQuMiA0LjMtMS41LTEuNSA0LjMtNC4yLTQuMy00LjIgMS41LTEuNSA0LjIgNC4zIDQuMi00LjMgMS41IDEuNS00LjMgNC4yWiIvPjwvZz48L3N2Zz4=");
@@ -100,7 +100,8 @@
100
100
  background: variables.$hero;
101
101
  }
102
102
 
103
- &.fwe-snackbar-b {
103
+ &.fwe-snackbar-b, // deprecated
104
+ &.fwe-snackbar-light {
104
105
  border: none;
105
106
  background-color: variables.$white;
106
107
 
@@ -113,7 +114,8 @@
113
114
  }
114
115
  }
115
116
 
116
- &.fwe-snackbar-c {
117
+ &.fwe-snackbar-c, // deprecated
118
+ &.fwe-snackbar-strong {
117
119
  border: none;
118
120
  color: variables.$white;
119
121
  background-color: variables.$hero;
@@ -207,7 +207,8 @@
207
207
  }
208
208
  }
209
209
 
210
- .fwe-btn.fwe-btn-link {
210
+ .fwe-btn.fwe-btn-link, // override for deprecated class fwe-btn-link
211
+ .fwe-btn.fwe-btn-tertiary {
211
212
  &.fwe-btn--tree-node-toggle {
212
213
  color: variables.$text;
213
214
  padding: 0 variables.$spacer-xxs 0 variables.$spacer-s;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Festo UI - Web Essentials v11.0.1 (https://storybook.festo.design/)
2
+ * Festo UI - Web Essentials v11.1.0-dev.977 (https://storybook.festo.design/)
3
3
  * Copyright 2022 Festo SE & Co. KG
4
4
  * Licensed under Apache-2.0
5
5
  */
@@ -52,7 +52,7 @@
52
52
  @use "search-input";
53
53
  @use "stepper-horizontal";
54
54
  @use "stepper-vertical";
55
- @use "bottom-navigation";
55
+ @use "mobile-tab-bar";
56
56
  @use "accordion";
57
57
  @use "tree";
58
58
  @use "sidebar-overlay";
@@ -51,7 +51,7 @@
51
51
  @use "../search-input";
52
52
  @use "../stepper-horizontal";
53
53
  @use "../stepper-vertical";
54
- @use "../bottom-navigation";
54
+ @use "../mobile-tab-bar";
55
55
  @use "../accordion";
56
56
  @use "../tree";
57
57
  @use "../sidebar-overlay";
@@ -35,7 +35,8 @@
35
35
  margin: 0;
36
36
  }
37
37
 
38
- button.fwe-btn-hero {
38
+ button.fwe-btn-hero, // override for deprecated class fwe-btn-hero
39
+ button.fwe-btn-primary {
39
40
  margin-top: 24px;
40
41
  justify-content: center;
41
42
  margin-left: 18px;
@@ -97,7 +98,8 @@
97
98
  -webkit-line-clamp: 3;
98
99
  }
99
100
 
100
- button.fwe-btn-hero {
101
+ button.fwe-btn-hero, // override for deprecated class fwe-btn-hero
102
+ button.fwe-btn-primary {
101
103
  justify-content: center;
102
104
  margin-top: 0;
103
105
  margin-left: 34px;
@@ -12,8 +12,10 @@
12
12
  overflow-x: hidden;
13
13
  overflow-y: hidden;
14
14
 
15
- .fwe-btn-link i.fwe-icon-arrows-scale-up.fwe-modal-image-gallery-scale,
16
- .fwe-btn-link i.fwe-icon-arrows-scale-down.fwe-modal-image-gallery-scale {
15
+ .fwe-btn-tertiary i.fwe-icon-arrows-scale-up.fwe-modal-image-gallery-scale,
16
+ .fwe-btn-link i.fwe-icon-arrows-scale-up.fwe-modal-image-gallery-scale, // override for deprecated class fwe-btn-link
17
+ .fwe-btn-link i.fwe-icon-arrows-scale-down.fwe-modal-image-gallery-scale, // override for deprecated class fwe-btn-link
18
+ .fwe-btn-tertiary i.fwe-icon-arrows-scale-down.fwe-modal-image-gallery-scale {
17
19
  font-size: 24px;
18
20
  margin-right: 0px;
19
21
  padding-right: 0px;
@@ -33,6 +33,12 @@
33
33
  width: 4px;
34
34
  }
35
35
  }
36
+ &.fwe-disabled,
37
+ &[aria-disabled="true"] {
38
+ color: variables.$text-disabled;
39
+ cursor: unset;
40
+ pointer-events: none;
41
+ }
36
42
  }
37
43
 
38
44
  @media (max-width: 900px) {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Festo UI - Web Essentials v11.0.1 (https://storybook.festo.design/)
2
+ * Festo UI - Web Essentials v11.1.0-dev.977 (https://storybook.festo.design/)
3
3
  * Copyright 2022 Festo SE & Co. KG
4
4
  * Licensed under Apache-2.0
5
5
  */
@@ -55,12 +55,12 @@ Small status/label indicators.
55
55
  Mobile tab bar at the bottom of the screen.
56
56
 
57
57
  ```html
58
- <div class="fwe-bottom-navigation">
59
- <button class="fwe-bottom-navigation-button fwe-selected">
58
+ <div class="fwe-mobile-tab-bar">
59
+ <button class="fwe-mobile-tab-bar-button fwe-selected">
60
60
  <i class="fwe-icon fwe-icon-menu-home"></i>
61
61
  <span>Home</span>
62
62
  </button>
63
- <button class="fwe-bottom-navigation-button">
63
+ <button class="fwe-mobile-tab-bar-button">
64
64
  <i class="fwe-icon fwe-icon-file-search"></i>
65
65
  <span>Search</span>
66
66
  </button>
@@ -132,16 +132,16 @@ Navigation breadcrumb trail.
132
132
 
133
133
  ```html
134
134
  <!-- Primary (Hero) -->
135
- <button class="fwe-btn fwe-btn-hero">Primary</button>
135
+ <button class="fwe-btn fwe-btn-primary">Primary</button>
136
136
 
137
137
  <!-- Secondary (Standard) -->
138
138
  <button class="fwe-btn">Secondary</button>
139
139
 
140
140
  <!-- Link-Style -->
141
- <button class="fwe-btn fwe-btn-link">Link</button>
141
+ <button class="fwe-btn fwe-btn-tertiary">Link</button>
142
142
 
143
143
  <!-- Dark Link -->
144
- <button class="fwe-btn fwe-btn-link fwe-dark">Dark Link</button>
144
+ <button class="fwe-btn fwe-btn-tertiary fwe-dark">Dark Link</button>
145
145
 
146
146
  <!-- Icon-Button -->
147
147
  <button class="fwe-btn fwe-btn-icon">
@@ -159,7 +159,7 @@ Navigation breadcrumb trail.
159
159
  ### Block Button
160
160
 
161
161
  ```html
162
- <button class="fwe-btn fwe-btn-hero fwe-btn-block">Full width</button>
162
+ <button class="fwe-btn fwe-btn-primary fwe-btn-block">Full width</button>
163
163
  ```
164
164
 
165
165
  ### Floating Action Button
@@ -341,7 +341,7 @@ Selectable tag/filter buttons.
341
341
  <div class="fwe-modal-footer">
342
342
  <div class="fwe-modal-buttons">
343
343
  <button class="fwe-btn">Cancel</button>
344
- <button class="fwe-btn fwe-btn-hero">OK</button>
344
+ <button class="fwe-btn fwe-btn-primary">OK</button>
345
345
  </div>
346
346
  </div>
347
347
  </div>
@@ -416,7 +416,7 @@ Dropdown menus in the navbar (profile, notifications).
416
416
 
417
417
  ```html
418
418
  <div class="fwe-button-container">
419
- <button class="fwe-btn fwe-btn-link fwe-dark">
419
+ <button class="fwe-btn fwe-btn-tertiary fwe-dark">
420
420
  <i class="fwe-icon fwe-icon-communication-notification fwe-icon-lg"></i>
421
421
  </button>
422
422
  </div>
@@ -630,10 +630,10 @@ Step states: `fwe-step-done`, `fwe-step-active`, *(empty = pending)*
630
630
  ```html
631
631
  <div class="fwe-toolbar">
632
632
  <div class="fwe-toolbar-actions">
633
- <button class="fwe-btn fwe-btn-link fwe-active">
633
+ <button class="fwe-btn fwe-btn-tertiary fwe-active">
634
634
  <i class="fwe-icon fwe-icon-list-filter fwe-icon-lg"></i>
635
635
  </button>
636
- <button class="fwe-btn fwe-btn-link fwe-dark">
636
+ <button class="fwe-btn fwe-btn-tertiary fwe-dark">
637
637
  <i class="fwe-icon fwe-icon-menu-more fwe-icon-lg"></i>
638
638
  </button>
639
639
  </div>
@@ -76,7 +76,7 @@ Minimal footer with bottom line only (without social media and columns).
76
76
  <div class="fwe-checkbox-checkmark"></div>
77
77
  <div class="fwe-checkbox-label-content">Remember me</div>
78
78
  </label>
79
- <button class="fwe-btn fwe-btn-hero fwe-btn-block">Login</button>
79
+ <button class="fwe-btn fwe-btn-primary fwe-btn-block">Login</button>
80
80
  <div class="fwe-login-link-container">
81
81
  <a class="fwe-text-link" href="#">Forgot password?</a>
82
82
  </div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@festo-ui/web-essentials",
3
- "version": "11.0.1",
3
+ "version": "11.1.0-dev.977",
4
4
  "description": "CSS framework and utils to build FESTO web applications",
5
5
  "keywords": [
6
6
  "css",
@@ -46,12 +46,12 @@
46
46
 
47
47
  &::after {
48
48
  position: absolute;
49
- top: 21px;
49
+ top: 23px;
50
50
  right: 16px;
51
51
  pointer-events: none;
52
52
  content: "";
53
- height: 32px;
54
- width: 32px;
53
+ height: 24px;
54
+ width: 24px;
55
55
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgzMnYzMkgweiIvPjxwYXRoIGZpbGw9IiMzMzMiIGQ9Im0xNiAyMi04LjcwNy04LjcwNyAxLjQxNC0xLjQxNEwxNiAxOS4xNzJsNy4yOTMtNy4yOTMgMS40MTQgMS40MTRMMTYgMjJ6IiAvPjwvc3ZnPg==");
56
56
  transition: transform 0.2s ease;
57
57
  }
package/scss/_badge.scss CHANGED
@@ -2,43 +2,36 @@
2
2
 
3
3
  .fwe-badge {
4
4
  display: inline-block;
5
- border-radius: 2px;
6
- font-size: variables.$font-size-md;
7
- padding-left: 6px;
8
- padding-right: 6px;
9
5
  color: variables.$white;
10
- max-height: 19px;
11
- height: 19px;
12
- line-height: 17px;
13
6
  background-color: variables.$hero;
7
+ border-radius: 2px;
8
+ max-height: 18px;
9
+ height: 18px;
10
+ line-height: 18px;
11
+ padding: 0 4px;
14
12
  font-weight: variables.$font-weight-bold;
13
+ font-size: variables.$font-size-md;
15
14
 
16
15
  &.fwe-badge-sm {
17
16
  font-size: variables.$font-size-small;
18
- max-height: 17px;
19
- height: 17px;
20
- line-height: 16px;
17
+ max-height: 18px;
18
+ height: 18px;
19
+ line-height: 18px;
21
20
  }
22
21
 
23
- &.fwe-badge-md {
22
+ &.fwe-badge-md, // deprecated
23
+ &.fwe-badge-lg {
24
24
  font-size: variables.$font-size-base;
25
25
  max-height: 22px;
26
26
  height: 22px;
27
- line-height: 20px;
28
- }
29
-
30
- &.fwe-badge-lg {
31
- font-size: variables.$font-size-xl;
32
- max-height: 32px;
33
- height: 32px;
34
- line-height: 30px;
27
+ line-height: 22px;
35
28
  }
36
29
 
37
30
  &.fwe-badge-xl {
38
- font-size: variables.$font-size-xxl;
39
- max-height: 44px;
40
- height: 44px;
41
- line-height: 42px;
31
+ font-size: variables.$font-size-xl;
32
+ max-height: 34px;
33
+ height: 34px;
34
+ line-height: 34px;
42
35
  }
43
36
  }
44
37
 
package/scss/_button.scss CHANGED
@@ -44,7 +44,8 @@ button.fwe-btn {
44
44
  color: variables.$text-disabled;
45
45
  }
46
46
 
47
- &.fwe-btn-hero {
47
+ &.fwe-btn-hero, // deprecated
48
+ &.fwe-btn-primary {
48
49
  color: variables.$white;
49
50
  background: variables.$hero;
50
51
 
@@ -68,7 +69,8 @@ button.fwe-btn {
68
69
  width: 100%;
69
70
  }
70
71
 
71
- &.fwe-btn-link {
72
+ &.fwe-btn-link, // deprecated
73
+ &.fwe-btn-tertiary {
72
74
  background: none;
73
75
  color: variables.$hero;
74
76
  padding: 0;
package/scss/_list.scss CHANGED
@@ -100,7 +100,7 @@ ul.fwe-list-group {
100
100
  color: variables.$text;
101
101
 
102
102
  &:not(.fwe-disabled):hover {
103
- background-color: variables.$sucanul;
103
+ background-color: variables.$background;
104
104
  .fwe-list-group-item-body,
105
105
  .fwe-list-group-item-footer {
106
106
  color: variables.$text;
@@ -118,7 +118,7 @@ ul.fwe-list-group {
118
118
 
119
119
  &:not(.fwe-disabled):hover {
120
120
  color: variables.$hero;
121
- background-color: variables.$sucanul;
121
+ background-color: variables.$background;
122
122
  }
123
123
  }
124
124
 
@@ -191,9 +191,15 @@ ul.fwe-list-group {
191
191
  button.fwe-list-group-item {
192
192
  width: auto;
193
193
 
194
+ &:not(.fwe-disabled):hover {
195
+ background-color: variables.$background;
196
+ }
197
+ }
198
+
199
+ button.fwe-list-group-item {
194
200
  &:not(.fwe-disabled):hover {
195
201
  color: variables.$hero;
196
- background-color: unset;
202
+ background-color: variables.$background;
197
203
  }
198
204
  }
199
205
  }
@@ -1,47 +1,50 @@
1
- @use "variables";
2
-
3
- .fwe-bottom-navigation {
4
- width: 100%;
5
- display: flex;
6
- background: variables.$white;
7
- align-items: flex-start;
8
- justify-content: space-around;
9
- border-top: 1px solid variables.$border;
10
- height: 84px;
11
- padding: 22px 16px;
12
- .fwe-bottom-navigation-button {
13
- cursor: pointer;
14
- -webkit-user-select: none;
15
- user-select: none;
16
- .fwe-icon {
17
- line-height: 0px;
18
- }
19
- display: flex;
20
- align-items: center;
21
- background: none;
22
- border: none;
23
- outline: none;
24
- color: variables.$hero-gray;
25
- position: relative;
26
- :after {
27
- content: "";
28
- position: absolute;
29
- top: -23px;
30
- left: 0px;
31
- right: 0px;
32
- height: 0px;
33
- background: variables.$hero;
34
- transition: height 0.3s ease;
35
- }
36
- &.fwe-selected {
37
- color: variables.$hero;
38
- cursor: default;
39
- :after {
40
- height: 4px;
41
- }
42
- }
43
- &:active {
44
- color: variables.$hero-active;
45
- }
46
- }
47
- }
1
+ @use "variables";
2
+
3
+ .fwe-bottom-navigation, // deprecated
4
+ .fwe-mobile-tab-bar {
5
+ width: 100%;
6
+ display: flex;
7
+ background: variables.$white;
8
+ align-items: flex-start;
9
+ justify-content: space-around;
10
+ border-top: 1px solid variables.$border;
11
+ height: 84px;
12
+ padding: 22px 16px;
13
+
14
+ .fwe-bottom-navigation-button, // deprecated
15
+ .fwe-mobile-tab-bar-button {
16
+ cursor: pointer;
17
+ -webkit-user-select: none;
18
+ user-select: none;
19
+ .fwe-icon {
20
+ line-height: 0px;
21
+ }
22
+ display: flex;
23
+ align-items: center;
24
+ background: none;
25
+ border: none;
26
+ outline: none;
27
+ color: variables.$hero-gray;
28
+ position: relative;
29
+ :after {
30
+ content: "";
31
+ position: absolute;
32
+ top: -23px;
33
+ left: 0px;
34
+ right: 0px;
35
+ height: 0px;
36
+ background: variables.$hero;
37
+ transition: height 0.3s ease;
38
+ }
39
+ &.fwe-selected {
40
+ color: variables.$hero;
41
+ cursor: default;
42
+ :after {
43
+ height: 4px;
44
+ }
45
+ }
46
+ &:active {
47
+ color: variables.$hero-active;
48
+ }
49
+ }
50
+ }
package/scss/_modal.scss CHANGED
@@ -91,7 +91,8 @@
91
91
 
92
92
  &.fwe-modal--warning,
93
93
  &.fwe-modal--error {
94
- button.fwe-btn.fwe-btn-link {
94
+ button.fwe-btn.fwe-btn-link, // override for deprecated class fwe-btn-link
95
+ button.fwe-btn.fwe-btn-tertiary {
95
96
  color: variables.$text;
96
97
  }
97
98
  }