@festo-ui/web-essentials 7.0.0-dev.304 → 7.0.0-dev.314
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 +161 -193
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +2 -2
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.css +5 -5
- package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.min.css +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.min.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.css +3 -3
- 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/scss/_bottom-navigation.scss +2 -2
- package/dist/scss/_breadcrumb.scss +1 -1
- package/dist/scss/_button.scss +17 -17
- package/dist/scss/_checkbox.scss +5 -5
- package/dist/scss/_chips.scss +4 -4
- package/dist/scss/_list.scss +2 -2
- package/dist/scss/_navbar-menu.scss +4 -4
- package/dist/scss/_pagination.scss +2 -2
- package/dist/scss/_radio.scss +2 -2
- package/dist/scss/_root.scss +25 -48
- package/dist/scss/_scroll.scss +2 -2
- package/dist/scss/_search-input.scss +2 -2
- package/dist/scss/_segment.scss +6 -6
- package/dist/scss/_snackbar.scss +5 -5
- package/dist/scss/_stepper-horizontal.scss +2 -2
- package/dist/scss/_stepper-vertical.scss +2 -2
- package/dist/scss/_switch.scss +4 -4
- package/dist/scss/_text-link.scss +1 -1
- package/dist/scss/_tree.scss +7 -7
- package/dist/scss/_variables.scss +33 -54
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/organisms/_footer.scss +5 -5
- package/dist/scss/themes/flatpickr/festo.scss +3 -3
- package/package.json +1 -1
- package/scss/_bottom-navigation.scss +2 -2
- package/scss/_breadcrumb.scss +1 -1
- package/scss/_button.scss +17 -17
- package/scss/_checkbox.scss +5 -5
- package/scss/_chips.scss +4 -4
- package/scss/_list.scss +2 -2
- package/scss/_navbar-menu.scss +4 -4
- package/scss/_pagination.scss +2 -2
- package/scss/_radio.scss +2 -2
- package/scss/_root.scss +25 -48
- package/scss/_scroll.scss +2 -2
- package/scss/_search-input.scss +2 -2
- package/scss/_segment.scss +6 -6
- package/scss/_snackbar.scss +5 -5
- package/scss/_stepper-horizontal.scss +2 -2
- package/scss/_stepper-vertical.scss +2 -2
- package/scss/_switch.scss +4 -4
- package/scss/_text-link.scss +1 -1
- package/scss/_tree.scss +7 -7
- package/scss/_variables.scss +33 -54
- package/scss/organisms/_footer.scss +5 -5
- package/scss/themes/flatpickr/festo.scss +2 -2
package/dist/scss/_switch.scss
CHANGED
|
@@ -100,11 +100,11 @@ label.fwe-switch {
|
|
|
100
100
|
cursor: pointer;
|
|
101
101
|
|
|
102
102
|
&:hover ~ .fwe-switch-track {
|
|
103
|
-
background-color: $control-border-
|
|
103
|
+
background-color: $control-border-hover;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
&:active ~ .fwe-switch-track {
|
|
107
|
-
background-color: $control-border-
|
|
107
|
+
background-color: $control-border-active;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
&:checked ~ .fwe-switch-track {
|
|
@@ -115,11 +115,11 @@ label.fwe-switch {
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
&:hover:checked ~ .fwe-switch-track {
|
|
118
|
-
background-color: $hero-
|
|
118
|
+
background-color: $hero-hover;
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
&:active:checked ~ .fwe-switch-track {
|
|
122
|
-
background-color: $hero-
|
|
122
|
+
background-color: $hero-active;
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
&:disabled ~ .fwe-switch-track {
|
package/dist/scss/_tree.scss
CHANGED
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
> .fwe-tree-node {
|
|
70
70
|
.fwe-tree-node-alert {
|
|
71
71
|
.fwe-icon {
|
|
72
|
-
color: $
|
|
72
|
+
color: $text-disabled !important;
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
}
|
|
@@ -173,18 +173,18 @@
|
|
|
173
173
|
.fwe-tree-node {
|
|
174
174
|
&:hover {
|
|
175
175
|
.fwe-tree-node-text {
|
|
176
|
-
color: $
|
|
176
|
+
color: $hero-hover;
|
|
177
177
|
}
|
|
178
178
|
|
|
179
179
|
.fwe-btn--tree-node-select {
|
|
180
180
|
.fwe-icon {
|
|
181
|
-
color: $
|
|
181
|
+
color: $hero-hover;
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
.fwe-btn--tree-node-toggle {
|
|
186
186
|
.fwe-icon {
|
|
187
|
-
color: $
|
|
187
|
+
color: $hero-hover;
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
190
|
}
|
|
@@ -193,18 +193,18 @@
|
|
|
193
193
|
.fwe-tree-node {
|
|
194
194
|
&:active {
|
|
195
195
|
.fwe-tree-node-text {
|
|
196
|
-
color: $
|
|
196
|
+
color: $hero-active;
|
|
197
197
|
}
|
|
198
198
|
|
|
199
199
|
.fwe-btn--tree-node-select {
|
|
200
200
|
.fwe-icon {
|
|
201
|
-
color: $
|
|
201
|
+
color: $hero-active;
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
.fwe-btn--tree-node-toggle {
|
|
206
206
|
.fwe-icon {
|
|
207
|
-
color: $
|
|
207
|
+
color: $hero-active;
|
|
208
208
|
}
|
|
209
209
|
}
|
|
210
210
|
}
|
|
@@ -10,37 +10,18 @@ $gray-200: var(--fwe-gray-200) !default;
|
|
|
10
10
|
$gray-300: var(--fwe-gray-300) !default;
|
|
11
11
|
$gray-400: var(--fwe-gray-400) !default;
|
|
12
12
|
|
|
13
|
-
$
|
|
14
|
-
$icon-white: var(--fwe-icon-white) !default;
|
|
15
|
-
$icon-gray: var(--fwe-icon-gray) !default;
|
|
16
|
-
$icon-hero: var(--fwe-icon-hero) !default;
|
|
17
|
-
$icon-hero-light: var(--fwe-icon-hero-light) !default;
|
|
13
|
+
$hero-gray: var(--fwe-hero-gray) !default;
|
|
18
14
|
|
|
19
15
|
$green: var(--fwe-green) !default;
|
|
20
16
|
$yellow: var(--fwe-yellow) !default;
|
|
21
17
|
$orange: var(--fwe-orange) !default;
|
|
22
18
|
$red: var(--fwe-red) !default;
|
|
23
|
-
$green-
|
|
24
|
-
$yellow-
|
|
25
|
-
$orange-
|
|
26
|
-
$red-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
$btn: var(--fwe-btn) !default;
|
|
30
|
-
$btn-hover: var(--fwe-btn-hover) !default;
|
|
31
|
-
$btn-active: var(--fwe-btn-active) !default;
|
|
32
|
-
$btn-disabled: var(--fwe-btn-disabled) !default;
|
|
33
|
-
$btn-text: var(--fwe-btn-text) !default;
|
|
34
|
-
$btn-text-hover: var(--fwe-btn-text-hover) !default;
|
|
35
|
-
$btn-text-disabled: var(--fwe-btn-text-disabled) !default;
|
|
36
|
-
|
|
37
|
-
$btn-hero: var(--fwe-btn-hero) !default;
|
|
38
|
-
$btn-hero-hover: var(--fwe-btn-hero-hover) !default;
|
|
39
|
-
$btn-hero-active: var(--fwe-btn-hero-active) !default;
|
|
40
|
-
$btn-hero-disabled: var(--fwe-btn-hero-disabled) !default;
|
|
41
|
-
$btn-hero-text: var(--fwe-btn-hero-text) !default;
|
|
42
|
-
$btn-hero-text-hover: var(--fwe-btn-hero-text-hover) !default;
|
|
43
|
-
$btn-hero-text-disabled: var(--fwe-btn-hero-text-disabled) !default;
|
|
19
|
+
$green-hover: var(--fwe-green-hover) !default;
|
|
20
|
+
$yellow-hover: var(--fwe-yellow-hover) !default;
|
|
21
|
+
$orange-hover: var(--fwe-orange-hover) !default;
|
|
22
|
+
$red-hover: var(--fwe-red-hover) !default;
|
|
23
|
+
$orange-active: var(--fwe-orange-active) !default;
|
|
24
|
+
$red-active: var(--fwe-red-active) !default;
|
|
44
25
|
|
|
45
26
|
// control colors
|
|
46
27
|
$text: var(--fwe-text) !default;
|
|
@@ -48,19 +29,19 @@ $text-light: var(--fwe-text-light) !default;
|
|
|
48
29
|
$text-disabled: var(--fwe-text-disabled) !default;
|
|
49
30
|
|
|
50
31
|
$hero: var(--fwe-hero) !default;
|
|
51
|
-
$hero-
|
|
52
|
-
$hero-
|
|
32
|
+
$hero-hover: var(--fwe-hero-hover) !default;
|
|
33
|
+
$hero-active: var(--fwe-hero-active) !default;
|
|
53
34
|
|
|
54
35
|
$control: var(--fwe-control) !default;
|
|
55
|
-
$control-
|
|
56
|
-
$control-
|
|
36
|
+
$control-hover: var(--fwe-control-hover) !default;
|
|
37
|
+
$control-active: var(--fwe-control-active) !default;
|
|
57
38
|
$control-disabled: var(--fwe-control-disabled) !default;
|
|
58
39
|
$control-box-shadow: 0px 1px 8px rgba(black, 0.3) !default;
|
|
59
40
|
$control-scrollbar: var(--fwe-control-scrollbar) !default;
|
|
60
41
|
|
|
61
42
|
$control-border: var(--fwe-control-border) !default;
|
|
62
|
-
$control-border-
|
|
63
|
-
$control-border-
|
|
43
|
+
$control-border-hover: var(--fwe-control-border-hover) !default;
|
|
44
|
+
$control-border-active: var(--fwe-control-border-active) !default;
|
|
64
45
|
|
|
65
46
|
$background: var(--fwe-background) !default;
|
|
66
47
|
$background-modal: rgba(black, 0.7) !default;
|
|
@@ -68,9 +49,9 @@ $background-modal: rgba(black, 0.7) !default;
|
|
|
68
49
|
$border: var(--fwe-border) !default;
|
|
69
50
|
$border-disabled: var(--fwe-border-disabled) !default;
|
|
70
51
|
|
|
71
|
-
$
|
|
72
|
-
$
|
|
73
|
-
$
|
|
52
|
+
$hero-bg: var(--fwe-hero-bg) !default;
|
|
53
|
+
$orange-bg: var(--fwe-orange-bg) !default;
|
|
54
|
+
$red-bg: var(--fwe-red-bg) !default;
|
|
74
55
|
|
|
75
56
|
// color map
|
|
76
57
|
$colors: () !default;
|
|
@@ -86,32 +67,30 @@ $colors: map-merge(
|
|
|
86
67
|
"gray-200": $gray-200,
|
|
87
68
|
"gray-300": $gray-300,
|
|
88
69
|
"gray-400": $gray-400,
|
|
89
|
-
"
|
|
90
|
-
"icon-white": $icon-white,
|
|
91
|
-
"icon-gray": $icon-gray,
|
|
92
|
-
"icon-hero": $icon-hero,
|
|
93
|
-
"icon-hero-light": $icon-hero-light,
|
|
70
|
+
"hero-gray": $hero-gray,
|
|
94
71
|
"green": $green,
|
|
95
72
|
"yellow": $yellow,
|
|
96
73
|
"orange": $orange,
|
|
97
74
|
"red": $red,
|
|
98
|
-
"green-
|
|
99
|
-
"yellow-
|
|
100
|
-
"orange-
|
|
101
|
-
"red-
|
|
75
|
+
"green-hover": $green-hover,
|
|
76
|
+
"yellow-hover": $yellow-hover,
|
|
77
|
+
"orange-hover": $orange-hover,
|
|
78
|
+
"red-hover": $red-hover,
|
|
79
|
+
"orange-active": $orange-active,
|
|
80
|
+
"red-active": $red-active,
|
|
102
81
|
"text": $text,
|
|
103
82
|
"text-light": $text-light,
|
|
104
83
|
"text-disabled": $text-disabled,
|
|
105
84
|
"hero": $hero,
|
|
106
|
-
"hero-
|
|
107
|
-
"hero-
|
|
85
|
+
"hero-hover": $hero-hover,
|
|
86
|
+
"hero-active": $hero-active,
|
|
108
87
|
"control": $control,
|
|
109
|
-
"control-
|
|
110
|
-
"control-
|
|
88
|
+
"control-hover": $control-hover,
|
|
89
|
+
"control-active": $control-active,
|
|
111
90
|
"control-disabled": $control-disabled,
|
|
112
91
|
"control-border": $control,
|
|
113
|
-
"control-border-
|
|
114
|
-
"control-border-
|
|
92
|
+
"control-border-hover": $control-hover,
|
|
93
|
+
"control-border-active": $control-active,
|
|
115
94
|
"control-border-disabled": $control-disabled,
|
|
116
95
|
"background": $background,
|
|
117
96
|
"background-modal": $background-modal,
|
|
@@ -130,11 +109,11 @@ $badge-colors: map-merge(
|
|
|
130
109
|
"orange": $orange,
|
|
131
110
|
"red": $red,
|
|
132
111
|
"hero": $hero,
|
|
133
|
-
"hero-
|
|
134
|
-
"hero-
|
|
112
|
+
"hero-hover": $hero-hover,
|
|
113
|
+
"hero-active": $hero-active,
|
|
135
114
|
"control": $control,
|
|
136
|
-
"control-
|
|
137
|
-
"control-
|
|
115
|
+
"control-hover": $control-hover,
|
|
116
|
+
"control-active": $control-active
|
|
138
117
|
),
|
|
139
118
|
$badge-colors
|
|
140
119
|
);
|
|
@@ -4,7 +4,7 @@ footer.fwe-footer {
|
|
|
4
4
|
flex-direction: row;
|
|
5
5
|
justify-content: center;
|
|
6
6
|
padding: 24px 0px;
|
|
7
|
-
border-bottom: 1px solid $control-border-
|
|
7
|
+
border-bottom: 1px solid $control-border-active;
|
|
8
8
|
margin-bottom: 24px;
|
|
9
9
|
|
|
10
10
|
.fwe-social-media-link {
|
|
@@ -27,7 +27,7 @@ footer.fwe-footer {
|
|
|
27
27
|
}
|
|
28
28
|
.fwe-footer-details {
|
|
29
29
|
padding-bottom: 24px;
|
|
30
|
-
border-bottom: 1px solid $control-border-
|
|
30
|
+
border-bottom: 1px solid $control-border-active;
|
|
31
31
|
|
|
32
32
|
h4 {
|
|
33
33
|
font-size: 16px;
|
|
@@ -66,7 +66,7 @@ footer.fwe-footer {
|
|
|
66
66
|
padding-bottom: 8px;
|
|
67
67
|
|
|
68
68
|
a {
|
|
69
|
-
color: $control-border-
|
|
69
|
+
color: $control-border-active;
|
|
70
70
|
padding-right: 8px;
|
|
71
71
|
|
|
72
72
|
&:last-child {
|
|
@@ -79,7 +79,7 @@ footer.fwe-footer {
|
|
|
79
79
|
padding-bottom: 24px;
|
|
80
80
|
|
|
81
81
|
a {
|
|
82
|
-
color: $control-border-
|
|
82
|
+
color: $control-border-active;
|
|
83
83
|
padding-right: 8px;
|
|
84
84
|
|
|
85
85
|
&:last-child {
|
|
@@ -93,7 +93,7 @@ footer.fwe-footer {
|
|
|
93
93
|
order: 1;
|
|
94
94
|
justify-content: center;
|
|
95
95
|
padding-bottom: 24px;
|
|
96
|
-
color: $control-border-
|
|
96
|
+
color: $control-border-active;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials v7.0.0-dev.
|
|
2
|
+
* Festo UI - Web Essentials v7.0.0-dev.314 (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2022 Festo SE & Co. KG
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -499,7 +499,7 @@ span.flatpickr-weekday {
|
|
|
499
499
|
.flatpickr-day:hover {
|
|
500
500
|
cursor: pointer;
|
|
501
501
|
outline: 0;
|
|
502
|
-
color: $hero-
|
|
502
|
+
color: $hero-hover;
|
|
503
503
|
}
|
|
504
504
|
|
|
505
505
|
.flatpickr-day.today {
|
|
@@ -508,7 +508,7 @@ span.flatpickr-weekday {
|
|
|
508
508
|
text-decoration: underline;
|
|
509
509
|
|
|
510
510
|
&:hover {
|
|
511
|
-
color: $hero-
|
|
511
|
+
color: $hero-hover;
|
|
512
512
|
}
|
|
513
513
|
}
|
|
514
514
|
|
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
background: none;
|
|
19
19
|
border: none;
|
|
20
20
|
outline: none;
|
|
21
|
-
color: $
|
|
21
|
+
color: $hero-gray;
|
|
22
22
|
position: relative;
|
|
23
23
|
:after {
|
|
24
24
|
content: "";
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
&:active {
|
|
41
|
-
color: $hero-
|
|
41
|
+
color: $hero-active;
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
}
|
package/scss/_breadcrumb.scss
CHANGED
package/scss/_button.scss
CHANGED
|
@@ -10,8 +10,8 @@ button.fwe-btn {
|
|
|
10
10
|
font-size: $font-size-base;
|
|
11
11
|
padding: 4px 16px;
|
|
12
12
|
min-height: 32px;
|
|
13
|
-
color: $
|
|
14
|
-
background: $
|
|
13
|
+
color: $text;
|
|
14
|
+
background: $control;
|
|
15
15
|
border-radius: $control-border-radius;
|
|
16
16
|
cursor: pointer;
|
|
17
17
|
border: none;
|
|
@@ -23,12 +23,12 @@ button.fwe-btn {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
&:hover {
|
|
26
|
-
color: $
|
|
27
|
-
background: $
|
|
26
|
+
color: $text;
|
|
27
|
+
background: $control-hover;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
&:active {
|
|
31
|
-
background: $
|
|
31
|
+
background: $control-active;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&:focus {
|
|
@@ -38,27 +38,27 @@ button.fwe-btn {
|
|
|
38
38
|
&:disabled,
|
|
39
39
|
&.fwe-disabled {
|
|
40
40
|
cursor: default;
|
|
41
|
-
background: $
|
|
42
|
-
color: $
|
|
41
|
+
background: $control-disabled;
|
|
42
|
+
color: $text-disabled;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
&.fwe-btn-hero {
|
|
46
|
-
color: $
|
|
47
|
-
background: $
|
|
46
|
+
color: $white;
|
|
47
|
+
background: $hero;
|
|
48
48
|
|
|
49
49
|
&:hover {
|
|
50
|
-
color: $
|
|
51
|
-
background: $
|
|
50
|
+
color: $white;
|
|
51
|
+
background: $hero-hover;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
54
|
&:active {
|
|
55
|
-
background: $
|
|
55
|
+
background: $hero-active;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
&:disabled,
|
|
59
59
|
&.fwe-disabled {
|
|
60
|
-
background: $
|
|
61
|
-
color: $
|
|
60
|
+
background: $control-disabled;
|
|
61
|
+
color: $text-disabled;
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
|
|
@@ -83,17 +83,17 @@ button.fwe-btn {
|
|
|
83
83
|
|
|
84
84
|
&:hover {
|
|
85
85
|
background: none;
|
|
86
|
-
color: $hero-
|
|
86
|
+
color: $hero-hover;
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
&:active {
|
|
90
90
|
background: none;
|
|
91
|
-
color: $hero-
|
|
91
|
+
color: $hero-hover;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
94
|
&:disabled,
|
|
95
95
|
&.fwe-disabled {
|
|
96
|
-
color: $
|
|
96
|
+
color: $text-disabled;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
|
package/scss/_checkbox.scss
CHANGED
|
@@ -119,7 +119,7 @@ label.fwe-checkbox {
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
&:active ~ .fwe-checkbox-checkmark {
|
|
122
|
-
background-color: $control-
|
|
122
|
+
background-color: $control-hover;
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
&:checked ~ .fwe-checkbox-checkmark {
|
|
@@ -128,13 +128,13 @@ label.fwe-checkbox {
|
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
&:hover:checked:not(:disabled) ~ .fwe-checkbox-checkmark {
|
|
131
|
-
background-color: $hero-
|
|
132
|
-
border-color: $hero-
|
|
131
|
+
background-color: $hero-hover;
|
|
132
|
+
border-color: $hero-hover;
|
|
133
133
|
}
|
|
134
134
|
|
|
135
135
|
&:active:checked ~ .fwe-checkbox-checkmark {
|
|
136
|
-
background-color: $hero-
|
|
137
|
-
border-color: $hero-
|
|
136
|
+
background-color: $hero-active;
|
|
137
|
+
border-color: $hero-active;
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
&:checked ~ .fwe-checkbox-checkmark:before {
|
package/scss/_chips.scss
CHANGED
|
@@ -64,12 +64,12 @@
|
|
|
64
64
|
margin-right: 8px;
|
|
65
65
|
}
|
|
66
66
|
&:hover {
|
|
67
|
-
background: $control-
|
|
68
|
-
border: 1px solid $control-
|
|
67
|
+
background: $control-hover;
|
|
68
|
+
border: 1px solid $control-hover;
|
|
69
69
|
}
|
|
70
70
|
&:active {
|
|
71
|
-
background: $control-
|
|
72
|
-
border: 1px solid $control-
|
|
71
|
+
background: $control-active;
|
|
72
|
+
border: 1px solid $control-active;
|
|
73
73
|
}
|
|
74
74
|
&.fwe-selected {
|
|
75
75
|
cursor: default;
|
package/scss/_list.scss
CHANGED
|
@@ -86,7 +86,7 @@ ul.fwe-list-group {
|
|
|
86
86
|
&.fwe-disabled {
|
|
87
87
|
color: $text-disabled;
|
|
88
88
|
&::before {
|
|
89
|
-
background-color: $control-
|
|
89
|
+
background-color: $control-hover;
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
}
|
|
@@ -171,7 +171,7 @@ ul.fwe-list-group {
|
|
|
171
171
|
&.fwe-disabled {
|
|
172
172
|
color: $text-disabled;
|
|
173
173
|
&::before {
|
|
174
|
-
background-color: $control-
|
|
174
|
+
background-color: $control-hover;
|
|
175
175
|
}
|
|
176
176
|
}
|
|
177
177
|
}
|
package/scss/_navbar-menu.scss
CHANGED
|
@@ -232,16 +232,16 @@
|
|
|
232
232
|
&:hover {
|
|
233
233
|
&.fwe-warning {
|
|
234
234
|
color: $white;
|
|
235
|
-
background: $orange-
|
|
235
|
+
background: $orange-hover;
|
|
236
236
|
&::before {
|
|
237
|
-
background: $orange-
|
|
237
|
+
background: $orange-hover;
|
|
238
238
|
}
|
|
239
239
|
}
|
|
240
240
|
&.fwe-error {
|
|
241
241
|
color: $white;
|
|
242
|
-
background: $red-
|
|
242
|
+
background: $red-hover;
|
|
243
243
|
&::before {
|
|
244
|
-
background: $red-
|
|
244
|
+
background: $red-hover;
|
|
245
245
|
}
|
|
246
246
|
}
|
|
247
247
|
}
|
package/scss/_pagination.scss
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
&:active {
|
|
30
30
|
&::before {
|
|
31
|
-
background-color: $hero-
|
|
31
|
+
background-color: $hero-hover;
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
background: $control-border;
|
|
67
67
|
border-radius: 50%;
|
|
68
68
|
&:hover {
|
|
69
|
-
background: $control-border-
|
|
69
|
+
background: $control-border-hover;
|
|
70
70
|
}
|
|
71
71
|
&.fwe-selected {
|
|
72
72
|
background: $hero;
|
package/scss/_radio.scss
CHANGED
|
@@ -138,11 +138,11 @@ label.fwe-radio {
|
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
&:hover:checked:not(:disabled) ~ .fwe-radio-checkmark::after {
|
|
141
|
-
border-color: $hero-
|
|
141
|
+
border-color: $hero-hover;
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
&:active ~ .fwe-radio-checkmark::before {
|
|
145
|
-
border-color: $control-
|
|
145
|
+
border-color: $control-hover;
|
|
146
146
|
background-color: $white;
|
|
147
147
|
}
|
|
148
148
|
|
package/scss/_root.scss
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
--fwe-black: #000000;
|
|
3
3
|
--fwe-white: #ffffff;
|
|
4
|
-
--fwe-white-
|
|
4
|
+
--fwe-white-hover: #ededed;
|
|
5
5
|
--fwe-caerul: #0091dc;
|
|
6
6
|
--fwe-sucaerul: #dcebf6;
|
|
7
7
|
--fwe-sucanul: #f2f3f5;
|
|
@@ -11,65 +11,42 @@
|
|
|
11
11
|
--fwe-gray-300: #d8dce1;
|
|
12
12
|
--fwe-gray-400: #b6bec6;
|
|
13
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
14
|
--fwe-text: #333333;
|
|
48
15
|
--fwe-text-light: #b6bec6;
|
|
49
16
|
--fwe-text-disabled: #b9babb;
|
|
50
17
|
|
|
51
18
|
--fwe-hero: #0091dc;
|
|
52
|
-
--fwe-hero-
|
|
53
|
-
--fwe-hero-
|
|
19
|
+
--fwe-hero-hover: #0587cb;
|
|
20
|
+
--fwe-hero-active: #0a7eba;
|
|
21
|
+
--fwe-hero-gray: #a3b2bc;
|
|
22
|
+
--fwe-hero-bg: #c8e6fa;
|
|
23
|
+
|
|
24
|
+
--fwe-green: #80ca3d;
|
|
25
|
+
--fwe-yellow: #ffd600;
|
|
26
|
+
--fwe-orange: #ff9600;
|
|
27
|
+
--fwe-red: #d50000;
|
|
28
|
+
--fwe-green-hover: #73b637;
|
|
29
|
+
--fwe-yellow-hover: #e6c100;
|
|
30
|
+
--fwe-orange-hover: #e68700;
|
|
31
|
+
--fwe-red-hover: #c00000;
|
|
32
|
+
--fwe-orange-active: #d6820a;
|
|
33
|
+
--fwe-red-active: #b50a0a;
|
|
34
|
+
--fwe-orange-bg: #fbf0e1;
|
|
35
|
+
--fwe-red-bg: #f7e1e1;
|
|
54
36
|
|
|
55
37
|
--fwe-control: #d8dce1;
|
|
56
|
-
--fwe-control-
|
|
57
|
-
--fwe-control-
|
|
38
|
+
--fwe-control-hover: #c7cbcf;
|
|
39
|
+
--fwe-control-active: #b7babe; // 80% * --fwe-gray-300 + 20% * #333333
|
|
58
40
|
--fwe-control-disabled: #e6e9ec; // 64% * --fwe-gray-300 + 36% * #FFFFFF
|
|
59
|
-
|
|
60
|
-
--fwe-control-border: #
|
|
61
|
-
--fwe-control-border-
|
|
62
|
-
--fwe-control-
|
|
63
|
-
--fwe-control-scrollbar: #d2d5d9; // 80% * --fwe-control-dark + 20% * #FFFFFF
|
|
64
|
-
|
|
65
|
-
--fwe-background: #f2f3f5;
|
|
41
|
+
--fwe-control-border: #b6bec6; // OK
|
|
42
|
+
--fwe-control-border-hover: #a9b0b7; // 90% * --fwe-gray-400 + 10% * #333333
|
|
43
|
+
--fwe-control-border-active: #9ca2a9; // 80% * --fwe-gray-400 + 20% * #333333
|
|
44
|
+
--fwe-control-scrollbar: #d2d5d9; // 80% * --fwe-control-hover + 20% * #FFFFFF
|
|
66
45
|
|
|
67
46
|
--fwe-border: #d8dce1;
|
|
68
47
|
--fwe-border-disabled: #e6e9ec; // 64% * --fwe-gray-300 + 36% * #FFFFFF
|
|
69
48
|
|
|
70
|
-
--fwe-
|
|
71
|
-
--fwe-snackbar-warning-bg: #fbf0e1;
|
|
72
|
-
--fwe-snackbar-error-bg: #f7e1e1;
|
|
49
|
+
--fwe-background: #f2f3f5;
|
|
73
50
|
|
|
74
51
|
@each $name, $size in $grid-breakpoints {
|
|
75
52
|
--fwe-breakpoint-#{$name}: #{$size};
|