@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.
- package/dist/css/festo-web-essentials.css +130 -85
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +17 -17
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +121 -76
- package/dist/css/light/festo-web-essentials-light.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.css +12 -3
- package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.min.css +2 -2
- package/dist/css/organisms/festo-web-essentials-organisms.min.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/scss/_accordion.scss +3 -3
- package/dist/scss/_badge.scss +16 -23
- package/dist/scss/_button.scss +4 -2
- package/dist/scss/_list.scss +9 -3
- package/dist/scss/{_bottom-navigation.scss → _mobile-tab-bar.scss} +50 -47
- package/dist/scss/_modal.scss +2 -1
- package/dist/scss/_popover.scss +15 -2
- package/dist/scss/_root.scss +4 -4
- package/dist/scss/_snackbar.scss +6 -4
- package/dist/scss/_tree.scss +2 -1
- package/dist/scss/festo-web-essentials.scss +2 -2
- package/dist/scss/light/festo-web-essentials-light.scss +1 -1
- package/dist/scss/organisms/_header-slider.scss +4 -2
- package/dist/scss/organisms/_image-gallery.scss +4 -2
- package/dist/scss/organisms/_side-menu.scss +6 -0
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/llm-doc/components.md +11 -11
- package/llm-doc/organisms.md +1 -1
- package/package.json +1 -1
- package/scss/_accordion.scss +3 -3
- package/scss/_badge.scss +16 -23
- package/scss/_button.scss +4 -2
- package/scss/_list.scss +9 -3
- package/scss/{_bottom-navigation.scss → _mobile-tab-bar.scss} +50 -47
- package/scss/_modal.scss +2 -1
- package/scss/_popover.scss +15 -2
- package/scss/_root.scss +4 -4
- package/scss/_snackbar.scss +6 -4
- package/scss/_tree.scss +2 -1
- package/scss/festo-web-essentials.scss +1 -1
- package/scss/light/festo-web-essentials-light.scss +1 -1
- package/scss/organisms/_header-slider.scss +4 -2
- package/scss/organisms/_image-gallery.scss +4 -2
- package/scss/organisms/_side-menu.scss +6 -0
|
@@ -1,47 +1,50 @@
|
|
|
1
|
-
@use "variables";
|
|
2
|
-
|
|
3
|
-
.fwe-bottom-navigation
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
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/dist/scss/_modal.scss
CHANGED
package/dist/scss/_popover.scss
CHANGED
|
@@ -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
|
-
|
|
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
|
|
package/dist/scss/_root.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@use "variables";
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
|
-
--fwe-black: #
|
|
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: #
|
|
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: #
|
|
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: #
|
|
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
|
|
package/dist/scss/_snackbar.scss
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
|
|
72
72
|
&.fwe-snackbar-warning {
|
|
73
73
|
border-color: variables.$orange;
|
|
74
|
-
background-color:
|
|
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:
|
|
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;
|
package/dist/scss/_tree.scss
CHANGED
|
@@ -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.
|
|
2
|
+
* Festo UI - Web Essentials v11.1.0-dev.978 (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 "
|
|
55
|
+
@use "mobile-tab-bar";
|
|
56
56
|
@use "accordion";
|
|
57
57
|
@use "tree";
|
|
58
58
|
@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-
|
|
16
|
-
.fwe-btn-link i.fwe-icon-arrows-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;
|
package/llm-doc/components.md
CHANGED
|
@@ -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-
|
|
59
|
-
<button class="fwe-
|
|
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-
|
|
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-
|
|
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-
|
|
141
|
+
<button class="fwe-btn fwe-btn-tertiary">Link</button>
|
|
142
142
|
|
|
143
143
|
<!-- Dark Link -->
|
|
144
|
-
<button class="fwe-btn fwe-btn-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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>
|
package/llm-doc/organisms.md
CHANGED
|
@@ -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-
|
|
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
package/scss/_accordion.scss
CHANGED
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
|
|
47
47
|
&::after {
|
|
48
48
|
position: absolute;
|
|
49
|
-
top:
|
|
49
|
+
top: 23px;
|
|
50
50
|
right: 16px;
|
|
51
51
|
pointer-events: none;
|
|
52
52
|
content: "";
|
|
53
|
-
height:
|
|
54
|
-
width:
|
|
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:
|
|
19
|
-
height:
|
|
20
|
-
line-height:
|
|
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:
|
|
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-
|
|
39
|
-
max-height:
|
|
40
|
-
height:
|
|
41
|
-
line-height:
|
|
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.$
|
|
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.$
|
|
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:
|
|
202
|
+
background-color: variables.$background;
|
|
197
203
|
}
|
|
198
204
|
}
|
|
199
205
|
}
|
|
@@ -1,47 +1,50 @@
|
|
|
1
|
-
@use "variables";
|
|
2
|
-
|
|
3
|
-
.fwe-bottom-navigation
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
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