@festo-ui/web-essentials 8.2.0-dev.594 → 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 +18 -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 +9 -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/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
|
@@ -5266,6 +5266,14 @@ fieldset.fwe-progress-container label {
|
|
|
5266
5266
|
grid-auto-columns: minmax(200px, auto);
|
|
5267
5267
|
}
|
|
5268
5268
|
|
|
5269
|
+
@keyframes fwe-modal-backdrop-fade-in {
|
|
5270
|
+
from {
|
|
5271
|
+
opacity: 0;
|
|
5272
|
+
}
|
|
5273
|
+
to {
|
|
5274
|
+
opacity: 1;
|
|
5275
|
+
}
|
|
5276
|
+
}
|
|
5269
5277
|
.fwe-modal-backdrop {
|
|
5270
5278
|
position: fixed;
|
|
5271
5279
|
background-color: rgba(0, 0, 0, 0.7);
|
|
@@ -5277,6 +5285,7 @@ fieldset.fwe-progress-container label {
|
|
|
5277
5285
|
display: flex;
|
|
5278
5286
|
align-items: center;
|
|
5279
5287
|
justify-content: center;
|
|
5288
|
+
animation: fwe-modal-backdrop-fade-in 0.3s ease-out;
|
|
5280
5289
|
}
|
|
5281
5290
|
|
|
5282
5291
|
@media (max-width: 600px), (max-height: 600px) {
|