@festo-ui/angular 3.2.1-pre-20220706.1 → 3.2.1-pre-20220720.2
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/esm2020/lib/components/loading-indicator/loading-indicator.component.mjs +3 -3
- package/esm2020/lib/forms/color-indicator/color-indicator.component.mjs +2 -2
- package/fesm2015/festo-ui-angular.mjs +4 -4
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +4 -4
- package/fesm2020/festo-ui-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/scss/base/components/loading-indicator/loading-indicator.component.scss +16 -2
- package/scss/base/forms/checkbox/checkbox.component.scss +1 -2
- package/scss/base/forms/color-indicator/color-indicator.component.scss +1 -1
- package/scss/base/forms/color-picker/color-picker.component.scss +3 -3
package/package.json
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
@import "../../../../../web-essentials/scss/variables";
|
|
2
|
+
|
|
3
|
+
fng-loading-indicator {
|
|
4
|
+
display: block;
|
|
5
|
+
}
|
|
6
|
+
|
|
1
7
|
.fng-waiting-container {
|
|
2
8
|
width: 100%;
|
|
3
9
|
height: 100%;
|
|
@@ -5,8 +11,16 @@
|
|
|
5
11
|
flex-direction: column;
|
|
6
12
|
justify-content: center;
|
|
7
13
|
align-items: center;
|
|
14
|
+
.fng-waiting-content-container {
|
|
15
|
+
margin-top: 12px;
|
|
16
|
+
color: $hero;
|
|
17
|
+
}
|
|
8
18
|
}
|
|
9
19
|
|
|
10
|
-
.fng-waiting-
|
|
11
|
-
|
|
20
|
+
.fng-waiting-container-sm {
|
|
21
|
+
flex-direction: row;
|
|
22
|
+
.fng-waiting-content-container {
|
|
23
|
+
margin-top: unset;
|
|
24
|
+
margin-left: 8px;
|
|
25
|
+
}
|
|
12
26
|
}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
@import "../../../../../web-essentials/scss/variables";
|
|
2
2
|
|
|
3
|
-
$control-border-radius: 4px;
|
|
4
|
-
|
|
5
3
|
.fwe-checkbox-container {
|
|
6
4
|
font-family: $font-family-base;
|
|
7
5
|
user-select: none;
|
|
@@ -44,6 +42,7 @@ $control-border-radius: 4px;
|
|
|
44
42
|
margin-left: 8px;
|
|
45
43
|
line-height: 24px;
|
|
46
44
|
color: $text;
|
|
45
|
+
-webkit-user-select: none;
|
|
47
46
|
user-select: none;
|
|
48
47
|
}
|
|
49
48
|
|
|
@@ -42,7 +42,7 @@ $knobSize: 14px;
|
|
|
42
42
|
margin: $knobSize * 0.5 3px;
|
|
43
43
|
height: $baseSize;
|
|
44
44
|
width: 8px;
|
|
45
|
-
border-radius:
|
|
45
|
+
border-radius: $border-radius-s;
|
|
46
46
|
}
|
|
47
47
|
.fwe-knob {
|
|
48
48
|
left: -3px;
|
|
@@ -167,7 +167,7 @@ $knobSize: 14px;
|
|
|
167
167
|
color: white;
|
|
168
168
|
height: $spacer-m;
|
|
169
169
|
width: $spacer-m;
|
|
170
|
-
border-radius:
|
|
170
|
+
border-radius: $border-radius-s;
|
|
171
171
|
margin-right: $spacer-xxs;
|
|
172
172
|
margin-bottom: $spacer-xxs;
|
|
173
173
|
&.fwe-white-item {
|
|
@@ -181,7 +181,7 @@ $knobSize: 14px;
|
|
|
181
181
|
justify-content: center;
|
|
182
182
|
height: $spacer-m;
|
|
183
183
|
width: $spacer-m;
|
|
184
|
-
border-radius:
|
|
184
|
+
border-radius: $border-radius-s;
|
|
185
185
|
border: 1px solid $control-border;
|
|
186
186
|
color: $control;
|
|
187
187
|
margin-right: $spacer-xxs;
|