@festo-ui/web-essentials 11.0.0-dev.963 → 11.0.0-dev.964
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 +24 -31
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +10 -10
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +15 -22
- package/dist/css/light/festo-web-essentials-light.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/_badge.scss +16 -23
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +1 -1
- package/scss/_badge.scss +16 -23
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
2
|
+
* Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2022 Festo SE & Co. KG
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -926,7 +926,7 @@ template {
|
|
|
926
926
|
}
|
|
927
927
|
|
|
928
928
|
/*!
|
|
929
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
929
|
+
* Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
|
|
930
930
|
* Copyright 2022 Festo SE & Co. KG
|
|
931
931
|
* Licensed under Apache-2.0
|
|
932
932
|
*/
|
|
@@ -12385,7 +12385,7 @@ header.fwe-fixed-header {
|
|
|
12385
12385
|
}
|
|
12386
12386
|
|
|
12387
12387
|
/*!
|
|
12388
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
12388
|
+
* Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
|
|
12389
12389
|
* Copyright 2022 Festo SE & Co. KG
|
|
12390
12390
|
* Licensed under Apache-2.0
|
|
12391
12391
|
*/
|
|
@@ -13673,7 +13673,7 @@ a.fwe-btn.fwe-disabled {
|
|
|
13673
13673
|
}
|
|
13674
13674
|
|
|
13675
13675
|
/*!
|
|
13676
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
13676
|
+
* Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
|
|
13677
13677
|
* Copyright 2022 Festo SE & Co. KG
|
|
13678
13678
|
* Licensed under Apache-2.0
|
|
13679
13679
|
*/
|
|
@@ -14123,40 +14123,33 @@ input[type=range].fwe-slider-input:disabled::-ms-thumb {
|
|
|
14123
14123
|
|
|
14124
14124
|
.fwe-badge {
|
|
14125
14125
|
display: inline-block;
|
|
14126
|
-
border-radius: 2px;
|
|
14127
|
-
font-size: var(--fwe-font-size-md);
|
|
14128
|
-
padding-left: 6px;
|
|
14129
|
-
padding-right: 6px;
|
|
14130
14126
|
color: var(--fwe-white);
|
|
14131
|
-
max-height: 19px;
|
|
14132
|
-
height: 19px;
|
|
14133
|
-
line-height: 17px;
|
|
14134
14127
|
background-color: var(--fwe-hero);
|
|
14128
|
+
border-radius: 2px;
|
|
14129
|
+
max-height: 18px;
|
|
14130
|
+
height: 18px;
|
|
14131
|
+
line-height: 18px;
|
|
14132
|
+
padding: 0 4px;
|
|
14135
14133
|
font-weight: var(--fwe-font-weight-bold);
|
|
14134
|
+
font-size: var(--fwe-font-size-md);
|
|
14136
14135
|
}
|
|
14137
14136
|
.fwe-badge.fwe-badge-sm {
|
|
14138
14137
|
font-size: var(--fwe-font-size-small);
|
|
14139
|
-
max-height:
|
|
14140
|
-
height:
|
|
14141
|
-
line-height:
|
|
14138
|
+
max-height: 18px;
|
|
14139
|
+
height: 18px;
|
|
14140
|
+
line-height: 18px;
|
|
14142
14141
|
}
|
|
14143
|
-
.fwe-badge.fwe-badge-md {
|
|
14142
|
+
.fwe-badge.fwe-badge-md, .fwe-badge.fwe-badge-lg {
|
|
14144
14143
|
font-size: var(--fwe-font-size-base);
|
|
14145
14144
|
max-height: 22px;
|
|
14146
14145
|
height: 22px;
|
|
14147
|
-
line-height:
|
|
14148
|
-
}
|
|
14149
|
-
.fwe-badge.fwe-badge-lg {
|
|
14150
|
-
font-size: var(--fwe-font-size-xl);
|
|
14151
|
-
max-height: 32px;
|
|
14152
|
-
height: 32px;
|
|
14153
|
-
line-height: 30px;
|
|
14146
|
+
line-height: 22px;
|
|
14154
14147
|
}
|
|
14155
14148
|
.fwe-badge.fwe-badge-xl {
|
|
14156
|
-
font-size: var(--fwe-font-size-
|
|
14157
|
-
max-height:
|
|
14158
|
-
height:
|
|
14159
|
-
line-height:
|
|
14149
|
+
font-size: var(--fwe-font-size-xl);
|
|
14150
|
+
max-height: 34px;
|
|
14151
|
+
height: 34px;
|
|
14152
|
+
line-height: 34px;
|
|
14160
14153
|
}
|
|
14161
14154
|
|
|
14162
14155
|
.fwe-badge-caerul {
|
|
@@ -14585,7 +14578,7 @@ fieldset.fwe-progress-container label {
|
|
|
14585
14578
|
}
|
|
14586
14579
|
|
|
14587
14580
|
/*!
|
|
14588
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
14581
|
+
* Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
|
|
14589
14582
|
* Copyright 2022 Festo SE & Co. KG
|
|
14590
14583
|
* Licensed under Apache-2.0
|
|
14591
14584
|
*/
|
|
@@ -14816,7 +14809,7 @@ fieldset.fwe-progress-container label {
|
|
|
14816
14809
|
}
|
|
14817
14810
|
}
|
|
14818
14811
|
/*!
|
|
14819
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
14812
|
+
* Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
|
|
14820
14813
|
* Copyright 2022 Festo SE & Co. KG
|
|
14821
14814
|
* Licensed under Apache-2.0
|
|
14822
14815
|
*/
|
|
@@ -15552,7 +15545,7 @@ fieldset.fwe-progress-container label {
|
|
|
15552
15545
|
}
|
|
15553
15546
|
|
|
15554
15547
|
/*!
|
|
15555
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
15548
|
+
* Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
|
|
15556
15549
|
* Copyright 2022 Festo SE & Co. KG
|
|
15557
15550
|
* Licensed under Apache-2.0
|
|
15558
15551
|
*/
|
|
@@ -16051,7 +16044,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
16051
16044
|
}
|
|
16052
16045
|
}
|
|
16053
16046
|
/*!
|
|
16054
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
16047
|
+
* Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
|
|
16055
16048
|
* Copyright 2022 Festo SE & Co. KG
|
|
16056
16049
|
* Licensed under Apache-2.0
|
|
16057
16050
|
*/
|
|
@@ -16335,7 +16328,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
16335
16328
|
}
|
|
16336
16329
|
|
|
16337
16330
|
/*!
|
|
16338
|
-
* Festo UI - Web Essentials v11.0.0-dev.
|
|
16331
|
+
* Festo UI - Web Essentials v11.0.0-dev.964 (https://storybook.festo.design/)
|
|
16339
16332
|
* Copyright 2022 Festo SE & Co. KG
|
|
16340
16333
|
* Licensed under Apache-2.0
|
|
16341
16334
|
*/
|