@festo-ui/web-essentials 7.3.0-dev.497 → 7.3.0-dev.500
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-compact.css +5478 -0
- package/dist/css/festo-web-essentials-compact.css.map +1 -0
- package/dist/css/festo-web-essentials.css +39 -27
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +11 -11
- package/dist/css/festo-web-essentials.min.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/_button.scss +4 -2
- package/dist/scss/_chips.scss +4 -2
- package/dist/scss/_fonts.scss +4 -4
- package/dist/scss/festo-web-essentials-compact.scss +54 -0
- 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/_button.scss +4 -2
- package/scss/_chips.scss +4 -2
- package/scss/_fonts.scss +4 -4
- package/scss/festo-web-essentials-compact.scss +54 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials v7.3.0-dev.
|
|
2
|
+
* Festo UI - Web Essentials v7.3.0-dev.500 (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2022 Festo SE & Co. KG
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
/* Festo regular */
|
|
8
8
|
@font-face {
|
|
9
9
|
font-family: "Festo";
|
|
10
|
-
src: url("https://www.festo.com/
|
|
10
|
+
src: url("https://www.festo.com/fonts/Festo-Regular.woff2") format("woff2"), url("https://www.festo.com/fonts/Festo-Regular.woff") format("woff");
|
|
11
11
|
}
|
|
12
12
|
/* Festo bold */
|
|
13
13
|
@font-face {
|
|
14
14
|
font-family: "Festo";
|
|
15
|
-
src: url("https://www.festo.com/
|
|
15
|
+
src: url("https://www.festo.com/fonts/Festo-Bold.woff2") format("woff2"), url("https://www.festo.com/fonts/Festo-Bold.woff") format("woff");
|
|
16
16
|
font-weight: bold;
|
|
17
17
|
}
|
|
18
18
|
/* Festo Icon Font */
|
|
@@ -104,24 +104,10 @@
|
|
|
104
104
|
font-family: var(--fwe-font-family-icons-16);
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
.fwe-icon-lg
|
|
108
|
-
a.fwe-btn.fwe-btn-lg i[class*=" fwe-icon-"],
|
|
109
|
-
button.fwe-btn.fwe-btn-lg i[class^=fwe-icon-],
|
|
110
|
-
button.fwe-btn.fwe-btn-lg i[class*=" fwe-icon-"], .fwe-chip-container.fwe-chip-container-lg .fwe-chip i[class^=fwe-icon-],
|
|
111
|
-
.fwe-chip-container.fwe-chip-container-lg .fwe-chip i[class*=" fwe-icon-"],
|
|
112
|
-
.fwe-chip-container.fwe-chip-container-lg .fwe-chip .fwe-svg-icon, .fwe-chip.fwe-chip-lg i[class^=fwe-icon-],
|
|
113
|
-
.fwe-chip.fwe-chip-lg i[class*=" fwe-icon-"],
|
|
114
|
-
.fwe-chip.fwe-chip-lg .fwe-svg-icon {
|
|
107
|
+
.fwe-icon-lg {
|
|
115
108
|
font-size: 24px;
|
|
116
109
|
}
|
|
117
|
-
.fwe-icon-lg:before
|
|
118
|
-
a.fwe-btn.fwe-btn-lg i[class*=" fwe-icon-"]:before,
|
|
119
|
-
button.fwe-btn.fwe-btn-lg i[class^=fwe-icon-]:before,
|
|
120
|
-
button.fwe-btn.fwe-btn-lg i[class*=" fwe-icon-"]:before, .fwe-chip-container.fwe-chip-container-lg .fwe-chip i[class^=fwe-icon-]:before,
|
|
121
|
-
.fwe-chip-container.fwe-chip-container-lg .fwe-chip i[class*=" fwe-icon-"]:before,
|
|
122
|
-
.fwe-chip-container.fwe-chip-container-lg .fwe-chip .fwe-svg-icon:before, .fwe-chip.fwe-chip-lg i[class^=fwe-icon-]:before,
|
|
123
|
-
.fwe-chip.fwe-chip-lg i[class*=" fwe-icon-"]:before,
|
|
124
|
-
.fwe-chip.fwe-chip-lg .fwe-svg-icon:before {
|
|
110
|
+
.fwe-icon-lg:before {
|
|
125
111
|
font-family: var(--fwe-font-family-icons-24) !important;
|
|
126
112
|
}
|
|
127
113
|
|
|
@@ -2993,7 +2979,7 @@ template {
|
|
|
2993
2979
|
}
|
|
2994
2980
|
|
|
2995
2981
|
/*!
|
|
2996
|
-
* Festo UI - Web Essentials v7.3.0-dev.
|
|
2982
|
+
* Festo UI - Web Essentials v7.3.0-dev.500 (https://storybook.festo.design/)
|
|
2997
2983
|
* Copyright 2022 Festo SE & Co. KG
|
|
2998
2984
|
* Licensed under Apache-2.0
|
|
2999
2985
|
*/
|
|
@@ -14450,7 +14436,7 @@ header.fwe-fixed-header {
|
|
|
14450
14436
|
}
|
|
14451
14437
|
|
|
14452
14438
|
/*!
|
|
14453
|
-
* Festo UI - Web Essentials v7.3.0-dev.
|
|
14439
|
+
* Festo UI - Web Essentials v7.3.0-dev.500 (https://storybook.festo.design/)
|
|
14454
14440
|
* Copyright 2022 Festo SE & Co. KG
|
|
14455
14441
|
* Licensed under Apache-2.0
|
|
14456
14442
|
*/
|
|
@@ -14973,6 +14959,20 @@ label.fwe-input-text.fwe-input-text-icon textarea {
|
|
|
14973
14959
|
padding: 0px 16px;
|
|
14974
14960
|
height: 32px;
|
|
14975
14961
|
}
|
|
14962
|
+
.fwe-chip.fwe-chip-lg i[class^=fwe-icon-], .fwe-chip-container.fwe-chip-container-lg .fwe-chip i[class^=fwe-icon-],
|
|
14963
|
+
.fwe-chip.fwe-chip-lg i[class*=" fwe-icon-"],
|
|
14964
|
+
.fwe-chip-container.fwe-chip-container-lg .fwe-chip i[class*=" fwe-icon-"],
|
|
14965
|
+
.fwe-chip.fwe-chip-lg .fwe-svg-icon,
|
|
14966
|
+
.fwe-chip-container.fwe-chip-container-lg .fwe-chip .fwe-svg-icon {
|
|
14967
|
+
font-size: 24px;
|
|
14968
|
+
}
|
|
14969
|
+
.fwe-chip.fwe-chip-lg i[class^=fwe-icon-]:before, .fwe-chip-container.fwe-chip-container-lg .fwe-chip i[class^=fwe-icon-]:before,
|
|
14970
|
+
.fwe-chip.fwe-chip-lg i[class*=" fwe-icon-"]:before,
|
|
14971
|
+
.fwe-chip-container.fwe-chip-container-lg .fwe-chip i[class*=" fwe-icon-"]:before,
|
|
14972
|
+
.fwe-chip.fwe-chip-lg .fwe-svg-icon:before,
|
|
14973
|
+
.fwe-chip-container.fwe-chip-container-lg .fwe-chip .fwe-svg-icon:before {
|
|
14974
|
+
font-family: var(--fwe-font-family-icons-24) !important;
|
|
14975
|
+
}
|
|
14976
14976
|
.fwe-selected.fwe-category.fwe-chip.fwe-chip-lg, .fwe-chip-container.fwe-chip-container-lg .fwe-selected.fwe-category.fwe-chip {
|
|
14977
14977
|
padding-right: 30px;
|
|
14978
14978
|
}
|
|
@@ -15563,6 +15563,18 @@ button.fwe-btn.fwe-btn-lg {
|
|
|
15563
15563
|
padding: 4px 24px;
|
|
15564
15564
|
min-height: 48px;
|
|
15565
15565
|
}
|
|
15566
|
+
a.fwe-btn.fwe-btn-lg i[class^=fwe-icon-],
|
|
15567
|
+
a.fwe-btn.fwe-btn-lg i[class*=" fwe-icon-"],
|
|
15568
|
+
button.fwe-btn.fwe-btn-lg i[class^=fwe-icon-],
|
|
15569
|
+
button.fwe-btn.fwe-btn-lg i[class*=" fwe-icon-"] {
|
|
15570
|
+
font-size: 24px;
|
|
15571
|
+
}
|
|
15572
|
+
a.fwe-btn.fwe-btn-lg i[class^=fwe-icon-]:before,
|
|
15573
|
+
a.fwe-btn.fwe-btn-lg i[class*=" fwe-icon-"]:before,
|
|
15574
|
+
button.fwe-btn.fwe-btn-lg i[class^=fwe-icon-]:before,
|
|
15575
|
+
button.fwe-btn.fwe-btn-lg i[class*=" fwe-icon-"]:before {
|
|
15576
|
+
font-family: var(--fwe-font-family-icons-24) !important;
|
|
15577
|
+
}
|
|
15566
15578
|
a.fwe-btn.fwe-btn-icon,
|
|
15567
15579
|
button.fwe-btn.fwe-btn-icon {
|
|
15568
15580
|
border-radius: 50%;
|
|
@@ -15594,7 +15606,7 @@ a.fwe-btn.fwe-disabled {
|
|
|
15594
15606
|
}
|
|
15595
15607
|
|
|
15596
15608
|
/*!
|
|
15597
|
-
* Festo UI - Web Essentials v7.3.0-dev.
|
|
15609
|
+
* Festo UI - Web Essentials v7.3.0-dev.500 (https://storybook.festo.design/)
|
|
15598
15610
|
* Copyright 2022 Festo SE & Co. KG
|
|
15599
15611
|
* Licensed under Apache-2.0
|
|
15600
15612
|
*/
|
|
@@ -16474,7 +16486,7 @@ fieldset.fwe-progress-container label {
|
|
|
16474
16486
|
}
|
|
16475
16487
|
|
|
16476
16488
|
/*!
|
|
16477
|
-
* Festo UI - Web Essentials v7.3.0-dev.
|
|
16489
|
+
* Festo UI - Web Essentials v7.3.0-dev.500 (https://storybook.festo.design/)
|
|
16478
16490
|
* Copyright 2022 Festo SE & Co. KG
|
|
16479
16491
|
* Licensed under Apache-2.0
|
|
16480
16492
|
*/
|
|
@@ -16697,7 +16709,7 @@ fieldset.fwe-progress-container label {
|
|
|
16697
16709
|
}
|
|
16698
16710
|
}
|
|
16699
16711
|
/*!
|
|
16700
|
-
* Festo UI - Web Essentials v7.3.0-dev.
|
|
16712
|
+
* Festo UI - Web Essentials v7.3.0-dev.500 (https://storybook.festo.design/)
|
|
16701
16713
|
* Copyright 2022 Festo SE & Co. KG
|
|
16702
16714
|
* Licensed under Apache-2.0
|
|
16703
16715
|
*/
|
|
@@ -17414,7 +17426,7 @@ fieldset.fwe-progress-container label {
|
|
|
17414
17426
|
}
|
|
17415
17427
|
|
|
17416
17428
|
/*!
|
|
17417
|
-
* Festo UI - Web Essentials v7.3.0-dev.
|
|
17429
|
+
* Festo UI - Web Essentials v7.3.0-dev.500 (https://storybook.festo.design/)
|
|
17418
17430
|
* Copyright 2022 Festo SE & Co. KG
|
|
17419
17431
|
* Licensed under Apache-2.0
|
|
17420
17432
|
*/
|
|
@@ -17912,7 +17924,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
17912
17924
|
}
|
|
17913
17925
|
}
|
|
17914
17926
|
/*!
|
|
17915
|
-
* Festo UI - Web Essentials v7.3.0-dev.
|
|
17927
|
+
* Festo UI - Web Essentials v7.3.0-dev.500 (https://storybook.festo.design/)
|
|
17916
17928
|
* Copyright 2022 Festo SE & Co. KG
|
|
17917
17929
|
* Licensed under Apache-2.0
|
|
17918
17930
|
*/
|
|
@@ -18162,7 +18174,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
18162
18174
|
}
|
|
18163
18175
|
|
|
18164
18176
|
/*!
|
|
18165
|
-
* Festo UI - Web Essentials v7.3.0-dev.
|
|
18177
|
+
* Festo UI - Web Essentials v7.3.0-dev.500 (https://storybook.festo.design/)
|
|
18166
18178
|
* Copyright 2022 Festo SE & Co. KG
|
|
18167
18179
|
* Licensed under Apache-2.0
|
|
18168
18180
|
*/
|