@festo-ui/web-essentials 8.2.0-dev.592 → 8.2.0-dev.594
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 +20 -9
- 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 +11 -0
- 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/_navbar-menu.scss +12 -1
- 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/_navbar-menu.scss +12 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
2
|
+
* Festo UI - Web Essentials v8.2.0-dev.594 (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2022 Festo SE & Co. KG
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -2979,7 +2979,7 @@ template {
|
|
|
2979
2979
|
}
|
|
2980
2980
|
|
|
2981
2981
|
/*!
|
|
2982
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
2982
|
+
* Festo UI - Web Essentials v8.2.0-dev.594 (https://storybook.festo.design/)
|
|
2983
2983
|
* Copyright 2022 Festo SE & Co. KG
|
|
2984
2984
|
* Licensed under Apache-2.0
|
|
2985
2985
|
*/
|
|
@@ -14441,7 +14441,7 @@ header.fwe-fixed-header {
|
|
|
14441
14441
|
}
|
|
14442
14442
|
|
|
14443
14443
|
/*!
|
|
14444
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
14444
|
+
* Festo UI - Web Essentials v8.2.0-dev.594 (https://storybook.festo.design/)
|
|
14445
14445
|
* Copyright 2022 Festo SE & Co. KG
|
|
14446
14446
|
* Licensed under Apache-2.0
|
|
14447
14447
|
*/
|
|
@@ -15635,7 +15635,7 @@ a.fwe-btn.fwe-disabled {
|
|
|
15635
15635
|
}
|
|
15636
15636
|
|
|
15637
15637
|
/*!
|
|
15638
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
15638
|
+
* Festo UI - Web Essentials v8.2.0-dev.594 (https://storybook.festo.design/)
|
|
15639
15639
|
* Copyright 2022 Festo SE & Co. KG
|
|
15640
15640
|
* Licensed under Apache-2.0
|
|
15641
15641
|
*/
|
|
@@ -16486,7 +16486,7 @@ fieldset.fwe-progress-container label {
|
|
|
16486
16486
|
}
|
|
16487
16487
|
|
|
16488
16488
|
/*!
|
|
16489
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
16489
|
+
* Festo UI - Web Essentials v8.2.0-dev.594 (https://storybook.festo.design/)
|
|
16490
16490
|
* Copyright 2022 Festo SE & Co. KG
|
|
16491
16491
|
* Licensed under Apache-2.0
|
|
16492
16492
|
*/
|
|
@@ -16709,7 +16709,7 @@ fieldset.fwe-progress-container label {
|
|
|
16709
16709
|
}
|
|
16710
16710
|
}
|
|
16711
16711
|
/*!
|
|
16712
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
16712
|
+
* Festo UI - Web Essentials v8.2.0-dev.594 (https://storybook.festo.design/)
|
|
16713
16713
|
* Copyright 2022 Festo SE & Co. KG
|
|
16714
16714
|
* Licensed under Apache-2.0
|
|
16715
16715
|
*/
|
|
@@ -17081,14 +17081,25 @@ fieldset.fwe-progress-container label {
|
|
|
17081
17081
|
max-height: calc(100vh - 64px);
|
|
17082
17082
|
overflow: visible;
|
|
17083
17083
|
}
|
|
17084
|
+
@media (min-width: 768px) {
|
|
17085
|
+
.fwe-navbar-menu-container.fwe-hidden {
|
|
17086
|
+
display: none;
|
|
17087
|
+
}
|
|
17088
|
+
}
|
|
17084
17089
|
@media (max-width: 767px) {
|
|
17085
17090
|
.fwe-navbar-menu-container {
|
|
17091
|
+
display: flex;
|
|
17092
|
+
transition: transform 0.3s ease;
|
|
17093
|
+
transform: translateX(0%);
|
|
17086
17094
|
width: 100% !important;
|
|
17087
17095
|
position: fixed;
|
|
17088
17096
|
top: 64px;
|
|
17089
17097
|
left: 0;
|
|
17090
17098
|
height: calc(100vh - 64px);
|
|
17091
17099
|
}
|
|
17100
|
+
.fwe-navbar-menu-container.fwe-hidden {
|
|
17101
|
+
transform: translateX(-105%);
|
|
17102
|
+
}
|
|
17092
17103
|
}
|
|
17093
17104
|
|
|
17094
17105
|
/**
|
|
@@ -17428,7 +17439,7 @@ fieldset.fwe-progress-container label {
|
|
|
17428
17439
|
}
|
|
17429
17440
|
|
|
17430
17441
|
/*!
|
|
17431
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
17442
|
+
* Festo UI - Web Essentials v8.2.0-dev.594 (https://storybook.festo.design/)
|
|
17432
17443
|
* Copyright 2022 Festo SE & Co. KG
|
|
17433
17444
|
* Licensed under Apache-2.0
|
|
17434
17445
|
*/
|
|
@@ -17926,7 +17937,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
17926
17937
|
}
|
|
17927
17938
|
}
|
|
17928
17939
|
/*!
|
|
17929
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
17940
|
+
* Festo UI - Web Essentials v8.2.0-dev.594 (https://storybook.festo.design/)
|
|
17930
17941
|
* Copyright 2022 Festo SE & Co. KG
|
|
17931
17942
|
* Licensed under Apache-2.0
|
|
17932
17943
|
*/
|
|
@@ -18180,7 +18191,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
18180
18191
|
}
|
|
18181
18192
|
|
|
18182
18193
|
/*!
|
|
18183
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
18194
|
+
* Festo UI - Web Essentials v8.2.0-dev.594 (https://storybook.festo.design/)
|
|
18184
18195
|
* Copyright 2022 Festo SE & Co. KG
|
|
18185
18196
|
* Licensed under Apache-2.0
|
|
18186
18197
|
*/
|