@festo-ui/web-essentials 8.2.0-dev.593 → 8.2.0-dev.595
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 +29 -9
- 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/light/festo-web-essentials-light.css +20 -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/_modal.scss +10 -0
- 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/_modal.scss +10 -0
- 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.595 (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.595 (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.595 (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.595 (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.595 (https://storybook.festo.design/)
|
|
16490
16490
|
* Copyright 2022 Festo SE & Co. KG
|
|
16491
16491
|
* Licensed under Apache-2.0
|
|
16492
16492
|
*/
|
|
@@ -16654,6 +16654,14 @@ fieldset.fwe-progress-container label {
|
|
|
16654
16654
|
grid-auto-columns: minmax(200px, auto);
|
|
16655
16655
|
}
|
|
16656
16656
|
|
|
16657
|
+
@keyframes fwe-modal-backdrop-fade-in {
|
|
16658
|
+
from {
|
|
16659
|
+
opacity: 0;
|
|
16660
|
+
}
|
|
16661
|
+
to {
|
|
16662
|
+
opacity: 1;
|
|
16663
|
+
}
|
|
16664
|
+
}
|
|
16657
16665
|
.fwe-modal-backdrop {
|
|
16658
16666
|
position: fixed;
|
|
16659
16667
|
background-color: rgba(0, 0, 0, 0.7);
|
|
@@ -16665,6 +16673,7 @@ fieldset.fwe-progress-container label {
|
|
|
16665
16673
|
display: flex;
|
|
16666
16674
|
align-items: center;
|
|
16667
16675
|
justify-content: center;
|
|
16676
|
+
animation: fwe-modal-backdrop-fade-in 0.3s ease-out;
|
|
16668
16677
|
}
|
|
16669
16678
|
|
|
16670
16679
|
@media (max-width: 600px), (max-height: 600px) {
|
|
@@ -16709,7 +16718,7 @@ fieldset.fwe-progress-container label {
|
|
|
16709
16718
|
}
|
|
16710
16719
|
}
|
|
16711
16720
|
/*!
|
|
16712
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
16721
|
+
* Festo UI - Web Essentials v8.2.0-dev.595 (https://storybook.festo.design/)
|
|
16713
16722
|
* Copyright 2022 Festo SE & Co. KG
|
|
16714
16723
|
* Licensed under Apache-2.0
|
|
16715
16724
|
*/
|
|
@@ -17081,14 +17090,25 @@ fieldset.fwe-progress-container label {
|
|
|
17081
17090
|
max-height: calc(100vh - 64px);
|
|
17082
17091
|
overflow: visible;
|
|
17083
17092
|
}
|
|
17093
|
+
@media (min-width: 768px) {
|
|
17094
|
+
.fwe-navbar-menu-container.fwe-hidden {
|
|
17095
|
+
display: none;
|
|
17096
|
+
}
|
|
17097
|
+
}
|
|
17084
17098
|
@media (max-width: 767px) {
|
|
17085
17099
|
.fwe-navbar-menu-container {
|
|
17100
|
+
display: flex;
|
|
17101
|
+
transition: transform 0.3s ease;
|
|
17102
|
+
transform: translateX(0%);
|
|
17086
17103
|
width: 100% !important;
|
|
17087
17104
|
position: fixed;
|
|
17088
17105
|
top: 64px;
|
|
17089
17106
|
left: 0;
|
|
17090
17107
|
height: calc(100vh - 64px);
|
|
17091
17108
|
}
|
|
17109
|
+
.fwe-navbar-menu-container.fwe-hidden {
|
|
17110
|
+
transform: translateX(-105%);
|
|
17111
|
+
}
|
|
17092
17112
|
}
|
|
17093
17113
|
|
|
17094
17114
|
/**
|
|
@@ -17428,7 +17448,7 @@ fieldset.fwe-progress-container label {
|
|
|
17428
17448
|
}
|
|
17429
17449
|
|
|
17430
17450
|
/*!
|
|
17431
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
17451
|
+
* Festo UI - Web Essentials v8.2.0-dev.595 (https://storybook.festo.design/)
|
|
17432
17452
|
* Copyright 2022 Festo SE & Co. KG
|
|
17433
17453
|
* Licensed under Apache-2.0
|
|
17434
17454
|
*/
|
|
@@ -17926,7 +17946,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
17926
17946
|
}
|
|
17927
17947
|
}
|
|
17928
17948
|
/*!
|
|
17929
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
17949
|
+
* Festo UI - Web Essentials v8.2.0-dev.595 (https://storybook.festo.design/)
|
|
17930
17950
|
* Copyright 2022 Festo SE & Co. KG
|
|
17931
17951
|
* Licensed under Apache-2.0
|
|
17932
17952
|
*/
|
|
@@ -18180,7 +18200,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
18180
18200
|
}
|
|
18181
18201
|
|
|
18182
18202
|
/*!
|
|
18183
|
-
* Festo UI - Web Essentials v8.2.0-dev.
|
|
18203
|
+
* Festo UI - Web Essentials v8.2.0-dev.595 (https://storybook.festo.design/)
|
|
18184
18204
|
* Copyright 2022 Festo SE & Co. KG
|
|
18185
18205
|
* Licensed under Apache-2.0
|
|
18186
18206
|
*/
|