@festo-ui/web-essentials 9.0.0-dev.656 → 9.0.0-dev.657
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 +35 -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 +26 -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/_misc.scss +26 -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/_misc.scss +26 -0
|
@@ -893,10 +893,30 @@ template {
|
|
|
893
893
|
width: 100% !important;
|
|
894
894
|
}
|
|
895
895
|
|
|
896
|
+
.fwe-w-unset {
|
|
897
|
+
width: unset !important;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.fwe-w-auto {
|
|
901
|
+
width: auto !important;
|
|
902
|
+
}
|
|
903
|
+
|
|
896
904
|
.fwe-h-100 {
|
|
897
905
|
height: 100% !important;
|
|
898
906
|
}
|
|
899
907
|
|
|
908
|
+
.fwe-h-unset {
|
|
909
|
+
height: unset !important;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.fwe-h-auto {
|
|
913
|
+
height: auto !important;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.fwe-word-break-break-all {
|
|
917
|
+
word-break: break-all;
|
|
918
|
+
}
|
|
919
|
+
|
|
900
920
|
.fwe-text-align-center {
|
|
901
921
|
text-align: center;
|
|
902
922
|
}
|
|
@@ -925,6 +945,12 @@ template {
|
|
|
925
945
|
cursor: pointer;
|
|
926
946
|
}
|
|
927
947
|
|
|
948
|
+
.fwe-btn-unstyled {
|
|
949
|
+
all: unset;
|
|
950
|
+
display: block;
|
|
951
|
+
cursor: pointer;
|
|
952
|
+
}
|
|
953
|
+
|
|
928
954
|
/*!
|
|
929
955
|
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
930
956
|
* Copyright 2025 Festo SE & Co. KG
|