@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/_radio.scss
CHANGED
|
@@ -1,152 +1,152 @@
|
|
|
1
|
-
$defaultHeight: 16px;
|
|
2
|
-
$defaultWidth: 16px;
|
|
3
|
-
$lgHeight: 24px;
|
|
4
|
-
$lgWidth: 24px;
|
|
5
|
-
|
|
6
|
-
%label-before {
|
|
7
|
-
flex-direction: row-reverse;
|
|
8
|
-
justify-content: flex-end;
|
|
9
|
-
|
|
10
|
-
.fwe-radio-label-content {
|
|
11
|
-
margin-left: 0px;
|
|
12
|
-
margin-right: 8px;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
%label-below {
|
|
17
|
-
flex-direction: column;
|
|
18
|
-
|
|
19
|
-
.fwe-radio-label-content {
|
|
20
|
-
margin: 8px 0px 0px 0px;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.fwe-radio-group {
|
|
25
|
-
&.fwe-radio-lg {
|
|
26
|
-
label.fwe-radio {
|
|
27
|
-
.fwe-radio-checkmark {
|
|
28
|
-
height: $lgHeight;
|
|
29
|
-
width: $lgWidth;
|
|
30
|
-
|
|
31
|
-
&:after {
|
|
32
|
-
height: $lgHeight;
|
|
33
|
-
width: $lgWidth;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
&.fwe-radio-label-before {
|
|
40
|
-
label.fwe-radio {
|
|
41
|
-
@extend %label-before;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
&.fwe-radio-label-below {
|
|
46
|
-
label.fwe-radio {
|
|
47
|
-
@extend %label-below;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
label.fwe-radio {
|
|
53
|
-
cursor: pointer;
|
|
54
|
-
display: flex;
|
|
55
|
-
align-items: center;
|
|
56
|
-
white-space: nowrap;
|
|
57
|
-
vertical-align: middle;
|
|
58
|
-
user-select: none;
|
|
59
|
-
|
|
60
|
-
.fwe-radio-checkmark {
|
|
61
|
-
box-sizing: border-box;
|
|
62
|
-
position: relative;
|
|
63
|
-
height: $defaultHeight;
|
|
64
|
-
width: $defaultWidth;
|
|
65
|
-
border: 1px solid $control-border;
|
|
66
|
-
background-color: $white;
|
|
67
|
-
border-radius: 50%;
|
|
68
|
-
|
|
69
|
-
&:after {
|
|
70
|
-
content: "";
|
|
71
|
-
position: absolute;
|
|
72
|
-
box-sizing: border-box;
|
|
73
|
-
border-radius: 50%;
|
|
74
|
-
background-color: $white;
|
|
75
|
-
position: absolute;
|
|
76
|
-
left: -1px;
|
|
77
|
-
top: -1px;
|
|
78
|
-
height: $defaultHeight;
|
|
79
|
-
width: $defaultWidth;
|
|
80
|
-
transition: transform ease-out 0.3s, background-color ease-out 0.3s;
|
|
81
|
-
transform: scale(0.001);
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
&.fwe-radio-lg {
|
|
86
|
-
.fwe-radio-checkmark {
|
|
87
|
-
height: $lgHeight;
|
|
88
|
-
width: $lgWidth;
|
|
89
|
-
|
|
90
|
-
&:after {
|
|
91
|
-
height: $lgHeight;
|
|
92
|
-
width: $lgWidth;
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.fwe-radio-label-content {
|
|
98
|
-
line-height: 24px;
|
|
99
|
-
margin-left: 8px;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
&.fwe-radio-label-before {
|
|
103
|
-
@extend %label-before;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
&.fwe-radio-label-below {
|
|
107
|
-
@extend %label-below;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
input[type="radio"] {
|
|
111
|
-
position: absolute;
|
|
112
|
-
opacity: 0;
|
|
113
|
-
cursor: pointer;
|
|
114
|
-
|
|
115
|
-
&:hover ~ .fwe-radio-checkmark {
|
|
116
|
-
background-color: $control;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
&:active ~ .fwe-radio-checkmark {
|
|
120
|
-
background-color: $control-dark;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
&:checked ~ .fwe-radio-checkmark {
|
|
124
|
-
background-color: $hero;
|
|
125
|
-
border-color: $hero;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
&:hover:checked ~ .fwe-radio-checkmark {
|
|
129
|
-
background-color: $hero-dark;
|
|
130
|
-
border-color: $hero-dark;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
&:checked ~ .fwe-radio-checkmark:after {
|
|
134
|
-
transform: scale(0.4);
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
&:disabled ~ .fwe-radio-checkmark {
|
|
138
|
-
background-color: $control-disabled;
|
|
139
|
-
border-color: $control-disabled;
|
|
140
|
-
cursor: not-allowed;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
&:disabled {
|
|
144
|
-
cursor: not-allowed;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
&:disabled ~ .fwe-radio-label-content {
|
|
148
|
-
color: $text-disabled;
|
|
149
|
-
cursor: not-allowed;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
}
|
|
1
|
+
$defaultHeight: 16px;
|
|
2
|
+
$defaultWidth: 16px;
|
|
3
|
+
$lgHeight: 24px;
|
|
4
|
+
$lgWidth: 24px;
|
|
5
|
+
|
|
6
|
+
%label-before {
|
|
7
|
+
flex-direction: row-reverse;
|
|
8
|
+
justify-content: flex-end;
|
|
9
|
+
|
|
10
|
+
.fwe-radio-label-content {
|
|
11
|
+
margin-left: 0px;
|
|
12
|
+
margin-right: 8px;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
%label-below {
|
|
17
|
+
flex-direction: column;
|
|
18
|
+
|
|
19
|
+
.fwe-radio-label-content {
|
|
20
|
+
margin: 8px 0px 0px 0px;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.fwe-radio-group {
|
|
25
|
+
&.fwe-radio-lg {
|
|
26
|
+
label.fwe-radio {
|
|
27
|
+
.fwe-radio-checkmark {
|
|
28
|
+
height: $lgHeight;
|
|
29
|
+
width: $lgWidth;
|
|
30
|
+
|
|
31
|
+
&:after {
|
|
32
|
+
height: $lgHeight;
|
|
33
|
+
width: $lgWidth;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.fwe-radio-label-before {
|
|
40
|
+
label.fwe-radio {
|
|
41
|
+
@extend %label-before;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.fwe-radio-label-below {
|
|
46
|
+
label.fwe-radio {
|
|
47
|
+
@extend %label-below;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
label.fwe-radio {
|
|
53
|
+
cursor: pointer;
|
|
54
|
+
display: flex;
|
|
55
|
+
align-items: center;
|
|
56
|
+
white-space: nowrap;
|
|
57
|
+
vertical-align: middle;
|
|
58
|
+
user-select: none;
|
|
59
|
+
|
|
60
|
+
.fwe-radio-checkmark {
|
|
61
|
+
box-sizing: border-box;
|
|
62
|
+
position: relative;
|
|
63
|
+
height: $defaultHeight;
|
|
64
|
+
width: $defaultWidth;
|
|
65
|
+
border: 1px solid $control-border;
|
|
66
|
+
background-color: $white;
|
|
67
|
+
border-radius: 50%;
|
|
68
|
+
|
|
69
|
+
&:after {
|
|
70
|
+
content: "";
|
|
71
|
+
position: absolute;
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
border-radius: 50%;
|
|
74
|
+
background-color: $white;
|
|
75
|
+
position: absolute;
|
|
76
|
+
left: -1px;
|
|
77
|
+
top: -1px;
|
|
78
|
+
height: $defaultHeight;
|
|
79
|
+
width: $defaultWidth;
|
|
80
|
+
transition: transform ease-out 0.3s, background-color ease-out 0.3s;
|
|
81
|
+
transform: scale(0.001);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&.fwe-radio-lg {
|
|
86
|
+
.fwe-radio-checkmark {
|
|
87
|
+
height: $lgHeight;
|
|
88
|
+
width: $lgWidth;
|
|
89
|
+
|
|
90
|
+
&:after {
|
|
91
|
+
height: $lgHeight;
|
|
92
|
+
width: $lgWidth;
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.fwe-radio-label-content {
|
|
98
|
+
line-height: 24px;
|
|
99
|
+
margin-left: 8px;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&.fwe-radio-label-before {
|
|
103
|
+
@extend %label-before;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&.fwe-radio-label-below {
|
|
107
|
+
@extend %label-below;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
input[type="radio"] {
|
|
111
|
+
position: absolute;
|
|
112
|
+
opacity: 0;
|
|
113
|
+
cursor: pointer;
|
|
114
|
+
|
|
115
|
+
&:hover ~ .fwe-radio-checkmark {
|
|
116
|
+
background-color: $control;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
&:active ~ .fwe-radio-checkmark {
|
|
120
|
+
background-color: $control-dark;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
&:checked ~ .fwe-radio-checkmark {
|
|
124
|
+
background-color: $hero;
|
|
125
|
+
border-color: $hero;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
&:hover:checked ~ .fwe-radio-checkmark {
|
|
129
|
+
background-color: $hero-dark;
|
|
130
|
+
border-color: $hero-dark;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
&:checked ~ .fwe-radio-checkmark:after {
|
|
134
|
+
transform: scale(0.4);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
&:disabled ~ .fwe-radio-checkmark {
|
|
138
|
+
background-color: $control-disabled;
|
|
139
|
+
border-color: $control-disabled;
|
|
140
|
+
cursor: not-allowed;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
&:disabled {
|
|
144
|
+
cursor: not-allowed;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&:disabled ~ .fwe-radio-label-content {
|
|
148
|
+
color: $text-disabled;
|
|
149
|
+
cursor: not-allowed;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
package/scss/_root.scss
CHANGED
|
@@ -1,111 +1,111 @@
|
|
|
1
|
-
:root {
|
|
2
|
-
--fwe-black: #000000;
|
|
3
|
-
--fwe-white: #ffffff;
|
|
4
|
-
--fwe-white-dark: #ededed;
|
|
5
|
-
--fwe-caerul: #0091dc;
|
|
6
|
-
--fwe-sucaerul: #dcebf6;
|
|
7
|
-
--fwe-sucanul: #f2f3f5;
|
|
8
|
-
|
|
9
|
-
--fwe-gray-100: #f2f3f5;
|
|
10
|
-
--fwe-gray-200: #e5e8eb;
|
|
11
|
-
--fwe-gray-300: #d8dce1;
|
|
12
|
-
--fwe-gray-400: #b6bec6;
|
|
13
|
-
|
|
14
|
-
--fwe-icon-black: #333333;
|
|
15
|
-
--fwe-icon-white: #ffffff;
|
|
16
|
-
--fwe-icon-gray: #a3b2bc;
|
|
17
|
-
--fwe-icon-hero: #0091dc;
|
|
18
|
-
--fwe-icon-hero-light: #c8e6fa;
|
|
19
|
-
|
|
20
|
-
--fwe-green: #80ca3d;
|
|
21
|
-
--fwe-yellow: #ffd600;
|
|
22
|
-
--fwe-orange: #ff9600;
|
|
23
|
-
--fwe-red: #d50000;
|
|
24
|
-
--fwe-green-dark: #73b637;
|
|
25
|
-
--fwe-yellow-dark: #e6c100;
|
|
26
|
-
--fwe-orange-dark: #e68700;
|
|
27
|
-
--fwe-red-dark: #c00000;
|
|
28
|
-
|
|
29
|
-
// button vars
|
|
30
|
-
--fwe-btn: #d8dce1;
|
|
31
|
-
--fwe-btn-hover: #c7cbcf;
|
|
32
|
-
--fwe-btn-active: #b7babe;
|
|
33
|
-
--fwe-btn-disabled: #e6e9ec;
|
|
34
|
-
--fwe-btn-text: #333333;
|
|
35
|
-
--fwe-btn-text-hover: #333333;
|
|
36
|
-
--fwe-btn-text-disabled: #b9babb;
|
|
37
|
-
|
|
38
|
-
--fwe-btn-hero: #0091dc;
|
|
39
|
-
--fwe-btn-hero-hover: #0587cb;
|
|
40
|
-
--fwe-btn-hero-active: #0a7eba;
|
|
41
|
-
--fwe-btn-hero-disabled: #e6e9ec;
|
|
42
|
-
--fwe-btn-hero-text: #ffffff;
|
|
43
|
-
--fwe-btn-hero-text-hover: #ffffff;
|
|
44
|
-
--fwe-btn-hero-text-disabled: #b9babb;
|
|
45
|
-
|
|
46
|
-
// control colors
|
|
47
|
-
--fwe-text: #333333;
|
|
48
|
-
--fwe-text-light: #b6bec6;
|
|
49
|
-
--fwe-text-disabled: #b9babb;
|
|
50
|
-
|
|
51
|
-
--fwe-hero: #0091dc;
|
|
52
|
-
--fwe-hero-dark: #0587cb;
|
|
53
|
-
--fwe-hero-darker: #0a7eba;
|
|
54
|
-
|
|
55
|
-
--fwe-control: #d8dce1;
|
|
56
|
-
--fwe-control-dark: #c7cbcf; // 90% * --fwe-gray-300 + 10% * #333333
|
|
57
|
-
--fwe-control-darker: #b7babe; // 80% * --fwe-gray-300 + 20% * #333333
|
|
58
|
-
--fwe-control-disabled: #e6e9ec; // 64% * --fwe-gray-300 + 36% * #FFFFFF
|
|
59
|
-
|
|
60
|
-
--fwe-control-border: #b6bec6;
|
|
61
|
-
--fwe-control-border-dark: #a9b0b7; // 90% * --fwe-gray-400 + 10% * #333333
|
|
62
|
-
--fwe-control-border-darker: #9ca2a9; // 80% * --fwe-gray-400 + 20% * #333333
|
|
63
|
-
--fwe-control-scrollbar: #d2d5d9; // 80% * --fwe-control-dark + 20% * #FFFFFF
|
|
64
|
-
|
|
65
|
-
--fwe-background: #f2f3f5;
|
|
66
|
-
--fwe-background-image-gallery: #707070;
|
|
67
|
-
|
|
68
|
-
--fwe-border: #d8dce1;
|
|
69
|
-
--fwe-border-disabled: #e6e9ec; // 64% * --fwe-gray-300 + 36% * #FFFFFF
|
|
70
|
-
|
|
71
|
-
--fwe-snackbar-info-bg: #c8e6fa;
|
|
72
|
-
--fwe-snackbar-warning-bg: #fbf0e1;
|
|
73
|
-
--fwe-snackbar-error-bg: #f7e1e1;
|
|
74
|
-
|
|
75
|
-
@each $name, $size in $grid-breakpoints {
|
|
76
|
-
--fwe-breakpoint-#{$name}: #{$size};
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
@each $spacing, $space in $spacers {
|
|
80
|
-
--fwe-spacer-#{$spacing}: #{$space};
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
--fwe-font-family-sans-serif: "Festo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
|
|
84
|
-
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
85
|
-
--fwe-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
86
|
-
--fwe-font-family-icons-16: "festo_icons-16";
|
|
87
|
-
--fwe-font-family-icons-24: "festo_icons-24";
|
|
88
|
-
--fwe-font-family-icons-32: "festo_icons-32";
|
|
89
|
-
|
|
90
|
-
--fwe-font-weight-normal: 400;
|
|
91
|
-
--fwe-font-weight-bold: 700;
|
|
92
|
-
--fwe-line-height-base: 1.5;
|
|
93
|
-
--fwe-font-feature-settings: "tnum", "lnum";
|
|
94
|
-
--fwe-font-variant-numeric: lining-nums tabular-nums diagonal-fractions ordinal;
|
|
95
|
-
|
|
96
|
-
--fwe-font-size-small: 12px;
|
|
97
|
-
--fwe-font-size-md: 14px;
|
|
98
|
-
--fwe-font-size-base: 16px;
|
|
99
|
-
--fwe-font-size-xl: 24px;
|
|
100
|
-
--fwe-font-size-xxl: 32px;
|
|
101
|
-
|
|
102
|
-
--fwe-z-index-dropdown: 1000;
|
|
103
|
-
--fwe-z-index-sticky: 1020;
|
|
104
|
-
--fwe-z-index-fixed: 1030;
|
|
105
|
-
--fwe-z-index-modal-backdrop: 1040;
|
|
106
|
-
--fwe-z-index-modal: 1050;
|
|
107
|
-
--fwe-z-index-popover: 1060;
|
|
108
|
-
--fwe-z-index-tooltip: 1070;
|
|
109
|
-
|
|
110
|
-
--fwe-textarea-row-const: 33px; // rowheight + margin-top + margin-bottom + 1px-line
|
|
111
|
-
}
|
|
1
|
+
:root {
|
|
2
|
+
--fwe-black: #000000;
|
|
3
|
+
--fwe-white: #ffffff;
|
|
4
|
+
--fwe-white-dark: #ededed;
|
|
5
|
+
--fwe-caerul: #0091dc;
|
|
6
|
+
--fwe-sucaerul: #dcebf6;
|
|
7
|
+
--fwe-sucanul: #f2f3f5;
|
|
8
|
+
|
|
9
|
+
--fwe-gray-100: #f2f3f5;
|
|
10
|
+
--fwe-gray-200: #e5e8eb;
|
|
11
|
+
--fwe-gray-300: #d8dce1;
|
|
12
|
+
--fwe-gray-400: #b6bec6;
|
|
13
|
+
|
|
14
|
+
--fwe-icon-black: #333333;
|
|
15
|
+
--fwe-icon-white: #ffffff;
|
|
16
|
+
--fwe-icon-gray: #a3b2bc;
|
|
17
|
+
--fwe-icon-hero: #0091dc;
|
|
18
|
+
--fwe-icon-hero-light: #c8e6fa;
|
|
19
|
+
|
|
20
|
+
--fwe-green: #80ca3d;
|
|
21
|
+
--fwe-yellow: #ffd600;
|
|
22
|
+
--fwe-orange: #ff9600;
|
|
23
|
+
--fwe-red: #d50000;
|
|
24
|
+
--fwe-green-dark: #73b637;
|
|
25
|
+
--fwe-yellow-dark: #e6c100;
|
|
26
|
+
--fwe-orange-dark: #e68700;
|
|
27
|
+
--fwe-red-dark: #c00000;
|
|
28
|
+
|
|
29
|
+
// button vars
|
|
30
|
+
--fwe-btn: #d8dce1;
|
|
31
|
+
--fwe-btn-hover: #c7cbcf;
|
|
32
|
+
--fwe-btn-active: #b7babe;
|
|
33
|
+
--fwe-btn-disabled: #e6e9ec;
|
|
34
|
+
--fwe-btn-text: #333333;
|
|
35
|
+
--fwe-btn-text-hover: #333333;
|
|
36
|
+
--fwe-btn-text-disabled: #b9babb;
|
|
37
|
+
|
|
38
|
+
--fwe-btn-hero: #0091dc;
|
|
39
|
+
--fwe-btn-hero-hover: #0587cb;
|
|
40
|
+
--fwe-btn-hero-active: #0a7eba;
|
|
41
|
+
--fwe-btn-hero-disabled: #e6e9ec;
|
|
42
|
+
--fwe-btn-hero-text: #ffffff;
|
|
43
|
+
--fwe-btn-hero-text-hover: #ffffff;
|
|
44
|
+
--fwe-btn-hero-text-disabled: #b9babb;
|
|
45
|
+
|
|
46
|
+
// control colors
|
|
47
|
+
--fwe-text: #333333;
|
|
48
|
+
--fwe-text-light: #b6bec6;
|
|
49
|
+
--fwe-text-disabled: #b9babb;
|
|
50
|
+
|
|
51
|
+
--fwe-hero: #0091dc;
|
|
52
|
+
--fwe-hero-dark: #0587cb;
|
|
53
|
+
--fwe-hero-darker: #0a7eba;
|
|
54
|
+
|
|
55
|
+
--fwe-control: #d8dce1;
|
|
56
|
+
--fwe-control-dark: #c7cbcf; // 90% * --fwe-gray-300 + 10% * #333333
|
|
57
|
+
--fwe-control-darker: #b7babe; // 80% * --fwe-gray-300 + 20% * #333333
|
|
58
|
+
--fwe-control-disabled: #e6e9ec; // 64% * --fwe-gray-300 + 36% * #FFFFFF
|
|
59
|
+
|
|
60
|
+
--fwe-control-border: #b6bec6;
|
|
61
|
+
--fwe-control-border-dark: #a9b0b7; // 90% * --fwe-gray-400 + 10% * #333333
|
|
62
|
+
--fwe-control-border-darker: #9ca2a9; // 80% * --fwe-gray-400 + 20% * #333333
|
|
63
|
+
--fwe-control-scrollbar: #d2d5d9; // 80% * --fwe-control-dark + 20% * #FFFFFF
|
|
64
|
+
|
|
65
|
+
--fwe-background: #f2f3f5;
|
|
66
|
+
--fwe-background-image-gallery: #707070;
|
|
67
|
+
|
|
68
|
+
--fwe-border: #d8dce1;
|
|
69
|
+
--fwe-border-disabled: #e6e9ec; // 64% * --fwe-gray-300 + 36% * #FFFFFF
|
|
70
|
+
|
|
71
|
+
--fwe-snackbar-info-bg: #c8e6fa;
|
|
72
|
+
--fwe-snackbar-warning-bg: #fbf0e1;
|
|
73
|
+
--fwe-snackbar-error-bg: #f7e1e1;
|
|
74
|
+
|
|
75
|
+
@each $name, $size in $grid-breakpoints {
|
|
76
|
+
--fwe-breakpoint-#{$name}: #{$size};
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@each $spacing, $space in $spacers {
|
|
80
|
+
--fwe-spacer-#{$spacing}: #{$space};
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
--fwe-font-family-sans-serif: "Festo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
|
|
84
|
+
sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
85
|
+
--fwe-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
86
|
+
--fwe-font-family-icons-16: "festo_icons-16";
|
|
87
|
+
--fwe-font-family-icons-24: "festo_icons-24";
|
|
88
|
+
--fwe-font-family-icons-32: "festo_icons-32";
|
|
89
|
+
|
|
90
|
+
--fwe-font-weight-normal: 400;
|
|
91
|
+
--fwe-font-weight-bold: 700;
|
|
92
|
+
--fwe-line-height-base: 1.5;
|
|
93
|
+
--fwe-font-feature-settings: "tnum", "lnum";
|
|
94
|
+
--fwe-font-variant-numeric: lining-nums tabular-nums diagonal-fractions ordinal;
|
|
95
|
+
|
|
96
|
+
--fwe-font-size-small: 12px;
|
|
97
|
+
--fwe-font-size-md: 14px;
|
|
98
|
+
--fwe-font-size-base: 16px;
|
|
99
|
+
--fwe-font-size-xl: 24px;
|
|
100
|
+
--fwe-font-size-xxl: 32px;
|
|
101
|
+
|
|
102
|
+
--fwe-z-index-dropdown: 1000;
|
|
103
|
+
--fwe-z-index-sticky: 1020;
|
|
104
|
+
--fwe-z-index-fixed: 1030;
|
|
105
|
+
--fwe-z-index-modal-backdrop: 1040;
|
|
106
|
+
--fwe-z-index-modal: 1050;
|
|
107
|
+
--fwe-z-index-popover: 1060;
|
|
108
|
+
--fwe-z-index-tooltip: 1070;
|
|
109
|
+
|
|
110
|
+
--fwe-textarea-row-const: 33px; // rowheight + margin-top + margin-bottom + 1px-line
|
|
111
|
+
}
|