@festo-ui/web-essentials 4.0.3-pre-20221124.8 → 5.0.0-dev.102
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/README.md +73 -73
- package/dist/css/festo-web-essentials.css +621 -3333
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +3 -3
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/fonts/festo_icons-16.woff2 +0 -0
- package/dist/css/fonts/festo_icons-24.woff2 +0 -0
- package/dist/css/fonts/festo_icons-32.woff2 +0 -0
- package/dist/css/organisms/festo-web-essentials-organisms.css +11 -16
- 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 +3 -18
- package/dist/css/themes/flatpickr/festo.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +2 -2
- package/dist/css/themes/flatpickr/festo.min.css.map +1 -1
- package/dist/fonts/festo_icons-16.woff2 +0 -0
- package/dist/fonts/festo_icons-24.woff2 +0 -0
- package/dist/fonts/festo_icons-32.woff2 +0 -0
- package/dist/scss/_breadcrumb.scss +37 -37
- package/dist/scss/_button.scss +128 -128
- package/dist/scss/_cards.scss +98 -98
- package/dist/scss/_checkbox.scss +153 -153
- package/dist/scss/_chips.scss +145 -145
- package/dist/scss/_fonts.scss +59 -59
- package/dist/scss/_icons.scss +1524 -1446
- package/dist/scss/_loading-indicator.scss +176 -176
- package/dist/scss/_mixins.scss +2 -2
- package/dist/scss/_mobile-flyout.scss +108 -108
- package/dist/scss/_modal.scss +9 -8
- package/dist/scss/_navbar-menu.scss +351 -351
- package/dist/scss/_navbar.scss +258 -258
- package/dist/scss/_popover.scss +201 -201
- package/dist/scss/_progressbar.scss +67 -67
- package/dist/scss/_radio.scss +152 -152
- package/dist/scss/_root.scss +111 -111
- package/dist/scss/_search-input.scss +92 -92
- package/dist/scss/_select.scss +95 -95
- package/dist/scss/_stepper-horizontal.scss +127 -127
- package/dist/scss/_stepper-vertical.scss +121 -121
- package/dist/scss/_table.scss +150 -150
- package/dist/scss/_timepicker.scss +68 -68
- package/dist/scss/_tree.scss +211 -211
- package/dist/scss/_variables.scss +252 -252
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/fonts/festo_icons-16.woff2 +0 -0
- package/dist/scss/fonts/festo_icons-24.woff2 +0 -0
- package/dist/scss/fonts/festo_icons-32.woff2 +0 -0
- package/dist/scss/organisms/_footer.scss +142 -142
- package/dist/scss/organisms/_header-slider.scss +153 -153
- package/dist/scss/organisms/_image-gallery.scss +257 -257
- package/dist/scss/organisms/_login.scss +59 -57
- package/dist/scss/organisms/_side-menu.scss +54 -54
- package/dist/scss/organisms/festo-web-essentials-organisms.scss +15 -15
- package/dist/scss/themes/flatpickr/festo.scss +834 -834
- package/package.json +88 -9
- package/scss/_breadcrumb.scss +37 -37
- package/scss/_button.scss +128 -128
- package/scss/_cards.scss +98 -98
- package/scss/_checkbox.scss +153 -153
- package/scss/_chips.scss +145 -145
- package/scss/_fonts.scss +59 -59
- package/scss/_icons.scss +1524 -1446
- package/scss/_loading-indicator.scss +176 -176
- package/scss/_mixins.scss +2 -2
- package/scss/_mobile-flyout.scss +108 -108
- package/scss/_modal.scss +9 -8
- package/scss/_navbar-menu.scss +351 -351
- package/scss/_navbar.scss +258 -258
- package/scss/_popover.scss +201 -201
- package/scss/_progressbar.scss +67 -67
- package/scss/_radio.scss +152 -152
- package/scss/_root.scss +111 -111
- package/scss/_search-input.scss +92 -92
- package/scss/_select.scss +95 -95
- package/scss/_stepper-horizontal.scss +127 -127
- package/scss/_stepper-vertical.scss +121 -121
- package/scss/_table.scss +150 -150
- package/scss/_timepicker.scss +68 -68
- package/scss/_tree.scss +211 -211
- package/scss/_variables.scss +252 -252
- package/scss/festo-web-essentials.scss +1 -1
- package/scss/organisms/_footer.scss +142 -142
- package/scss/organisms/_header-slider.scss +153 -153
- package/scss/organisms/_image-gallery.scss +257 -257
- package/scss/organisms/_login.scss +59 -57
- package/scss/organisms/_side-menu.scss +54 -54
- package/scss/organisms/festo-web-essentials-organisms.scss +15 -15
- package/scss/themes/flatpickr/festo.scss +834 -834
package/scss/_popover.scss
CHANGED
|
@@ -1,201 +1,201 @@
|
|
|
1
|
-
%triangle-base {
|
|
2
|
-
width: 17px;
|
|
3
|
-
height: 17px;
|
|
4
|
-
position: absolute;
|
|
5
|
-
overflow: hidden;
|
|
6
|
-
&::after {
|
|
7
|
-
content: "";
|
|
8
|
-
position: absolute;
|
|
9
|
-
width: 12px;
|
|
10
|
-
height: 12px;
|
|
11
|
-
background: $white;
|
|
12
|
-
transform: rotate(45deg);
|
|
13
|
-
box-shadow: 0px 1px 4px #33333333;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@mixin triangle-bottom {
|
|
18
|
-
@extend %triangle-base;
|
|
19
|
-
left: 50%;
|
|
20
|
-
top: 100%;
|
|
21
|
-
transform: translateX(-8px);
|
|
22
|
-
&::after {
|
|
23
|
-
top: -6px;
|
|
24
|
-
left: 3px;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
@mixin triangle-top {
|
|
29
|
-
@extend %triangle-base;
|
|
30
|
-
left: 50%;
|
|
31
|
-
top: -17px;
|
|
32
|
-
transform: translateX(-8px);
|
|
33
|
-
&::after {
|
|
34
|
-
top: 11px;
|
|
35
|
-
left: 3px;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
@mixin triangle-left {
|
|
40
|
-
@extend %triangle-base;
|
|
41
|
-
left: -17px;
|
|
42
|
-
top: 50%;
|
|
43
|
-
transform: translateY(-8px);
|
|
44
|
-
&::after {
|
|
45
|
-
top: 2px;
|
|
46
|
-
left: 11px;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
@mixin triangle-left-top {
|
|
51
|
-
@extend %triangle-base;
|
|
52
|
-
left: -17px;
|
|
53
|
-
top: 32px;
|
|
54
|
-
transform: translateY(-8px);
|
|
55
|
-
&::after {
|
|
56
|
-
top: 2px;
|
|
57
|
-
left: 11px;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
@mixin triangle-right {
|
|
62
|
-
@extend %triangle-base;
|
|
63
|
-
left: 100%;
|
|
64
|
-
top: 50%;
|
|
65
|
-
transform: translateY(-8px);
|
|
66
|
-
&::after {
|
|
67
|
-
top: 2px;
|
|
68
|
-
left: -6px;
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
@mixin triangle-right-top {
|
|
73
|
-
@extend %triangle-base;
|
|
74
|
-
left: 100%;
|
|
75
|
-
top: 32px;
|
|
76
|
-
transform: translateY(-8px);
|
|
77
|
-
&::after {
|
|
78
|
-
top: 2px;
|
|
79
|
-
left: -6px;
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
%popover-base {
|
|
84
|
-
background-color: $white;
|
|
85
|
-
box-shadow: 0px 1px 4px #33333333;
|
|
86
|
-
border-radius: $control-border-radius;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.fwe-popover {
|
|
90
|
-
@extend %popover-base;
|
|
91
|
-
padding: $spacer * 0.5;
|
|
92
|
-
font-size: $font-size-md;
|
|
93
|
-
line-height: 1rem;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.fwe-popover-container {
|
|
97
|
-
position: relative;
|
|
98
|
-
display: inline-block;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
@mixin popover-menu {
|
|
102
|
-
@extend %popover-base;
|
|
103
|
-
font-size: $font-size-base;
|
|
104
|
-
line-height: 1.5rem;
|
|
105
|
-
padding: $spacer;
|
|
106
|
-
.fwe-list-group {
|
|
107
|
-
.fwe-list-group-item {
|
|
108
|
-
border-bottom: none;
|
|
109
|
-
min-height: $spacer * 2.25;
|
|
110
|
-
padding: 0;
|
|
111
|
-
button {
|
|
112
|
-
width: 100%;
|
|
113
|
-
margin-left: inherit;
|
|
114
|
-
padding: 0 ($spacer * 0.5) 0 0;
|
|
115
|
-
text-align: left;
|
|
116
|
-
height: $spacer * 2;
|
|
117
|
-
max-height: $spacer * 2;
|
|
118
|
-
display: inline-flex;
|
|
119
|
-
justify-content: unset;
|
|
120
|
-
&:hover {
|
|
121
|
-
color: $black;
|
|
122
|
-
}
|
|
123
|
-
i {
|
|
124
|
-
display: inline-flex;
|
|
125
|
-
align-items: center;
|
|
126
|
-
justify-content: center;
|
|
127
|
-
flex-wrap: nowrap;
|
|
128
|
-
height: $spacer * 1.5;
|
|
129
|
-
width: $spacer * 2;
|
|
130
|
-
&::before {
|
|
131
|
-
display: inline-flex;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
span {
|
|
135
|
-
display: inline-flex;
|
|
136
|
-
height: $spacer * 1.5;
|
|
137
|
-
}
|
|
138
|
-
[class*=" fwe-icon-"] {
|
|
139
|
-
margin-left: inherit;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
|
-
&:hover {
|
|
143
|
-
color: $black;
|
|
144
|
-
background-color: #3333331a;
|
|
145
|
-
}
|
|
146
|
-
&:active {
|
|
147
|
-
background-color: #33333333;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
@mixin popover-legend {
|
|
154
|
-
display: table;
|
|
155
|
-
margin: $spacer;
|
|
156
|
-
line-height: $spacer * 1.5;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
@mixin popover-legend-content {
|
|
160
|
-
display: table-row;
|
|
161
|
-
dt {
|
|
162
|
-
display: table-cell;
|
|
163
|
-
margin: 0;
|
|
164
|
-
padding-right: $spacer * 0.5;
|
|
165
|
-
}
|
|
166
|
-
dd {
|
|
167
|
-
display: table-cell;
|
|
168
|
-
margin: 0;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.fwe-triangle {
|
|
173
|
-
&.fwe-triangle-top {
|
|
174
|
-
@include triangle-top();
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
&.fwe-triangle-bottom {
|
|
178
|
-
@include triangle-bottom();
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
&.fwe-triangle-left {
|
|
182
|
-
@include triangle-left();
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
&.fwe-triangle-right {
|
|
186
|
-
@include triangle-right();
|
|
187
|
-
}
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
.fwe-popover {
|
|
191
|
-
&.fwe-popover-menu {
|
|
192
|
-
@include popover-menu();
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
.fwe-popover-legend {
|
|
196
|
-
@include popover-legend();
|
|
197
|
-
.fwe-popover-legend-content {
|
|
198
|
-
@include popover-legend-content();
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
}
|
|
1
|
+
%triangle-base {
|
|
2
|
+
width: 17px;
|
|
3
|
+
height: 17px;
|
|
4
|
+
position: absolute;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
&::after {
|
|
7
|
+
content: "";
|
|
8
|
+
position: absolute;
|
|
9
|
+
width: 12px;
|
|
10
|
+
height: 12px;
|
|
11
|
+
background: $white;
|
|
12
|
+
transform: rotate(45deg);
|
|
13
|
+
box-shadow: 0px 1px 4px #33333333;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@mixin triangle-bottom {
|
|
18
|
+
@extend %triangle-base;
|
|
19
|
+
left: 50%;
|
|
20
|
+
top: 100%;
|
|
21
|
+
transform: translateX(-8px);
|
|
22
|
+
&::after {
|
|
23
|
+
top: -6px;
|
|
24
|
+
left: 3px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@mixin triangle-top {
|
|
29
|
+
@extend %triangle-base;
|
|
30
|
+
left: 50%;
|
|
31
|
+
top: -17px;
|
|
32
|
+
transform: translateX(-8px);
|
|
33
|
+
&::after {
|
|
34
|
+
top: 11px;
|
|
35
|
+
left: 3px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@mixin triangle-left {
|
|
40
|
+
@extend %triangle-base;
|
|
41
|
+
left: -17px;
|
|
42
|
+
top: 50%;
|
|
43
|
+
transform: translateY(-8px);
|
|
44
|
+
&::after {
|
|
45
|
+
top: 2px;
|
|
46
|
+
left: 11px;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@mixin triangle-left-top {
|
|
51
|
+
@extend %triangle-base;
|
|
52
|
+
left: -17px;
|
|
53
|
+
top: 32px;
|
|
54
|
+
transform: translateY(-8px);
|
|
55
|
+
&::after {
|
|
56
|
+
top: 2px;
|
|
57
|
+
left: 11px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@mixin triangle-right {
|
|
62
|
+
@extend %triangle-base;
|
|
63
|
+
left: 100%;
|
|
64
|
+
top: 50%;
|
|
65
|
+
transform: translateY(-8px);
|
|
66
|
+
&::after {
|
|
67
|
+
top: 2px;
|
|
68
|
+
left: -6px;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
@mixin triangle-right-top {
|
|
73
|
+
@extend %triangle-base;
|
|
74
|
+
left: 100%;
|
|
75
|
+
top: 32px;
|
|
76
|
+
transform: translateY(-8px);
|
|
77
|
+
&::after {
|
|
78
|
+
top: 2px;
|
|
79
|
+
left: -6px;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
%popover-base {
|
|
84
|
+
background-color: $white;
|
|
85
|
+
box-shadow: 0px 1px 4px #33333333;
|
|
86
|
+
border-radius: $control-border-radius;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.fwe-popover {
|
|
90
|
+
@extend %popover-base;
|
|
91
|
+
padding: $spacer * 0.5;
|
|
92
|
+
font-size: $font-size-md;
|
|
93
|
+
line-height: 1rem;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.fwe-popover-container {
|
|
97
|
+
position: relative;
|
|
98
|
+
display: inline-block;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
@mixin popover-menu {
|
|
102
|
+
@extend %popover-base;
|
|
103
|
+
font-size: $font-size-base;
|
|
104
|
+
line-height: 1.5rem;
|
|
105
|
+
padding: $spacer;
|
|
106
|
+
.fwe-list-group {
|
|
107
|
+
.fwe-list-group-item {
|
|
108
|
+
border-bottom: none;
|
|
109
|
+
min-height: $spacer * 2.25;
|
|
110
|
+
padding: 0;
|
|
111
|
+
button {
|
|
112
|
+
width: 100%;
|
|
113
|
+
margin-left: inherit;
|
|
114
|
+
padding: 0 ($spacer * 0.5) 0 0;
|
|
115
|
+
text-align: left;
|
|
116
|
+
height: $spacer * 2;
|
|
117
|
+
max-height: $spacer * 2;
|
|
118
|
+
display: inline-flex;
|
|
119
|
+
justify-content: unset;
|
|
120
|
+
&:hover {
|
|
121
|
+
color: $black;
|
|
122
|
+
}
|
|
123
|
+
i {
|
|
124
|
+
display: inline-flex;
|
|
125
|
+
align-items: center;
|
|
126
|
+
justify-content: center;
|
|
127
|
+
flex-wrap: nowrap;
|
|
128
|
+
height: $spacer * 1.5;
|
|
129
|
+
width: $spacer * 2;
|
|
130
|
+
&::before {
|
|
131
|
+
display: inline-flex;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
span {
|
|
135
|
+
display: inline-flex;
|
|
136
|
+
height: $spacer * 1.5;
|
|
137
|
+
}
|
|
138
|
+
[class*=" fwe-icon-"] {
|
|
139
|
+
margin-left: inherit;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
&:hover {
|
|
143
|
+
color: $black;
|
|
144
|
+
background-color: #3333331a;
|
|
145
|
+
}
|
|
146
|
+
&:active {
|
|
147
|
+
background-color: #33333333;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
@mixin popover-legend {
|
|
154
|
+
display: table;
|
|
155
|
+
margin: $spacer;
|
|
156
|
+
line-height: $spacer * 1.5;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
@mixin popover-legend-content {
|
|
160
|
+
display: table-row;
|
|
161
|
+
dt {
|
|
162
|
+
display: table-cell;
|
|
163
|
+
margin: 0;
|
|
164
|
+
padding-right: $spacer * 0.5;
|
|
165
|
+
}
|
|
166
|
+
dd {
|
|
167
|
+
display: table-cell;
|
|
168
|
+
margin: 0;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.fwe-triangle {
|
|
173
|
+
&.fwe-triangle-top {
|
|
174
|
+
@include triangle-top();
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
&.fwe-triangle-bottom {
|
|
178
|
+
@include triangle-bottom();
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
&.fwe-triangle-left {
|
|
182
|
+
@include triangle-left();
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
&.fwe-triangle-right {
|
|
186
|
+
@include triangle-right();
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.fwe-popover {
|
|
191
|
+
&.fwe-popover-menu {
|
|
192
|
+
@include popover-menu();
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.fwe-popover-legend {
|
|
196
|
+
@include popover-legend();
|
|
197
|
+
.fwe-popover-legend-content {
|
|
198
|
+
@include popover-legend-content();
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
package/scss/_progressbar.scss
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
.fwe-progress {
|
|
2
|
-
display: flex;
|
|
3
|
-
height: 8px;
|
|
4
|
-
background-color: $control;
|
|
5
|
-
border-radius: $border-radius-m;
|
|
6
|
-
overflow: hidden;
|
|
7
|
-
|
|
8
|
-
.fwe-progress-bar {
|
|
9
|
-
display: flex;
|
|
10
|
-
flex-direction: column;
|
|
11
|
-
justify-content: center;
|
|
12
|
-
overflow: hidden;
|
|
13
|
-
transition: width 0.6s ease;
|
|
14
|
-
background-color: $hero;
|
|
15
|
-
border-radius: $border-radius-m;
|
|
16
|
-
box-shadow: 4px 0px 0px 0px $white;
|
|
17
|
-
|
|
18
|
-
&.fwe-progress-bar-black {
|
|
19
|
-
box-shadow: 4px 0px 0px 0px $black;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&.fwe-progress-bar-background {
|
|
23
|
-
box-shadow: 4px 0px 0px 0px $background;
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
fieldset.fwe-progress-container {
|
|
29
|
-
padding: 0;
|
|
30
|
-
margin: 0;
|
|
31
|
-
border: none;
|
|
32
|
-
padding-left: 20px;
|
|
33
|
-
padding-right: 20px;
|
|
34
|
-
|
|
35
|
-
legend {
|
|
36
|
-
padding: 0;
|
|
37
|
-
padding-top: 16px;
|
|
38
|
-
padding-bottom: 8px;
|
|
39
|
-
padding-left: 4px;
|
|
40
|
-
padding-right: 0px;
|
|
41
|
-
height: 18px;
|
|
42
|
-
line-height: 18px;
|
|
43
|
-
font-size: $font-size-small;
|
|
44
|
-
font-weight: $font-weight-bold;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
p {
|
|
48
|
-
padding: 0;
|
|
49
|
-
margin: 0;
|
|
50
|
-
padding-top: 8px;
|
|
51
|
-
padding-bottom: 8px;
|
|
52
|
-
padding-left: 4px;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
label {
|
|
56
|
-
padding: 0;
|
|
57
|
-
margin: 0;
|
|
58
|
-
padding-top: 8px;
|
|
59
|
-
padding-bottom: 16px;
|
|
60
|
-
padding-left: 4px;
|
|
61
|
-
height: 18px;
|
|
62
|
-
line-height: 18px;
|
|
63
|
-
font-size: $font-size-small;
|
|
64
|
-
font-weight: $font-weight-bold;
|
|
65
|
-
color: $hero;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
1
|
+
.fwe-progress {
|
|
2
|
+
display: flex;
|
|
3
|
+
height: 8px;
|
|
4
|
+
background-color: $control;
|
|
5
|
+
border-radius: $border-radius-m;
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
|
|
8
|
+
.fwe-progress-bar {
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: column;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
transition: width 0.6s ease;
|
|
14
|
+
background-color: $hero;
|
|
15
|
+
border-radius: $border-radius-m;
|
|
16
|
+
box-shadow: 4px 0px 0px 0px $white;
|
|
17
|
+
|
|
18
|
+
&.fwe-progress-bar-black {
|
|
19
|
+
box-shadow: 4px 0px 0px 0px $black;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.fwe-progress-bar-background {
|
|
23
|
+
box-shadow: 4px 0px 0px 0px $background;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
fieldset.fwe-progress-container {
|
|
29
|
+
padding: 0;
|
|
30
|
+
margin: 0;
|
|
31
|
+
border: none;
|
|
32
|
+
padding-left: 20px;
|
|
33
|
+
padding-right: 20px;
|
|
34
|
+
|
|
35
|
+
legend {
|
|
36
|
+
padding: 0;
|
|
37
|
+
padding-top: 16px;
|
|
38
|
+
padding-bottom: 8px;
|
|
39
|
+
padding-left: 4px;
|
|
40
|
+
padding-right: 0px;
|
|
41
|
+
height: 18px;
|
|
42
|
+
line-height: 18px;
|
|
43
|
+
font-size: $font-size-small;
|
|
44
|
+
font-weight: $font-weight-bold;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
p {
|
|
48
|
+
padding: 0;
|
|
49
|
+
margin: 0;
|
|
50
|
+
padding-top: 8px;
|
|
51
|
+
padding-bottom: 8px;
|
|
52
|
+
padding-left: 4px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
label {
|
|
56
|
+
padding: 0;
|
|
57
|
+
margin: 0;
|
|
58
|
+
padding-top: 8px;
|
|
59
|
+
padding-bottom: 16px;
|
|
60
|
+
padding-left: 4px;
|
|
61
|
+
height: 18px;
|
|
62
|
+
line-height: 18px;
|
|
63
|
+
font-size: $font-size-small;
|
|
64
|
+
font-weight: $font-weight-bold;
|
|
65
|
+
color: $hero;
|
|
66
|
+
}
|
|
67
|
+
}
|