@festo-ui/web-essentials 7.3.0-dev.498 → 7.3.0-dev.501
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 +11 -11
- 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/{festo-web-essentials-compact.css → light/festo-web-essentials-light.css} +1445 -11
- package/dist/css/light/festo-web-essentials-light.css.map +1 -0
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/scss/_fonts.scss +4 -4
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/light/_border-light.scss +75 -0
- package/dist/scss/light/_flex-light.scss +258 -0
- package/dist/scss/light/_spacing-light.scss +52 -0
- package/dist/scss/light/festo-web-essentials-light.scss +59 -0
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +1 -1
- package/scss/_fonts.scss +4 -4
- package/scss/light/_border-light.scss +75 -0
- package/scss/light/_flex-light.scss +258 -0
- package/scss/light/_spacing-light.scss +52 -0
- package/scss/light/festo-web-essentials-light.scss +59 -0
- package/dist/css/festo-web-essentials-compact.css.map +0 -1
- package/dist/scss/festo-web-essentials-compact.scss +0 -54
- package/scss/festo-web-essentials-compact.scss +0 -54
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Festo UI - Web Essentials (https://storybook.festo.design/)
|
|
2
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
3
3
|
* Copyright 2025 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 */
|
|
@@ -921,6 +921,1440 @@ template {
|
|
|
921
921
|
text-align: start;
|
|
922
922
|
}
|
|
923
923
|
|
|
924
|
+
/*!
|
|
925
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
926
|
+
* Copyright 2025 Festo SE & Co. KG
|
|
927
|
+
* Licensed under Apache-2.0
|
|
928
|
+
*/
|
|
929
|
+
.fwe-d-none {
|
|
930
|
+
display: none !important;
|
|
931
|
+
}
|
|
932
|
+
|
|
933
|
+
.fwe-d-flex {
|
|
934
|
+
display: flex !important;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.fwe-d-inline-flex {
|
|
938
|
+
display: inline-flex !important;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.fwe-d-grid {
|
|
942
|
+
display: grid !important;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.fwe-d-inline {
|
|
946
|
+
display: inline !important;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.fwe-d-block {
|
|
950
|
+
display: block !important;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
.fwe-d-inline-block {
|
|
954
|
+
display: inline-block !important;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.fwe-d-table {
|
|
958
|
+
display: table !important;
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
.fwe-d-table-cell {
|
|
962
|
+
display: table-cell !important;
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.fwe-d-table-row {
|
|
966
|
+
display: table-row !important;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
@media (min-width: 375px) {
|
|
970
|
+
.fwe-d-xxs-none {
|
|
971
|
+
display: none !important;
|
|
972
|
+
}
|
|
973
|
+
.fwe-d-xxs-flex {
|
|
974
|
+
display: flex !important;
|
|
975
|
+
}
|
|
976
|
+
.fwe-d-xxs-inline-flex {
|
|
977
|
+
display: inline-flex !important;
|
|
978
|
+
}
|
|
979
|
+
.fwe-d-xxs-grid {
|
|
980
|
+
display: grid !important;
|
|
981
|
+
}
|
|
982
|
+
.fwe-d-xxs-inline {
|
|
983
|
+
display: inline !important;
|
|
984
|
+
}
|
|
985
|
+
.fwe-d-xxs-block {
|
|
986
|
+
display: block !important;
|
|
987
|
+
}
|
|
988
|
+
.fwe-d-xxs-inline-block {
|
|
989
|
+
display: inline-block !important;
|
|
990
|
+
}
|
|
991
|
+
.fwe-d-xxs-table {
|
|
992
|
+
display: table !important;
|
|
993
|
+
}
|
|
994
|
+
.fwe-d-xxs-table-cell {
|
|
995
|
+
display: table-cell !important;
|
|
996
|
+
}
|
|
997
|
+
.fwe-d-xxs-table-row {
|
|
998
|
+
display: table-row !important;
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
@media (min-width: 600px) {
|
|
1002
|
+
.fwe-d-xs-none {
|
|
1003
|
+
display: none !important;
|
|
1004
|
+
}
|
|
1005
|
+
.fwe-d-xs-flex {
|
|
1006
|
+
display: flex !important;
|
|
1007
|
+
}
|
|
1008
|
+
.fwe-d-xs-inline-flex {
|
|
1009
|
+
display: inline-flex !important;
|
|
1010
|
+
}
|
|
1011
|
+
.fwe-d-xs-grid {
|
|
1012
|
+
display: grid !important;
|
|
1013
|
+
}
|
|
1014
|
+
.fwe-d-xs-inline {
|
|
1015
|
+
display: inline !important;
|
|
1016
|
+
}
|
|
1017
|
+
.fwe-d-xs-block {
|
|
1018
|
+
display: block !important;
|
|
1019
|
+
}
|
|
1020
|
+
.fwe-d-xs-inline-block {
|
|
1021
|
+
display: inline-block !important;
|
|
1022
|
+
}
|
|
1023
|
+
.fwe-d-xs-table {
|
|
1024
|
+
display: table !important;
|
|
1025
|
+
}
|
|
1026
|
+
.fwe-d-xs-table-cell {
|
|
1027
|
+
display: table-cell !important;
|
|
1028
|
+
}
|
|
1029
|
+
.fwe-d-xs-table-row {
|
|
1030
|
+
display: table-row !important;
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
@media (min-width: 769px) {
|
|
1034
|
+
.fwe-d-sm-none {
|
|
1035
|
+
display: none !important;
|
|
1036
|
+
}
|
|
1037
|
+
.fwe-d-sm-flex {
|
|
1038
|
+
display: flex !important;
|
|
1039
|
+
}
|
|
1040
|
+
.fwe-d-sm-inline-flex {
|
|
1041
|
+
display: inline-flex !important;
|
|
1042
|
+
}
|
|
1043
|
+
.fwe-d-sm-grid {
|
|
1044
|
+
display: grid !important;
|
|
1045
|
+
}
|
|
1046
|
+
.fwe-d-sm-inline {
|
|
1047
|
+
display: inline !important;
|
|
1048
|
+
}
|
|
1049
|
+
.fwe-d-sm-block {
|
|
1050
|
+
display: block !important;
|
|
1051
|
+
}
|
|
1052
|
+
.fwe-d-sm-inline-block {
|
|
1053
|
+
display: inline-block !important;
|
|
1054
|
+
}
|
|
1055
|
+
.fwe-d-sm-table {
|
|
1056
|
+
display: table !important;
|
|
1057
|
+
}
|
|
1058
|
+
.fwe-d-sm-table-cell {
|
|
1059
|
+
display: table-cell !important;
|
|
1060
|
+
}
|
|
1061
|
+
.fwe-d-sm-table-row {
|
|
1062
|
+
display: table-row !important;
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1065
|
+
@media (min-width: 1025px) {
|
|
1066
|
+
.fwe-d-md-none {
|
|
1067
|
+
display: none !important;
|
|
1068
|
+
}
|
|
1069
|
+
.fwe-d-md-flex {
|
|
1070
|
+
display: flex !important;
|
|
1071
|
+
}
|
|
1072
|
+
.fwe-d-md-inline-flex {
|
|
1073
|
+
display: inline-flex !important;
|
|
1074
|
+
}
|
|
1075
|
+
.fwe-d-md-grid {
|
|
1076
|
+
display: grid !important;
|
|
1077
|
+
}
|
|
1078
|
+
.fwe-d-md-inline {
|
|
1079
|
+
display: inline !important;
|
|
1080
|
+
}
|
|
1081
|
+
.fwe-d-md-block {
|
|
1082
|
+
display: block !important;
|
|
1083
|
+
}
|
|
1084
|
+
.fwe-d-md-inline-block {
|
|
1085
|
+
display: inline-block !important;
|
|
1086
|
+
}
|
|
1087
|
+
.fwe-d-md-table {
|
|
1088
|
+
display: table !important;
|
|
1089
|
+
}
|
|
1090
|
+
.fwe-d-md-table-cell {
|
|
1091
|
+
display: table-cell !important;
|
|
1092
|
+
}
|
|
1093
|
+
.fwe-d-md-table-row {
|
|
1094
|
+
display: table-row !important;
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
@media (min-width: 1281px) {
|
|
1098
|
+
.fwe-d-lg-none {
|
|
1099
|
+
display: none !important;
|
|
1100
|
+
}
|
|
1101
|
+
.fwe-d-lg-flex {
|
|
1102
|
+
display: flex !important;
|
|
1103
|
+
}
|
|
1104
|
+
.fwe-d-lg-inline-flex {
|
|
1105
|
+
display: inline-flex !important;
|
|
1106
|
+
}
|
|
1107
|
+
.fwe-d-lg-grid {
|
|
1108
|
+
display: grid !important;
|
|
1109
|
+
}
|
|
1110
|
+
.fwe-d-lg-inline {
|
|
1111
|
+
display: inline !important;
|
|
1112
|
+
}
|
|
1113
|
+
.fwe-d-lg-block {
|
|
1114
|
+
display: block !important;
|
|
1115
|
+
}
|
|
1116
|
+
.fwe-d-lg-inline-block {
|
|
1117
|
+
display: inline-block !important;
|
|
1118
|
+
}
|
|
1119
|
+
.fwe-d-lg-table {
|
|
1120
|
+
display: table !important;
|
|
1121
|
+
}
|
|
1122
|
+
.fwe-d-lg-table-cell {
|
|
1123
|
+
display: table-cell !important;
|
|
1124
|
+
}
|
|
1125
|
+
.fwe-d-lg-table-row {
|
|
1126
|
+
display: table-row !important;
|
|
1127
|
+
}
|
|
1128
|
+
}
|
|
1129
|
+
@media (min-width: 1441px) {
|
|
1130
|
+
.fwe-d-xl-none {
|
|
1131
|
+
display: none !important;
|
|
1132
|
+
}
|
|
1133
|
+
.fwe-d-xl-flex {
|
|
1134
|
+
display: flex !important;
|
|
1135
|
+
}
|
|
1136
|
+
.fwe-d-xl-inline-flex {
|
|
1137
|
+
display: inline-flex !important;
|
|
1138
|
+
}
|
|
1139
|
+
.fwe-d-xl-grid {
|
|
1140
|
+
display: grid !important;
|
|
1141
|
+
}
|
|
1142
|
+
.fwe-d-xl-inline {
|
|
1143
|
+
display: inline !important;
|
|
1144
|
+
}
|
|
1145
|
+
.fwe-d-xl-block {
|
|
1146
|
+
display: block !important;
|
|
1147
|
+
}
|
|
1148
|
+
.fwe-d-xl-inline-block {
|
|
1149
|
+
display: inline-block !important;
|
|
1150
|
+
}
|
|
1151
|
+
.fwe-d-xl-table {
|
|
1152
|
+
display: table !important;
|
|
1153
|
+
}
|
|
1154
|
+
.fwe-d-xl-table-cell {
|
|
1155
|
+
display: table-cell !important;
|
|
1156
|
+
}
|
|
1157
|
+
.fwe-d-xl-table-row {
|
|
1158
|
+
display: table-row !important;
|
|
1159
|
+
}
|
|
1160
|
+
}
|
|
1161
|
+
@media (min-width: 1921px) {
|
|
1162
|
+
.fwe-d-xxl-none {
|
|
1163
|
+
display: none !important;
|
|
1164
|
+
}
|
|
1165
|
+
.fwe-d-xxl-flex {
|
|
1166
|
+
display: flex !important;
|
|
1167
|
+
}
|
|
1168
|
+
.fwe-d-xxl-inline-flex {
|
|
1169
|
+
display: inline-flex !important;
|
|
1170
|
+
}
|
|
1171
|
+
.fwe-d-xxl-grid {
|
|
1172
|
+
display: grid !important;
|
|
1173
|
+
}
|
|
1174
|
+
.fwe-d-xxl-inline {
|
|
1175
|
+
display: inline !important;
|
|
1176
|
+
}
|
|
1177
|
+
.fwe-d-xxl-block {
|
|
1178
|
+
display: block !important;
|
|
1179
|
+
}
|
|
1180
|
+
.fwe-d-xxl-inline-block {
|
|
1181
|
+
display: inline-block !important;
|
|
1182
|
+
}
|
|
1183
|
+
.fwe-d-xxl-table {
|
|
1184
|
+
display: table !important;
|
|
1185
|
+
}
|
|
1186
|
+
.fwe-d-xxl-table-cell {
|
|
1187
|
+
display: table-cell !important;
|
|
1188
|
+
}
|
|
1189
|
+
.fwe-d-xxl-table-row {
|
|
1190
|
+
display: table-row !important;
|
|
1191
|
+
}
|
|
1192
|
+
}
|
|
1193
|
+
.fwe-sr-only {
|
|
1194
|
+
position: absolute;
|
|
1195
|
+
width: 1px;
|
|
1196
|
+
height: 1px;
|
|
1197
|
+
padding: 0;
|
|
1198
|
+
overflow: hidden;
|
|
1199
|
+
clip: rect(0, 0, 0, 0);
|
|
1200
|
+
white-space: nowrap;
|
|
1201
|
+
-webkit-clip-path: inset(50%);
|
|
1202
|
+
clip-path: inset(50%);
|
|
1203
|
+
border: 0;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.fwe-m-0 {
|
|
1207
|
+
margin: 0px !important;
|
|
1208
|
+
}
|
|
1209
|
+
|
|
1210
|
+
.fwe-mt-0 {
|
|
1211
|
+
margin-top: 0px !important;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
.fwe-mb-0 {
|
|
1215
|
+
margin-bottom: 0px !important;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.fwe-ml-0 {
|
|
1219
|
+
margin-left: 0px !important;
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
.fwe-mr-0 {
|
|
1223
|
+
margin-right: 0px !important;
|
|
1224
|
+
}
|
|
1225
|
+
|
|
1226
|
+
.fwe-mx-0 {
|
|
1227
|
+
margin-right: 0px !important;
|
|
1228
|
+
margin-left: 0px !important;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1231
|
+
.fwe-my-0 {
|
|
1232
|
+
margin-top: 0px !important;
|
|
1233
|
+
margin-bottom: 0px !important;
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
.fwe-p-0 {
|
|
1237
|
+
padding: 0px !important;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.fwe-pt-0 {
|
|
1241
|
+
padding-top: 0px !important;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
.fwe-pb-0 {
|
|
1245
|
+
padding-bottom: 0px !important;
|
|
1246
|
+
}
|
|
1247
|
+
|
|
1248
|
+
.fwe-pl-0 {
|
|
1249
|
+
padding-left: 0px !important;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.fwe-pr-0 {
|
|
1253
|
+
padding-right: 0px !important;
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
.fwe-px-0 {
|
|
1257
|
+
padding-right: 0px !important;
|
|
1258
|
+
padding-left: 0px !important;
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
.fwe-py-0 {
|
|
1262
|
+
padding-top: 0px !important;
|
|
1263
|
+
padding-bottom: 0px !important;
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
.fwe-m-xxxs {
|
|
1267
|
+
margin: 4px !important;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
.fwe-mt-xxxs {
|
|
1271
|
+
margin-top: 4px !important;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
.fwe-mb-xxxs {
|
|
1275
|
+
margin-bottom: 4px !important;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
.fwe-ml-xxxs {
|
|
1279
|
+
margin-left: 4px !important;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
.fwe-mr-xxxs {
|
|
1283
|
+
margin-right: 4px !important;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.fwe-mx-xxxs {
|
|
1287
|
+
margin-right: 4px !important;
|
|
1288
|
+
margin-left: 4px !important;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.fwe-my-xxxs {
|
|
1292
|
+
margin-top: 4px !important;
|
|
1293
|
+
margin-bottom: 4px !important;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.fwe-p-xxxs {
|
|
1297
|
+
padding: 4px !important;
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
.fwe-pt-xxxs {
|
|
1301
|
+
padding-top: 4px !important;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
.fwe-pb-xxxs {
|
|
1305
|
+
padding-bottom: 4px !important;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1308
|
+
.fwe-pl-xxxs {
|
|
1309
|
+
padding-left: 4px !important;
|
|
1310
|
+
}
|
|
1311
|
+
|
|
1312
|
+
.fwe-pr-xxxs {
|
|
1313
|
+
padding-right: 4px !important;
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.fwe-px-xxxs {
|
|
1317
|
+
padding-right: 4px !important;
|
|
1318
|
+
padding-left: 4px !important;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.fwe-py-xxxs {
|
|
1322
|
+
padding-top: 4px !important;
|
|
1323
|
+
padding-bottom: 4px !important;
|
|
1324
|
+
}
|
|
1325
|
+
|
|
1326
|
+
.fwe-m-xxs {
|
|
1327
|
+
margin: 8px !important;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
.fwe-mt-xxs {
|
|
1331
|
+
margin-top: 8px !important;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.fwe-mb-xxs {
|
|
1335
|
+
margin-bottom: 8px !important;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.fwe-ml-xxs {
|
|
1339
|
+
margin-left: 8px !important;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
.fwe-mr-xxs {
|
|
1343
|
+
margin-right: 8px !important;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.fwe-mx-xxs {
|
|
1347
|
+
margin-right: 8px !important;
|
|
1348
|
+
margin-left: 8px !important;
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
.fwe-my-xxs {
|
|
1352
|
+
margin-top: 8px !important;
|
|
1353
|
+
margin-bottom: 8px !important;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.fwe-p-xxs {
|
|
1357
|
+
padding: 8px !important;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.fwe-pt-xxs {
|
|
1361
|
+
padding-top: 8px !important;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
.fwe-pb-xxs {
|
|
1365
|
+
padding-bottom: 8px !important;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.fwe-pl-xxs {
|
|
1369
|
+
padding-left: 8px !important;
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
.fwe-pr-xxs {
|
|
1373
|
+
padding-right: 8px !important;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
.fwe-px-xxs {
|
|
1377
|
+
padding-right: 8px !important;
|
|
1378
|
+
padding-left: 8px !important;
|
|
1379
|
+
}
|
|
1380
|
+
|
|
1381
|
+
.fwe-py-xxs {
|
|
1382
|
+
padding-top: 8px !important;
|
|
1383
|
+
padding-bottom: 8px !important;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
.fwe-m-xs {
|
|
1387
|
+
margin: 12px !important;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
.fwe-mt-xs {
|
|
1391
|
+
margin-top: 12px !important;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
.fwe-mb-xs {
|
|
1395
|
+
margin-bottom: 12px !important;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
.fwe-ml-xs {
|
|
1399
|
+
margin-left: 12px !important;
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
.fwe-mr-xs {
|
|
1403
|
+
margin-right: 12px !important;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.fwe-mx-xs {
|
|
1407
|
+
margin-right: 12px !important;
|
|
1408
|
+
margin-left: 12px !important;
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
.fwe-my-xs {
|
|
1412
|
+
margin-top: 12px !important;
|
|
1413
|
+
margin-bottom: 12px !important;
|
|
1414
|
+
}
|
|
1415
|
+
|
|
1416
|
+
.fwe-p-xs {
|
|
1417
|
+
padding: 12px !important;
|
|
1418
|
+
}
|
|
1419
|
+
|
|
1420
|
+
.fwe-pt-xs {
|
|
1421
|
+
padding-top: 12px !important;
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
.fwe-pb-xs {
|
|
1425
|
+
padding-bottom: 12px !important;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
.fwe-pl-xs {
|
|
1429
|
+
padding-left: 12px !important;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
.fwe-pr-xs {
|
|
1433
|
+
padding-right: 12px !important;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.fwe-px-xs {
|
|
1437
|
+
padding-right: 12px !important;
|
|
1438
|
+
padding-left: 12px !important;
|
|
1439
|
+
}
|
|
1440
|
+
|
|
1441
|
+
.fwe-py-xs {
|
|
1442
|
+
padding-top: 12px !important;
|
|
1443
|
+
padding-bottom: 12px !important;
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
.fwe-m-s {
|
|
1447
|
+
margin: 16px !important;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
.fwe-mt-s {
|
|
1451
|
+
margin-top: 16px !important;
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
.fwe-mb-s {
|
|
1455
|
+
margin-bottom: 16px !important;
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
.fwe-ml-s {
|
|
1459
|
+
margin-left: 16px !important;
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
.fwe-mr-s {
|
|
1463
|
+
margin-right: 16px !important;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
.fwe-mx-s {
|
|
1467
|
+
margin-right: 16px !important;
|
|
1468
|
+
margin-left: 16px !important;
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
.fwe-my-s {
|
|
1472
|
+
margin-top: 16px !important;
|
|
1473
|
+
margin-bottom: 16px !important;
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
.fwe-p-s {
|
|
1477
|
+
padding: 16px !important;
|
|
1478
|
+
}
|
|
1479
|
+
|
|
1480
|
+
.fwe-pt-s {
|
|
1481
|
+
padding-top: 16px !important;
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.fwe-pb-s {
|
|
1485
|
+
padding-bottom: 16px !important;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
.fwe-pl-s {
|
|
1489
|
+
padding-left: 16px !important;
|
|
1490
|
+
}
|
|
1491
|
+
|
|
1492
|
+
.fwe-pr-s {
|
|
1493
|
+
padding-right: 16px !important;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
.fwe-px-s {
|
|
1497
|
+
padding-right: 16px !important;
|
|
1498
|
+
padding-left: 16px !important;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
.fwe-py-s {
|
|
1502
|
+
padding-top: 16px !important;
|
|
1503
|
+
padding-bottom: 16px !important;
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
.fwe-m-m {
|
|
1507
|
+
margin: 24px !important;
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
.fwe-mt-m {
|
|
1511
|
+
margin-top: 24px !important;
|
|
1512
|
+
}
|
|
1513
|
+
|
|
1514
|
+
.fwe-mb-m {
|
|
1515
|
+
margin-bottom: 24px !important;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.fwe-ml-m {
|
|
1519
|
+
margin-left: 24px !important;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
.fwe-mr-m {
|
|
1523
|
+
margin-right: 24px !important;
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
.fwe-mx-m {
|
|
1527
|
+
margin-right: 24px !important;
|
|
1528
|
+
margin-left: 24px !important;
|
|
1529
|
+
}
|
|
1530
|
+
|
|
1531
|
+
.fwe-my-m {
|
|
1532
|
+
margin-top: 24px !important;
|
|
1533
|
+
margin-bottom: 24px !important;
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
.fwe-p-m {
|
|
1537
|
+
padding: 24px !important;
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
.fwe-pt-m {
|
|
1541
|
+
padding-top: 24px !important;
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
.fwe-pb-m {
|
|
1545
|
+
padding-bottom: 24px !important;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
.fwe-pl-m {
|
|
1549
|
+
padding-left: 24px !important;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
.fwe-pr-m {
|
|
1553
|
+
padding-right: 24px !important;
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.fwe-px-m {
|
|
1557
|
+
padding-right: 24px !important;
|
|
1558
|
+
padding-left: 24px !important;
|
|
1559
|
+
}
|
|
1560
|
+
|
|
1561
|
+
.fwe-py-m {
|
|
1562
|
+
padding-top: 24px !important;
|
|
1563
|
+
padding-bottom: 24px !important;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1566
|
+
.fwe-m-l {
|
|
1567
|
+
margin: 32px !important;
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
.fwe-mt-l {
|
|
1571
|
+
margin-top: 32px !important;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.fwe-mb-l {
|
|
1575
|
+
margin-bottom: 32px !important;
|
|
1576
|
+
}
|
|
1577
|
+
|
|
1578
|
+
.fwe-ml-l {
|
|
1579
|
+
margin-left: 32px !important;
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
.fwe-mr-l {
|
|
1583
|
+
margin-right: 32px !important;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
.fwe-mx-l {
|
|
1587
|
+
margin-right: 32px !important;
|
|
1588
|
+
margin-left: 32px !important;
|
|
1589
|
+
}
|
|
1590
|
+
|
|
1591
|
+
.fwe-my-l {
|
|
1592
|
+
margin-top: 32px !important;
|
|
1593
|
+
margin-bottom: 32px !important;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.fwe-p-l {
|
|
1597
|
+
padding: 32px !important;
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
.fwe-pt-l {
|
|
1601
|
+
padding-top: 32px !important;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
.fwe-pb-l {
|
|
1605
|
+
padding-bottom: 32px !important;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
.fwe-pl-l {
|
|
1609
|
+
padding-left: 32px !important;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
.fwe-pr-l {
|
|
1613
|
+
padding-right: 32px !important;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.fwe-px-l {
|
|
1617
|
+
padding-right: 32px !important;
|
|
1618
|
+
padding-left: 32px !important;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
.fwe-py-l {
|
|
1622
|
+
padding-top: 32px !important;
|
|
1623
|
+
padding-bottom: 32px !important;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
.fwe-m-xl {
|
|
1627
|
+
margin: 48px !important;
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
.fwe-mt-xl {
|
|
1631
|
+
margin-top: 48px !important;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
.fwe-mb-xl {
|
|
1635
|
+
margin-bottom: 48px !important;
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
.fwe-ml-xl {
|
|
1639
|
+
margin-left: 48px !important;
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
.fwe-mr-xl {
|
|
1643
|
+
margin-right: 48px !important;
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
.fwe-mx-xl {
|
|
1647
|
+
margin-right: 48px !important;
|
|
1648
|
+
margin-left: 48px !important;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
.fwe-my-xl {
|
|
1652
|
+
margin-top: 48px !important;
|
|
1653
|
+
margin-bottom: 48px !important;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
.fwe-p-xl {
|
|
1657
|
+
padding: 48px !important;
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
.fwe-pt-xl {
|
|
1661
|
+
padding-top: 48px !important;
|
|
1662
|
+
}
|
|
1663
|
+
|
|
1664
|
+
.fwe-pb-xl {
|
|
1665
|
+
padding-bottom: 48px !important;
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
.fwe-pl-xl {
|
|
1669
|
+
padding-left: 48px !important;
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
.fwe-pr-xl {
|
|
1673
|
+
padding-right: 48px !important;
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.fwe-px-xl {
|
|
1677
|
+
padding-right: 48px !important;
|
|
1678
|
+
padding-left: 48px !important;
|
|
1679
|
+
}
|
|
1680
|
+
|
|
1681
|
+
.fwe-py-xl {
|
|
1682
|
+
padding-top: 48px !important;
|
|
1683
|
+
padding-bottom: 48px !important;
|
|
1684
|
+
}
|
|
1685
|
+
|
|
1686
|
+
.fwe-m-xxl {
|
|
1687
|
+
margin: 64px !important;
|
|
1688
|
+
}
|
|
1689
|
+
|
|
1690
|
+
.fwe-mt-xxl {
|
|
1691
|
+
margin-top: 64px !important;
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
.fwe-mb-xxl {
|
|
1695
|
+
margin-bottom: 64px !important;
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
.fwe-ml-xxl {
|
|
1699
|
+
margin-left: 64px !important;
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
.fwe-mr-xxl {
|
|
1703
|
+
margin-right: 64px !important;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
.fwe-mx-xxl {
|
|
1707
|
+
margin-right: 64px !important;
|
|
1708
|
+
margin-left: 64px !important;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
.fwe-my-xxl {
|
|
1712
|
+
margin-top: 64px !important;
|
|
1713
|
+
margin-bottom: 64px !important;
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1716
|
+
.fwe-p-xxl {
|
|
1717
|
+
padding: 64px !important;
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
.fwe-pt-xxl {
|
|
1721
|
+
padding-top: 64px !important;
|
|
1722
|
+
}
|
|
1723
|
+
|
|
1724
|
+
.fwe-pb-xxl {
|
|
1725
|
+
padding-bottom: 64px !important;
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
.fwe-pl-xxl {
|
|
1729
|
+
padding-left: 64px !important;
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.fwe-pr-xxl {
|
|
1733
|
+
padding-right: 64px !important;
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
.fwe-px-xxl {
|
|
1737
|
+
padding-right: 64px !important;
|
|
1738
|
+
padding-left: 64px !important;
|
|
1739
|
+
}
|
|
1740
|
+
|
|
1741
|
+
.fwe-py-xxl {
|
|
1742
|
+
padding-top: 64px !important;
|
|
1743
|
+
padding-bottom: 64px !important;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
.fwe-b {
|
|
1747
|
+
border: 1px solid var(--fwe-border) !important;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
.fwe-bt {
|
|
1751
|
+
border-top: 1px solid var(--fwe-border) !important;
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
.fwe-bb {
|
|
1755
|
+
border-bottom: 1px solid var(--fwe-border) !important;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
.fwe-bl {
|
|
1759
|
+
border-left: 1px solid var(--fwe-border) !important;
|
|
1760
|
+
}
|
|
1761
|
+
|
|
1762
|
+
.fwe-br {
|
|
1763
|
+
border-right: 1px solid var(--fwe-border) !important;
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
.fwe-bx {
|
|
1767
|
+
border-left: 1px solid var(--fwe-border) !important;
|
|
1768
|
+
border-right: 1px solid var(--fwe-border) !important;
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
.fwe-by {
|
|
1772
|
+
border-top: 1px solid var(--fwe-border) !important;
|
|
1773
|
+
border-bottom: 1px solid var(--fwe-border) !important;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
.fwe-b-none {
|
|
1777
|
+
border: none !important;
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
.fwe-bt-none {
|
|
1781
|
+
border-top: none !important;
|
|
1782
|
+
}
|
|
1783
|
+
|
|
1784
|
+
.fwe-bb-none {
|
|
1785
|
+
border-bottom: none !important;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
.fwe-bl-none {
|
|
1789
|
+
border-left: none !important;
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
.fwe-br-none {
|
|
1793
|
+
border-right: none !important;
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
.fwe-bx-none {
|
|
1797
|
+
border-left: none !important;
|
|
1798
|
+
border-right: none !important;
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
.fwe-by-none {
|
|
1802
|
+
border-top: none !important;
|
|
1803
|
+
border-bottom: none !important;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.fwe-b-disabled {
|
|
1807
|
+
border: 1px solid var(--fwe-border-disabled) !important;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.fwe-bt-disabled {
|
|
1811
|
+
border-top: 1px solid var(--fwe-border-disabled) !important;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1814
|
+
.fwe-bb-disabled {
|
|
1815
|
+
border-bottom: 1px solid var(--fwe-border-disabled) !important;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
.fwe-bl-disabled {
|
|
1819
|
+
border-left: 1px solid var(--fwe-border-disabled) !important;
|
|
1820
|
+
}
|
|
1821
|
+
|
|
1822
|
+
.fwe-br-disabled {
|
|
1823
|
+
border-right: 1px solid var(--fwe-border-disabled) !important;
|
|
1824
|
+
}
|
|
1825
|
+
|
|
1826
|
+
.fwe-bx-disabled {
|
|
1827
|
+
border-left: 1px solid var(--fwe-border-disabled) !important;
|
|
1828
|
+
border-right: 1px solid var(--fwe-border-disabled) !important;
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
.fwe-by-disabled {
|
|
1832
|
+
border-top: 1px solid var(--fwe-border-disabled) !important;
|
|
1833
|
+
border-bottom: 1px solid var(--fwe-border-disabled) !important;
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
.fwe-b-none {
|
|
1837
|
+
border: none !important;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.fwe-bt-none {
|
|
1841
|
+
border-top: none !important;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
.fwe-bb-none {
|
|
1845
|
+
border-bottom: none !important;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
.fwe-bl-none {
|
|
1849
|
+
border-left: none !important;
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
.fwe-br-none {
|
|
1853
|
+
border-right: none !important;
|
|
1854
|
+
}
|
|
1855
|
+
|
|
1856
|
+
.fwe-bx-none {
|
|
1857
|
+
border-left: none !important;
|
|
1858
|
+
border-right: none !important;
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
.fwe-by-none {
|
|
1862
|
+
border-top: none !important;
|
|
1863
|
+
border-bottom: none !important;
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
.fwe-ml-auto {
|
|
1867
|
+
margin-left: auto !important;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.fwe-mr-auto {
|
|
1871
|
+
margin-right: auto !important;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
.fwe-mt-auto {
|
|
1875
|
+
margin-top: auto !important;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
.fwe-mb-auto {
|
|
1879
|
+
margin-bottom: auto !important;
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
.fwe-order-first {
|
|
1883
|
+
order: -1;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
.fwe-order-last {
|
|
1887
|
+
order: 6;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.fwe-order-1 {
|
|
1891
|
+
order: 1;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.fwe-order-2 {
|
|
1895
|
+
order: 2;
|
|
1896
|
+
}
|
|
1897
|
+
|
|
1898
|
+
.fwe-order-3 {
|
|
1899
|
+
order: 3;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
.fwe-order-4 {
|
|
1903
|
+
order: 4;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
.fwe-order-5 {
|
|
1907
|
+
order: 5;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
.fwe-flex-auto {
|
|
1911
|
+
flex: auto !important;
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1914
|
+
.fwe-flex-grow-0 {
|
|
1915
|
+
flex-grow: 0 !important;
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1918
|
+
.fwe-flex-grow-1 {
|
|
1919
|
+
flex-grow: 1 !important;
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
.fwe-flex-grow-2 {
|
|
1923
|
+
flex-grow: 2 !important;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
.fwe-flex-grow-3 {
|
|
1927
|
+
flex-grow: 3 !important;
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
.fwe-flex-shrink-0 {
|
|
1931
|
+
flex-shrink: 0 !important;
|
|
1932
|
+
}
|
|
1933
|
+
|
|
1934
|
+
.fwe-flex-shrink-1 {
|
|
1935
|
+
flex-shrink: 1 !important;
|
|
1936
|
+
}
|
|
1937
|
+
|
|
1938
|
+
.fwe-flex-shrink-2 {
|
|
1939
|
+
flex-shrink: 2 !important;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
.fwe-flex-shrink-3 {
|
|
1943
|
+
flex-shrink: 3 !important;
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
.fwe-flex-basis-0 {
|
|
1947
|
+
flex-basis: 0 !important;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
.fwe-flex-basis-auto {
|
|
1951
|
+
flex-basis: auto !important;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
.fwe-flex-basis-fill {
|
|
1955
|
+
flex-basis: fill !important;
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
.fwe-flex-basis-max-content {
|
|
1959
|
+
flex-basis: max-content !important;
|
|
1960
|
+
}
|
|
1961
|
+
|
|
1962
|
+
.fwe-flex-basis-min-content {
|
|
1963
|
+
flex-basis: min-content !important;
|
|
1964
|
+
}
|
|
1965
|
+
|
|
1966
|
+
.fwe-flex-basis-fit-content {
|
|
1967
|
+
flex-basis: fit-content !important;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.fwe-flex-basis-content {
|
|
1971
|
+
flex-basis: content !important;
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
.fwe-flex-wrap {
|
|
1975
|
+
flex-wrap: wrap !important;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
.fwe-flex-wrap-reverse {
|
|
1979
|
+
flex-wrap: wrap-reverse !important;
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
.fwe-flex-nowrap {
|
|
1983
|
+
flex-wrap: nowrap !important;
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1986
|
+
.fwe-flex-row-nowrap {
|
|
1987
|
+
flex-flow: row nowrap !important;
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
.fwe-flex-column-wrap {
|
|
1991
|
+
flex-flow: column wrap !important;
|
|
1992
|
+
}
|
|
1993
|
+
|
|
1994
|
+
.fwe-flex-column-reverse-wrap-reverse {
|
|
1995
|
+
flex-flow: column-reverse wrap-reverse !important;
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
.fwe-flex-row {
|
|
1999
|
+
flex-direction: row !important;
|
|
2000
|
+
}
|
|
2001
|
+
|
|
2002
|
+
.fwe-flex-row-reverse {
|
|
2003
|
+
flex-direction: row-reverse !important;
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
.fwe-flex-column {
|
|
2007
|
+
flex-direction: column !important;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
.fwe-flex-column-reverse {
|
|
2011
|
+
flex-direction: column-reverse !important;
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
.fwe-align-items-normal {
|
|
2015
|
+
align-items: normal !important;
|
|
2016
|
+
}
|
|
2017
|
+
|
|
2018
|
+
.fwe-align-self-normal {
|
|
2019
|
+
align-self: normal !important;
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
.fwe-align-content-normal {
|
|
2023
|
+
align-content: normal !important;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
.fwe-justify-items-normal {
|
|
2027
|
+
justify-items: normal !important;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
.fwe-justify-self-normal {
|
|
2031
|
+
justify-self: normal !important;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
.fwe-justify-content-normal {
|
|
2035
|
+
justify-content: normal !important;
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
.fwe-align-items-stretch {
|
|
2039
|
+
align-items: stretch !important;
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2042
|
+
.fwe-align-self-stretch {
|
|
2043
|
+
align-self: stretch !important;
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
.fwe-align-content-stretch {
|
|
2047
|
+
align-content: stretch !important;
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
.fwe-justify-items-stretch {
|
|
2051
|
+
justify-items: stretch !important;
|
|
2052
|
+
}
|
|
2053
|
+
|
|
2054
|
+
.fwe-justify-self-stretch {
|
|
2055
|
+
justify-self: stretch !important;
|
|
2056
|
+
}
|
|
2057
|
+
|
|
2058
|
+
.fwe-justify-content-stretch {
|
|
2059
|
+
justify-content: stretch !important;
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
.fwe-align-items-center {
|
|
2063
|
+
align-items: center !important;
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
.fwe-align-self-center {
|
|
2067
|
+
align-self: center !important;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.fwe-align-content-center {
|
|
2071
|
+
align-content: center !important;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
.fwe-justify-items-center {
|
|
2075
|
+
justify-items: center !important;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
.fwe-justify-self-center {
|
|
2079
|
+
justify-self: center !important;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
.fwe-justify-content-center {
|
|
2083
|
+
justify-content: center !important;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
.fwe-align-items-start {
|
|
2087
|
+
align-items: start !important;
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
.fwe-align-self-start {
|
|
2091
|
+
align-self: start !important;
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
.fwe-align-content-start {
|
|
2095
|
+
align-content: start !important;
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
.fwe-justify-items-start {
|
|
2099
|
+
justify-items: start !important;
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
.fwe-justify-self-start {
|
|
2103
|
+
justify-self: start !important;
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
.fwe-justify-content-start {
|
|
2107
|
+
justify-content: start !important;
|
|
2108
|
+
}
|
|
2109
|
+
|
|
2110
|
+
.fwe-align-items-end {
|
|
2111
|
+
align-items: end !important;
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
.fwe-align-self-end {
|
|
2115
|
+
align-self: end !important;
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
.fwe-align-content-end {
|
|
2119
|
+
align-content: end !important;
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2122
|
+
.fwe-justify-items-end {
|
|
2123
|
+
justify-items: end !important;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
.fwe-justify-self-end {
|
|
2127
|
+
justify-self: end !important;
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
.fwe-justify-content-end {
|
|
2131
|
+
justify-content: end !important;
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2134
|
+
.fwe-align-items-flex-start {
|
|
2135
|
+
align-items: flex-start !important;
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
.fwe-align-self-flex-start {
|
|
2139
|
+
align-self: flex-start !important;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
.fwe-align-content-flex-start {
|
|
2143
|
+
align-content: flex-start !important;
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
.fwe-justify-items-flex-start {
|
|
2147
|
+
justify-items: flex-start !important;
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
.fwe-justify-self-flex-start {
|
|
2151
|
+
justify-self: flex-start !important;
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
.fwe-justify-content-flex-start {
|
|
2155
|
+
justify-content: flex-start !important;
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
.fwe-align-items-flex-end {
|
|
2159
|
+
align-items: flex-end !important;
|
|
2160
|
+
}
|
|
2161
|
+
|
|
2162
|
+
.fwe-align-self-flex-end {
|
|
2163
|
+
align-self: flex-end !important;
|
|
2164
|
+
}
|
|
2165
|
+
|
|
2166
|
+
.fwe-align-content-flex-end {
|
|
2167
|
+
align-content: flex-end !important;
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
.fwe-justify-items-flex-end {
|
|
2171
|
+
justify-items: flex-end !important;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
.fwe-justify-self-flex-end {
|
|
2175
|
+
justify-self: flex-end !important;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
.fwe-justify-content-flex-end {
|
|
2179
|
+
justify-content: flex-end !important;
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
.fwe-align-items-baseline {
|
|
2183
|
+
align-items: baseline !important;
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
.fwe-align-self-baseline {
|
|
2187
|
+
align-self: baseline !important;
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
.fwe-align-content-baseline {
|
|
2191
|
+
align-content: baseline !important;
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2194
|
+
.fwe-justify-items-baseline {
|
|
2195
|
+
justify-items: baseline !important;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
.fwe-justify-self-baseline {
|
|
2199
|
+
justify-self: baseline !important;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
.fwe-align-items-first baseline {
|
|
2203
|
+
align-items: first baseline !important;
|
|
2204
|
+
}
|
|
2205
|
+
|
|
2206
|
+
.fwe-align-self-first baseline {
|
|
2207
|
+
align-self: first baseline !important;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
.fwe-align-content-first baseline {
|
|
2211
|
+
align-content: first baseline !important;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
.fwe-justify-items-first baseline {
|
|
2215
|
+
justify-items: first baseline !important;
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
.fwe-justify-self-first baseline {
|
|
2219
|
+
justify-self: first baseline !important;
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
.fwe-align-items-last baseline {
|
|
2223
|
+
align-items: last baseline !important;
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
.fwe-align-self-last baseline {
|
|
2227
|
+
align-self: last baseline !important;
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
.fwe-align-content-last baseline {
|
|
2231
|
+
align-content: last baseline !important;
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.fwe-justify-items-last baseline {
|
|
2235
|
+
justify-items: last baseline !important;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
.fwe-justify-self-last baseline {
|
|
2239
|
+
justify-self: last baseline !important;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
.fwe-align-items-safe center {
|
|
2243
|
+
align-items: safe center !important;
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
.fwe-align-self-safe center {
|
|
2247
|
+
align-self: safe center !important;
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2250
|
+
.fwe-align-content-safe center {
|
|
2251
|
+
align-content: safe center !important;
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
.fwe-justify-items-safe center {
|
|
2255
|
+
justify-items: safe center !important;
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
.fwe-justify-self-safe center {
|
|
2259
|
+
justify-self: safe center !important;
|
|
2260
|
+
}
|
|
2261
|
+
|
|
2262
|
+
.fwe-align-items-unsafe center {
|
|
2263
|
+
align-items: unsafe center !important;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
.fwe-align-self-unsafe center {
|
|
2267
|
+
align-self: unsafe center !important;
|
|
2268
|
+
}
|
|
2269
|
+
|
|
2270
|
+
.fwe-align-content-unsafe center {
|
|
2271
|
+
align-content: unsafe center !important;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
.fwe-justify-items-unsafe center {
|
|
2275
|
+
justify-items: unsafe center !important;
|
|
2276
|
+
}
|
|
2277
|
+
|
|
2278
|
+
.fwe-justify-self-unsafe center {
|
|
2279
|
+
justify-self: unsafe center !important;
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
.fwe-justify-items-left {
|
|
2283
|
+
justify-items: left !important;
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
.fwe-justify-self-left {
|
|
2287
|
+
justify-self: left !important;
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
.fwe-justify-items-right {
|
|
2291
|
+
justify-items: right !important;
|
|
2292
|
+
}
|
|
2293
|
+
|
|
2294
|
+
.fwe-justify-self-right {
|
|
2295
|
+
justify-self: right !important;
|
|
2296
|
+
}
|
|
2297
|
+
|
|
2298
|
+
.fwe-align-content-space-between {
|
|
2299
|
+
align-content: space-between !important;
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2302
|
+
.fwe-justify-content-space-between {
|
|
2303
|
+
justify-content: space-between !important;
|
|
2304
|
+
}
|
|
2305
|
+
|
|
2306
|
+
.fwe-align-content-space-around {
|
|
2307
|
+
align-content: space-around !important;
|
|
2308
|
+
}
|
|
2309
|
+
|
|
2310
|
+
.fwe-justify-content-space-around {
|
|
2311
|
+
justify-content: space-around !important;
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
.fwe-align-content-space-evenly {
|
|
2315
|
+
align-content: space-evenly !important;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
.fwe-justify-content-space-evenly {
|
|
2319
|
+
justify-content: space-evenly !important;
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2322
|
+
.fwe-justify-items-auto {
|
|
2323
|
+
justify-items: auto !important;
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2326
|
+
.fwe-justify-self-auto {
|
|
2327
|
+
justify-self: auto !important;
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
.fwe-justify-items-self-start {
|
|
2331
|
+
justify-items: self-start !important;
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
.fwe-justify-self-self-start {
|
|
2335
|
+
justify-self: self-start !important;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
.fwe-justify-items-self-end {
|
|
2339
|
+
justify-items: self-end !important;
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
.fwe-justify-self-self-end {
|
|
2343
|
+
justify-self: self-end !important;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
.fwe-justify-items-legacy right {
|
|
2347
|
+
justify-items: legacy right !important;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
.fwe-justify-items-legacy left {
|
|
2351
|
+
justify-items: legacy left !important;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
.fwe-justify-items-legacy center {
|
|
2355
|
+
justify-items: legacy center !important;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
924
2358
|
.fwe-container {
|
|
925
2359
|
padding: 0 8px 0 8px;
|
|
926
2360
|
box-sizing: border-box;
|
|
@@ -1614,7 +3048,7 @@ header.fwe-fixed-header {
|
|
|
1614
3048
|
}
|
|
1615
3049
|
|
|
1616
3050
|
/*!
|
|
1617
|
-
* Festo UI - Web Essentials (https://storybook.festo.design/)
|
|
3051
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
1618
3052
|
* Copyright 2025 Festo SE & Co. KG
|
|
1619
3053
|
* Licensed under Apache-2.0
|
|
1620
3054
|
*/
|
|
@@ -2784,7 +4218,7 @@ a.fwe-btn.fwe-disabled {
|
|
|
2784
4218
|
}
|
|
2785
4219
|
|
|
2786
4220
|
/*!
|
|
2787
|
-
* Festo UI - Web Essentials (https://storybook.festo.design/)
|
|
4221
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
2788
4222
|
* Copyright 2025 Festo SE & Co. KG
|
|
2789
4223
|
* Licensed under Apache-2.0
|
|
2790
4224
|
*/
|
|
@@ -3664,7 +5098,7 @@ fieldset.fwe-progress-container label {
|
|
|
3664
5098
|
}
|
|
3665
5099
|
|
|
3666
5100
|
/*!
|
|
3667
|
-
* Festo UI - Web Essentials (https://storybook.festo.design/)
|
|
5101
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
3668
5102
|
* Copyright 2025 Festo SE & Co. KG
|
|
3669
5103
|
* Licensed under Apache-2.0
|
|
3670
5104
|
*/
|
|
@@ -3887,7 +5321,7 @@ fieldset.fwe-progress-container label {
|
|
|
3887
5321
|
}
|
|
3888
5322
|
}
|
|
3889
5323
|
/*!
|
|
3890
|
-
* Festo UI - Web Essentials (https://storybook.festo.design/)
|
|
5324
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
3891
5325
|
* Copyright 2025 Festo SE & Co. KG
|
|
3892
5326
|
* Licensed under Apache-2.0
|
|
3893
5327
|
*/
|
|
@@ -4604,7 +6038,7 @@ fieldset.fwe-progress-container label {
|
|
|
4604
6038
|
}
|
|
4605
6039
|
|
|
4606
6040
|
/*!
|
|
4607
|
-
* Festo UI - Web Essentials (https://storybook.festo.design/)
|
|
6041
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
4608
6042
|
* Copyright 2025 Festo SE & Co. KG
|
|
4609
6043
|
* Licensed under Apache-2.0
|
|
4610
6044
|
*/
|
|
@@ -5102,7 +6536,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
5102
6536
|
}
|
|
5103
6537
|
}
|
|
5104
6538
|
/*!
|
|
5105
|
-
* Festo UI - Web Essentials (https://storybook.festo.design/)
|
|
6539
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
5106
6540
|
* Copyright 2025 Festo SE & Co. KG
|
|
5107
6541
|
* Licensed under Apache-2.0
|
|
5108
6542
|
*/
|
|
@@ -5352,7 +6786,7 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
5352
6786
|
}
|
|
5353
6787
|
|
|
5354
6788
|
/*!
|
|
5355
|
-
* Festo UI - Web Essentials (https://storybook.festo.design/)
|
|
6789
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
5356
6790
|
* Copyright 2025 Festo SE & Co. KG
|
|
5357
6791
|
* Licensed under Apache-2.0
|
|
5358
6792
|
*/
|
|
@@ -5475,4 +6909,4 @@ input[type=search]::-webkit-search-cancel-button {
|
|
|
5475
6909
|
}
|
|
5476
6910
|
}
|
|
5477
6911
|
|
|
5478
|
-
/*# sourceMappingURL=festo-web-essentials-
|
|
6912
|
+
/*# sourceMappingURL=festo-web-essentials-light.css.map */
|