@festo-ui/web-essentials 9.0.0-dev.663 → 9.0.0-dev.678
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/README.md +10 -1
- package/dist/css/festo-web-essentials.css +34 -2146
- 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 +0 -39
- package/dist/css/light/festo-web-essentials-light.css.map +1 -1
- package/dist/css/organisms/festo-web-essentials-organisms.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/scss/_button.scss +0 -3
- package/dist/scss/_chips.scss +0 -3
- package/dist/scss/_fonts.scss +0 -25
- package/dist/scss/_root.scss +0 -3
- package/dist/scss/_text-input.scss +0 -1
- package/dist/scss/_variables.scss +0 -3
- package/dist/scss/festo-web-essentials.scss +1 -2
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +7 -6
- package/scss/_button.scss +0 -3
- package/scss/_chips.scss +0 -3
- package/scss/_fonts.scss +0 -25
- package/scss/_root.scss +0 -3
- package/scss/_text-input.scss +0 -1
- package/scss/_variables.scss +0 -3
- package/scss/festo-web-essentials.scss +0 -1
- package/dist/css/fonts/festo_icons-16.woff2 +0 -0
- package/dist/css/fonts/festo_icons-24.woff2 +0 -0
- package/dist/css/fonts/festo_icons-32.woff2 +0 -0
- package/dist/fonts/festo_icons-16.woff2 +0 -0
- package/dist/fonts/festo_icons-24.woff2 +0 -0
- package/dist/fonts/festo_icons-32.woff2 +0 -0
- package/dist/scss/_icons.scss +0 -1579
- package/dist/scss/fonts/festo_icons-16.woff2 +0 -0
- package/dist/scss/fonts/festo_icons-24.woff2 +0 -0
- package/dist/scss/fonts/festo_icons-32.woff2 +0 -0
- package/scss/_icons.scss +0 -1579
package/dist/scss/_icons.scss
DELETED
|
@@ -1,1579 +0,0 @@
|
|
|
1
|
-
@use "variables";
|
|
2
|
-
|
|
3
|
-
.fwe-icon {
|
|
4
|
-
font-family: variables.$font-family-icons-16; // this is needed to center the icons vertically
|
|
5
|
-
font-size: variables.$font-size-base;
|
|
6
|
-
display: inline-block;
|
|
7
|
-
&:before {
|
|
8
|
-
line-height: 1;
|
|
9
|
-
display: inline-block;
|
|
10
|
-
speak-as: none;
|
|
11
|
-
font-style: normal;
|
|
12
|
-
font-weight: normal;
|
|
13
|
-
font-variant: normal;
|
|
14
|
-
text-transform: none;
|
|
15
|
-
-webkit-font-smoothing: antialiased;
|
|
16
|
-
-moz-osx-font-smoothing: grayscale;
|
|
17
|
-
font-family: variables.$font-family-icons-16;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.fwe-icon-lg {
|
|
22
|
-
font-size: 24px;
|
|
23
|
-
&:before {
|
|
24
|
-
font-family: variables.$font-family-icons-24 !important;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.fwe-icon-2x {
|
|
29
|
-
font-size: 32px;
|
|
30
|
-
&:before {
|
|
31
|
-
font-family: variables.$font-family-icons-32 !important;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.fwe-icon-3x {
|
|
36
|
-
font-size: 48px;
|
|
37
|
-
&:before {
|
|
38
|
-
font-family: variables.$font-family-icons-24 !important;
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.fwe-icon-4x {
|
|
43
|
-
font-size: 64px;
|
|
44
|
-
&:before {
|
|
45
|
-
font-family: variables.$font-family-icons-32 !important;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.fwe-icon-rotate-90 {
|
|
50
|
-
&:before {
|
|
51
|
-
transform-origin: center center;
|
|
52
|
-
transform: rotate(90deg);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.fwe-icon-rotate-180 {
|
|
57
|
-
&:before {
|
|
58
|
-
transform-origin: center center;
|
|
59
|
-
transform: rotate(180deg);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.fwe-icon-rotate-270 {
|
|
64
|
-
&:before {
|
|
65
|
-
transform-origin: center center;
|
|
66
|
-
transform: rotate(270deg);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// icon codes are copied from style.css generated by icomoon
|
|
71
|
-
.fwe-icon-arrows-collapse:before {
|
|
72
|
-
content: "\e900";
|
|
73
|
-
}
|
|
74
|
-
.fwe-icon-arrows-down:before {
|
|
75
|
-
content: "\e901";
|
|
76
|
-
}
|
|
77
|
-
.fwe-icon-arrows-exchanged-energy:before {
|
|
78
|
-
content: "\e902";
|
|
79
|
-
}
|
|
80
|
-
.fwe-icon-arrows-expand:before {
|
|
81
|
-
content: "\e903";
|
|
82
|
-
}
|
|
83
|
-
.fwe-icon-arrows-left-2:before {
|
|
84
|
-
content: "\e904";
|
|
85
|
-
}
|
|
86
|
-
.fwe-icon-arrows-left:before {
|
|
87
|
-
content: "\e905";
|
|
88
|
-
}
|
|
89
|
-
.fwe-icon-arrows-refresh:before {
|
|
90
|
-
content: "\e906";
|
|
91
|
-
}
|
|
92
|
-
.fwe-icon-arrows-reinitialize:before {
|
|
93
|
-
content: "\e907";
|
|
94
|
-
}
|
|
95
|
-
.fwe-icon-arrows-reset:before {
|
|
96
|
-
content: "\e908";
|
|
97
|
-
}
|
|
98
|
-
.fwe-icon-arrows-restart:before {
|
|
99
|
-
content: "\e909";
|
|
100
|
-
}
|
|
101
|
-
.fwe-icon-arrows-right-2:before {
|
|
102
|
-
content: "\e90a";
|
|
103
|
-
}
|
|
104
|
-
.fwe-icon-arrows-right:before {
|
|
105
|
-
content: "\e90b";
|
|
106
|
-
}
|
|
107
|
-
.fwe-icon-arrows-scale-down:before {
|
|
108
|
-
content: "\e90c";
|
|
109
|
-
}
|
|
110
|
-
.fwe-icon-arrows-scale-up:before {
|
|
111
|
-
content: "\e90d";
|
|
112
|
-
}
|
|
113
|
-
.fwe-icon-arrows-up:before {
|
|
114
|
-
content: "\e90e";
|
|
115
|
-
}
|
|
116
|
-
.fwe-icon-arrows-update:before {
|
|
117
|
-
content: "\e90f";
|
|
118
|
-
}
|
|
119
|
-
.fwe-icon-cable-adaptor:before {
|
|
120
|
-
content: "\e910";
|
|
121
|
-
}
|
|
122
|
-
.fwe-icon-cable-connector:before {
|
|
123
|
-
content: "\e911";
|
|
124
|
-
}
|
|
125
|
-
.fwe-icon-cable-monitor-adaptor:before {
|
|
126
|
-
content: "\e912";
|
|
127
|
-
}
|
|
128
|
-
.fwe-icon-cable-plug:before {
|
|
129
|
-
content: "\e913";
|
|
130
|
-
}
|
|
131
|
-
.fwe-icon-cable-usb-adaptor:before {
|
|
132
|
-
content: "\e914";
|
|
133
|
-
}
|
|
134
|
-
.fwe-icon-cable-usb-plug:before {
|
|
135
|
-
content: "\e915";
|
|
136
|
-
}
|
|
137
|
-
.fwe-icon-cable-wiring-2:before {
|
|
138
|
-
content: "\e916";
|
|
139
|
-
}
|
|
140
|
-
.fwe-icon-cable-wiring:before {
|
|
141
|
-
content: "\e917";
|
|
142
|
-
}
|
|
143
|
-
.fwe-icon-communication-communication:before {
|
|
144
|
-
content: "\e918";
|
|
145
|
-
}
|
|
146
|
-
.fwe-icon-communication-emergency-hotline:before {
|
|
147
|
-
content: "\e919";
|
|
148
|
-
}
|
|
149
|
-
.fwe-icon-communication-audio-on:before {
|
|
150
|
-
content: "\e91a";
|
|
151
|
-
}
|
|
152
|
-
.fwe-icon-communication-infoportal:before {
|
|
153
|
-
content: "\e91b";
|
|
154
|
-
}
|
|
155
|
-
.fwe-icon-communication-message-number:before {
|
|
156
|
-
content: "\e91c";
|
|
157
|
-
}
|
|
158
|
-
.fwe-icon-communication-message:before {
|
|
159
|
-
content: "\e91d";
|
|
160
|
-
}
|
|
161
|
-
.fwe-icon-communication-notification:before {
|
|
162
|
-
content: "\e91e";
|
|
163
|
-
}
|
|
164
|
-
.fwe-icon-communication-tooltip:before {
|
|
165
|
-
content: "\e91f";
|
|
166
|
-
}
|
|
167
|
-
.fwe-icon-documents-add-bookmark:before {
|
|
168
|
-
content: "\e920";
|
|
169
|
-
}
|
|
170
|
-
.fwe-icon-documents-bill-of-material:before {
|
|
171
|
-
content: "\e921";
|
|
172
|
-
}
|
|
173
|
-
.fwe-icon-documents-bookmark:before {
|
|
174
|
-
content: "\e922";
|
|
175
|
-
}
|
|
176
|
-
.fwe-icon-documents-CAD:before {
|
|
177
|
-
content: "\e923";
|
|
178
|
-
}
|
|
179
|
-
.fwe-icon-documents-certificate:before {
|
|
180
|
-
content: "\e924";
|
|
181
|
-
}
|
|
182
|
-
.fwe-icon-documents-datasheet:before {
|
|
183
|
-
content: "\e925";
|
|
184
|
-
}
|
|
185
|
-
.fwe-icon-documents-delete-bookmark:before {
|
|
186
|
-
content: "\e926";
|
|
187
|
-
}
|
|
188
|
-
.fwe-icon-documents-doc-bmp:before {
|
|
189
|
-
content: "\e927";
|
|
190
|
-
}
|
|
191
|
-
.fwe-icon-documents-doc-csv:before {
|
|
192
|
-
content: "\e928";
|
|
193
|
-
}
|
|
194
|
-
.fwe-icon-documents-doc-doc:before {
|
|
195
|
-
content: "\e929";
|
|
196
|
-
}
|
|
197
|
-
.fwe-icon-documents-doc-docx:before {
|
|
198
|
-
content: "\e92a";
|
|
199
|
-
}
|
|
200
|
-
.fwe-icon-documents-doc-eps:before {
|
|
201
|
-
content: "\e92b";
|
|
202
|
-
}
|
|
203
|
-
.fwe-icon-documents-doc-fa:before {
|
|
204
|
-
content: "\e92c";
|
|
205
|
-
}
|
|
206
|
-
.fwe-icon-documents-doc-gif:before {
|
|
207
|
-
content: "\e92d";
|
|
208
|
-
}
|
|
209
|
-
.fwe-icon-documents-doc-jpg:before {
|
|
210
|
-
content: "\e92e";
|
|
211
|
-
}
|
|
212
|
-
.fwe-icon-documents-doc-odb:before {
|
|
213
|
-
content: "\e92f";
|
|
214
|
-
}
|
|
215
|
-
.fwe-icon-documents-doc-odc:before {
|
|
216
|
-
content: "\e930";
|
|
217
|
-
}
|
|
218
|
-
.fwe-icon-documents-doc-odf:before {
|
|
219
|
-
content: "\e931";
|
|
220
|
-
}
|
|
221
|
-
.fwe-icon-documents-doc-odg:before {
|
|
222
|
-
content: "\e932";
|
|
223
|
-
}
|
|
224
|
-
.fwe-icon-documents-doc-odm:before {
|
|
225
|
-
content: "\e933";
|
|
226
|
-
}
|
|
227
|
-
.fwe-icon-documents-doc-odp:before {
|
|
228
|
-
content: "\e934";
|
|
229
|
-
}
|
|
230
|
-
.fwe-icon-documents-doc-ods:before {
|
|
231
|
-
content: "\e935";
|
|
232
|
-
}
|
|
233
|
-
.fwe-icon-documents-doc-odt:before {
|
|
234
|
-
content: "\e936";
|
|
235
|
-
}
|
|
236
|
-
.fwe-icon-documents-doc-otg:before {
|
|
237
|
-
content: "\e937";
|
|
238
|
-
}
|
|
239
|
-
.fwe-icon-documents-doc-otp:before {
|
|
240
|
-
content: "\e938";
|
|
241
|
-
}
|
|
242
|
-
.fwe-icon-documents-doc-ots:before {
|
|
243
|
-
content: "\e939";
|
|
244
|
-
}
|
|
245
|
-
.fwe-icon-documents-doc-ott:before {
|
|
246
|
-
content: "\e93a";
|
|
247
|
-
}
|
|
248
|
-
.fwe-icon-documents-doc-pa:before {
|
|
249
|
-
content: "\e93b";
|
|
250
|
-
}
|
|
251
|
-
.fwe-icon-documents-doc-pdf:before {
|
|
252
|
-
content: "\e93c";
|
|
253
|
-
}
|
|
254
|
-
.fwe-icon-documents-doc-png:before {
|
|
255
|
-
content: "\e93d";
|
|
256
|
-
}
|
|
257
|
-
.fwe-icon-documents-doc-ppt:before {
|
|
258
|
-
content: "\e93e";
|
|
259
|
-
}
|
|
260
|
-
.fwe-icon-documents-doc-pptx:before {
|
|
261
|
-
content: "\e93f";
|
|
262
|
-
}
|
|
263
|
-
.fwe-icon-documents-doc-psd:before {
|
|
264
|
-
content: "\e940";
|
|
265
|
-
}
|
|
266
|
-
.fwe-icon-documents-doc-stack:before {
|
|
267
|
-
content: "\e941";
|
|
268
|
-
}
|
|
269
|
-
.fwe-icon-documents-doc-svg:before {
|
|
270
|
-
content: "\e942";
|
|
271
|
-
}
|
|
272
|
-
.fwe-icon-documents-doc-swf:before {
|
|
273
|
-
content: "\e943";
|
|
274
|
-
}
|
|
275
|
-
.fwe-icon-documents-doc-tif:before {
|
|
276
|
-
content: "\e944";
|
|
277
|
-
}
|
|
278
|
-
.fwe-icon-documents-doc-txt:before {
|
|
279
|
-
content: "\e945";
|
|
280
|
-
}
|
|
281
|
-
.fwe-icon-documents-doc-wmf:before {
|
|
282
|
-
content: "\e946";
|
|
283
|
-
}
|
|
284
|
-
.fwe-icon-documents-doc-xls:before {
|
|
285
|
-
content: "\e947";
|
|
286
|
-
}
|
|
287
|
-
.fwe-icon-documents-doc-xlsx:before {
|
|
288
|
-
content: "\e948";
|
|
289
|
-
}
|
|
290
|
-
.fwe-icon-documents-doc-xml:before {
|
|
291
|
-
content: "\e949";
|
|
292
|
-
}
|
|
293
|
-
.fwe-icon-documents-document:before {
|
|
294
|
-
content: "\e94a";
|
|
295
|
-
}
|
|
296
|
-
.fwe-icon-documents-documentation:before {
|
|
297
|
-
content: "\e94b";
|
|
298
|
-
}
|
|
299
|
-
.fwe-icon-documents-manual:before {
|
|
300
|
-
content: "\e94c";
|
|
301
|
-
}
|
|
302
|
-
.fwe-icon-documents-movie:before {
|
|
303
|
-
content: "\e94d";
|
|
304
|
-
}
|
|
305
|
-
.fwe-icon-documents-no-data:before {
|
|
306
|
-
content: "\e94e";
|
|
307
|
-
}
|
|
308
|
-
.fwe-icon-documents-note:before {
|
|
309
|
-
content: "\e94f";
|
|
310
|
-
}
|
|
311
|
-
.fwe-icon-documents-order:before {
|
|
312
|
-
content: "\e950";
|
|
313
|
-
}
|
|
314
|
-
.fwe-icon-documents-product-generic-template:before {
|
|
315
|
-
content: "\e951";
|
|
316
|
-
}
|
|
317
|
-
.fwe-icon-documents-restore-default:before {
|
|
318
|
-
content: "\e952";
|
|
319
|
-
}
|
|
320
|
-
.fwe-icon-documents-task-done:before {
|
|
321
|
-
content: "\e953";
|
|
322
|
-
}
|
|
323
|
-
.fwe-icon-documents-terms-of-use:before {
|
|
324
|
-
content: "\e954";
|
|
325
|
-
}
|
|
326
|
-
.fwe-icon-documents-worksheet:before {
|
|
327
|
-
content: "\e955";
|
|
328
|
-
}
|
|
329
|
-
.fwe-icon-ecommerce-add-to-basket:before {
|
|
330
|
-
content: "\e956";
|
|
331
|
-
}
|
|
332
|
-
.fwe-icon-ecommerce-basket:before {
|
|
333
|
-
content: "\e957";
|
|
334
|
-
}
|
|
335
|
-
.fwe-icon-ecommerce-client:before {
|
|
336
|
-
content: "\e958";
|
|
337
|
-
}
|
|
338
|
-
.fwe-icon-ecommerce-core-range-product-outline:before {
|
|
339
|
-
content: "\e959";
|
|
340
|
-
}
|
|
341
|
-
.fwe-icon-ecommerce-core-range-product:before {
|
|
342
|
-
content: "\e95a";
|
|
343
|
-
}
|
|
344
|
-
.fwe-icon-ecommerce-costs:before {
|
|
345
|
-
content: "\e95b";
|
|
346
|
-
}
|
|
347
|
-
.fwe-icon-ecommerce-delivery-time:before {
|
|
348
|
-
content: "\e95c";
|
|
349
|
-
}
|
|
350
|
-
.fwe-icon-ecommerce-delivery:before {
|
|
351
|
-
content: "\e95d";
|
|
352
|
-
}
|
|
353
|
-
.fwe-icon-ecommerce-express-delivery:before {
|
|
354
|
-
content: "\e95e";
|
|
355
|
-
}
|
|
356
|
-
.fwe-icon-ecommerce-favorit:before {
|
|
357
|
-
content: "\e95f";
|
|
358
|
-
}
|
|
359
|
-
.fwe-icon-ecommerce-local-currency:before {
|
|
360
|
-
content: "\e960";
|
|
361
|
-
}
|
|
362
|
-
.fwe-icon-ecommerce-offer:before {
|
|
363
|
-
content: "\e961";
|
|
364
|
-
}
|
|
365
|
-
.fwe-icon-ecommerce-order-tracking:before {
|
|
366
|
-
content: "\e962";
|
|
367
|
-
}
|
|
368
|
-
.fwe-icon-ecommerce-qr-code-scan:before {
|
|
369
|
-
content: "\e963";
|
|
370
|
-
}
|
|
371
|
-
.fwe-icon-ecommerce-secure-shopping:before {
|
|
372
|
-
content: "\e964";
|
|
373
|
-
}
|
|
374
|
-
.fwe-icon-ecommerce-shopping:before {
|
|
375
|
-
content: "\e965";
|
|
376
|
-
}
|
|
377
|
-
.fwe-icon-energy-eco:before {
|
|
378
|
-
content: "\e966";
|
|
379
|
-
}
|
|
380
|
-
.fwe-icon-energy-savings:before {
|
|
381
|
-
content: "\e967";
|
|
382
|
-
}
|
|
383
|
-
.fwe-icon-fa-axis:before {
|
|
384
|
-
content: "\e968";
|
|
385
|
-
}
|
|
386
|
-
.fwe-icon-fa-compressed-air:before {
|
|
387
|
-
content: "\e969";
|
|
388
|
-
}
|
|
389
|
-
.fwe-icon-fa-connection-accessories-2:before {
|
|
390
|
-
content: "\e96a";
|
|
391
|
-
}
|
|
392
|
-
.fwe-icon-fa-connection-accessories:before {
|
|
393
|
-
content: "\e96b";
|
|
394
|
-
}
|
|
395
|
-
.fwe-icon-fa-control:before {
|
|
396
|
-
content: "\e96c";
|
|
397
|
-
}
|
|
398
|
-
.fwe-icon-fa-controller:before {
|
|
399
|
-
content: "\e96d";
|
|
400
|
-
}
|
|
401
|
-
.fwe-icon-fa-cylinder-mountings:before {
|
|
402
|
-
content: "\e96e";
|
|
403
|
-
}
|
|
404
|
-
.fwe-icon-fa-fa-positioner:before {
|
|
405
|
-
content: "\e96f";
|
|
406
|
-
}
|
|
407
|
-
.fwe-icon-fa-factory-automation:before {
|
|
408
|
-
content: "\e970";
|
|
409
|
-
}
|
|
410
|
-
.fwe-icon-fa-fitting:before {
|
|
411
|
-
content: "\e971";
|
|
412
|
-
}
|
|
413
|
-
.fwe-icon-fa-function-fitting:before {
|
|
414
|
-
content: "\e972";
|
|
415
|
-
}
|
|
416
|
-
.fwe-icon-fa-gripper:before {
|
|
417
|
-
content: "\e973";
|
|
418
|
-
}
|
|
419
|
-
.fwe-icon-fa-handlingsystems:before {
|
|
420
|
-
content: "\e974";
|
|
421
|
-
}
|
|
422
|
-
.fwe-icon-fa-linear-drive:before {
|
|
423
|
-
content: "\e975";
|
|
424
|
-
}
|
|
425
|
-
.fwe-icon-fa-montage-accessories:before {
|
|
426
|
-
content: "\e976";
|
|
427
|
-
}
|
|
428
|
-
.fwe-icon-fa-motor:before {
|
|
429
|
-
content: "\e977";
|
|
430
|
-
}
|
|
431
|
-
.fwe-icon-fa-mount-cylinder:before {
|
|
432
|
-
content: "\e978";
|
|
433
|
-
}
|
|
434
|
-
.fwe-icon-fa-mounting-kit:before {
|
|
435
|
-
content: "\e979";
|
|
436
|
-
}
|
|
437
|
-
.fwe-icon-fa-pilot-valves:before {
|
|
438
|
-
content: "\e97a";
|
|
439
|
-
}
|
|
440
|
-
.fwe-icon-fa-piston-rod-attachements:before {
|
|
441
|
-
content: "\e97b";
|
|
442
|
-
}
|
|
443
|
-
.fwe-icon-fa-pneumatic-actuator:before {
|
|
444
|
-
content: "\e97c";
|
|
445
|
-
}
|
|
446
|
-
.fwe-icon-fa-pneumatic-equipment:before {
|
|
447
|
-
content: "\e97d";
|
|
448
|
-
}
|
|
449
|
-
.fwe-icon-fa-process-automation:before {
|
|
450
|
-
content: "\e97e";
|
|
451
|
-
}
|
|
452
|
-
.fwe-icon-fa-quarter-turn-actuator:before {
|
|
453
|
-
content: "\e97f";
|
|
454
|
-
}
|
|
455
|
-
.fwe-icon-fa-ready-to-install-solutions:before {
|
|
456
|
-
content: "\e980";
|
|
457
|
-
}
|
|
458
|
-
.fwe-icon-fa-reboot-device:before {
|
|
459
|
-
content: "\e981";
|
|
460
|
-
}
|
|
461
|
-
.fwe-icon-fa-referencing:before {
|
|
462
|
-
content: "\e982";
|
|
463
|
-
}
|
|
464
|
-
.fwe-icon-fa-save-device:before {
|
|
465
|
-
content: "\e983";
|
|
466
|
-
}
|
|
467
|
-
.fwe-icon-fa-sensor-box:before {
|
|
468
|
-
content: "\e984";
|
|
469
|
-
}
|
|
470
|
-
.fwe-icon-fa-sensors:before {
|
|
471
|
-
content: "\e985";
|
|
472
|
-
}
|
|
473
|
-
.fwe-icon-fa-servo-pneumatic-2:before {
|
|
474
|
-
content: "\e986";
|
|
475
|
-
}
|
|
476
|
-
.fwe-icon-fa-servo-pneumatic:before {
|
|
477
|
-
content: "\e987";
|
|
478
|
-
}
|
|
479
|
-
.fwe-icon-fa-solenoid-actuated-media:before {
|
|
480
|
-
content: "\e988";
|
|
481
|
-
}
|
|
482
|
-
.fwe-icon-fa-solenoid-valves:before {
|
|
483
|
-
content: "\e989";
|
|
484
|
-
}
|
|
485
|
-
.fwe-icon-fa-transmission:before {
|
|
486
|
-
content: "\e98a";
|
|
487
|
-
}
|
|
488
|
-
.fwe-icon-fa-tubing:before {
|
|
489
|
-
content: "\e98b";
|
|
490
|
-
}
|
|
491
|
-
.fwe-icon-fa-vacuum-technology:before {
|
|
492
|
-
content: "\e98c";
|
|
493
|
-
}
|
|
494
|
-
.fwe-icon-fa-valve-manifolds:before {
|
|
495
|
-
content: "\e98d";
|
|
496
|
-
}
|
|
497
|
-
.fwe-icon-fa-write-all:before {
|
|
498
|
-
content: "\e98e";
|
|
499
|
-
}
|
|
500
|
-
.fwe-icon-file-delete:before {
|
|
501
|
-
content: "\e98f";
|
|
502
|
-
}
|
|
503
|
-
.fwe-icon-file-download:before {
|
|
504
|
-
content: "\e990";
|
|
505
|
-
}
|
|
506
|
-
.fwe-icon-file-edit:before {
|
|
507
|
-
content: "\e991";
|
|
508
|
-
}
|
|
509
|
-
.fwe-icon-file-export:before {
|
|
510
|
-
content: "\e992";
|
|
511
|
-
}
|
|
512
|
-
.fwe-icon-file-folder:before {
|
|
513
|
-
content: "\e993";
|
|
514
|
-
}
|
|
515
|
-
.fwe-icon-file-import:before {
|
|
516
|
-
content: "\e994";
|
|
517
|
-
}
|
|
518
|
-
.fwe-icon-file-link:before {
|
|
519
|
-
content: "\e995";
|
|
520
|
-
}
|
|
521
|
-
.fwe-icon-file-order-config:before {
|
|
522
|
-
content: "\e996";
|
|
523
|
-
}
|
|
524
|
-
.fwe-icon-file-paperclip:before {
|
|
525
|
-
content: "\e997";
|
|
526
|
-
}
|
|
527
|
-
.fwe-icon-file-printer:before {
|
|
528
|
-
content: "\e998";
|
|
529
|
-
}
|
|
530
|
-
.fwe-icon-file-project-structure:before {
|
|
531
|
-
content: "\e999";
|
|
532
|
-
}
|
|
533
|
-
.fwe-icon-file-ready-for-occupancy:before {
|
|
534
|
-
content: "\e99a";
|
|
535
|
-
}
|
|
536
|
-
.fwe-icon-file-save:before {
|
|
537
|
-
content: "\e99b";
|
|
538
|
-
}
|
|
539
|
-
.fwe-icon-file-search:before {
|
|
540
|
-
content: "\e99c";
|
|
541
|
-
}
|
|
542
|
-
.fwe-icon-file-secure:before {
|
|
543
|
-
content: "\e99d";
|
|
544
|
-
}
|
|
545
|
-
.fwe-icon-file-share:before {
|
|
546
|
-
content: "\e99e";
|
|
547
|
-
}
|
|
548
|
-
.fwe-icon-file-upload:before {
|
|
549
|
-
content: "\e99f";
|
|
550
|
-
}
|
|
551
|
-
.fwe-icon-file-visible:before {
|
|
552
|
-
content: "\e9a0";
|
|
553
|
-
}
|
|
554
|
-
.fwe-icon-image-attached-images:before {
|
|
555
|
-
content: "\e9a1";
|
|
556
|
-
}
|
|
557
|
-
.fwe-icon-image-camera:before {
|
|
558
|
-
content: "\e9a2";
|
|
559
|
-
}
|
|
560
|
-
.fwe-icon-image-focus:before {
|
|
561
|
-
content: "\e9a3";
|
|
562
|
-
}
|
|
563
|
-
.fwe-icon-image-image:before {
|
|
564
|
-
content: "\e9a4";
|
|
565
|
-
}
|
|
566
|
-
.fwe-icon-it-different-devices:before {
|
|
567
|
-
content: "\e9a5";
|
|
568
|
-
}
|
|
569
|
-
.fwe-icon-it-fax:before {
|
|
570
|
-
content: "\e9a6";
|
|
571
|
-
}
|
|
572
|
-
.fwe-icon-it-embedded-software:before {
|
|
573
|
-
content: "\e9a7";
|
|
574
|
-
}
|
|
575
|
-
.fwe-icon-it-harddrive:before {
|
|
576
|
-
content: "\e9a8";
|
|
577
|
-
}
|
|
578
|
-
.fwe-icon-it-keyboard:before {
|
|
579
|
-
content: "\e9a9";
|
|
580
|
-
}
|
|
581
|
-
.fwe-icon-it-laptop:before {
|
|
582
|
-
content: "\e9aa";
|
|
583
|
-
}
|
|
584
|
-
.fwe-icon-it-memorystick:before {
|
|
585
|
-
content: "\e9ab";
|
|
586
|
-
}
|
|
587
|
-
.fwe-icon-it-monitor:before {
|
|
588
|
-
content: "\e9ac";
|
|
589
|
-
}
|
|
590
|
-
.fwe-icon-it-mouse:before {
|
|
591
|
-
content: "\e9ad";
|
|
592
|
-
}
|
|
593
|
-
.fwe-icon-it-projector:before {
|
|
594
|
-
content: "\e9ae";
|
|
595
|
-
}
|
|
596
|
-
.fwe-icon-it-repository:before {
|
|
597
|
-
content: "\e9af";
|
|
598
|
-
}
|
|
599
|
-
.fwe-icon-it-save-permanently:before {
|
|
600
|
-
content: "\e9b0";
|
|
601
|
-
}
|
|
602
|
-
.fwe-icon-it-smartphone:before {
|
|
603
|
-
content: "\e9b1";
|
|
604
|
-
}
|
|
605
|
-
.fwe-icon-it-smartwatch:before {
|
|
606
|
-
content: "\e9b2";
|
|
607
|
-
}
|
|
608
|
-
.fwe-icon-it-software:before {
|
|
609
|
-
content: "\e9b3";
|
|
610
|
-
}
|
|
611
|
-
.fwe-icon-it-tablet:before {
|
|
612
|
-
content: "\e9b4";
|
|
613
|
-
}
|
|
614
|
-
.fwe-icon-it-update-inclusive:before {
|
|
615
|
-
content: "\e9b5";
|
|
616
|
-
}
|
|
617
|
-
.fwe-icon-it-usb:before {
|
|
618
|
-
content: "\e9b6";
|
|
619
|
-
}
|
|
620
|
-
.fwe-icon-it-workplace:before {
|
|
621
|
-
content: "\e9b7";
|
|
622
|
-
}
|
|
623
|
-
.fwe-icon-it-workstation:before {
|
|
624
|
-
content: "\e9b8";
|
|
625
|
-
}
|
|
626
|
-
.fwe-icon-language-country:before {
|
|
627
|
-
content: "\e9b9";
|
|
628
|
-
}
|
|
629
|
-
.fwe-icon-language-exchange-local-currency:before {
|
|
630
|
-
content: "\e9ba";
|
|
631
|
-
}
|
|
632
|
-
.fwe-icon-language-language:before {
|
|
633
|
-
content: "\e9bb";
|
|
634
|
-
}
|
|
635
|
-
.fwe-icon-language-maps:before {
|
|
636
|
-
content: "\e9bc";
|
|
637
|
-
}
|
|
638
|
-
.fwe-icon-list-acknowledge-all:before {
|
|
639
|
-
content: "\e9bd";
|
|
640
|
-
}
|
|
641
|
-
.fwe-icon-list-add-line:before {
|
|
642
|
-
content: "\e9be";
|
|
643
|
-
}
|
|
644
|
-
.fwe-icon-list-filter:before {
|
|
645
|
-
content: "\e9bf";
|
|
646
|
-
}
|
|
647
|
-
.fwe-icon-list-grid-view:before {
|
|
648
|
-
content: "\e9c0";
|
|
649
|
-
}
|
|
650
|
-
.fwe-icon-list-list-view:before {
|
|
651
|
-
content: "\e9c1";
|
|
652
|
-
}
|
|
653
|
-
.fwe-icon-list-variable-list:before {
|
|
654
|
-
content: "\e9c2";
|
|
655
|
-
}
|
|
656
|
-
.fwe-icon-measure-actual-position:before {
|
|
657
|
-
content: "\e9c3";
|
|
658
|
-
}
|
|
659
|
-
.fwe-icon-measure-axis-speed:before {
|
|
660
|
-
content: "\e9c4";
|
|
661
|
-
}
|
|
662
|
-
.fwe-icon-measure-consumption:before {
|
|
663
|
-
content: "\e9c5";
|
|
664
|
-
}
|
|
665
|
-
.fwe-icon-measure-current-position:before {
|
|
666
|
-
content: "\e9c6";
|
|
667
|
-
}
|
|
668
|
-
.fwe-icon-measure-flow:before {
|
|
669
|
-
content: "\e9c7";
|
|
670
|
-
}
|
|
671
|
-
.fwe-icon-measure-maintenance:before {
|
|
672
|
-
content: "\e9c8";
|
|
673
|
-
}
|
|
674
|
-
.fwe-icon-measure-pressure:before {
|
|
675
|
-
content: "\e9c9";
|
|
676
|
-
}
|
|
677
|
-
.fwe-icon-measure-revolutions:before {
|
|
678
|
-
content: "\e9ca";
|
|
679
|
-
}
|
|
680
|
-
.fwe-icon-measure-target-pos:before {
|
|
681
|
-
content: "\e9cb";
|
|
682
|
-
}
|
|
683
|
-
.fwe-icon-measure-temperature:before {
|
|
684
|
-
content: "\e9cc";
|
|
685
|
-
}
|
|
686
|
-
.fwe-icon-media-pause:before {
|
|
687
|
-
content: "\e9cd";
|
|
688
|
-
}
|
|
689
|
-
.fwe-icon-media-play:before {
|
|
690
|
-
content: "\e9ce";
|
|
691
|
-
}
|
|
692
|
-
.fwe-icon-media-save-screenshot:before {
|
|
693
|
-
content: "\e9cf";
|
|
694
|
-
}
|
|
695
|
-
.fwe-icon-media-stop:before {
|
|
696
|
-
content: "\e9d0";
|
|
697
|
-
}
|
|
698
|
-
.fwe-icon-menu-add-2:before {
|
|
699
|
-
content: "\e9d1";
|
|
700
|
-
}
|
|
701
|
-
.fwe-icon-menu-add:before {
|
|
702
|
-
content: "\e9d2";
|
|
703
|
-
}
|
|
704
|
-
.fwe-icon-menu-check:before {
|
|
705
|
-
content: "\e9d3";
|
|
706
|
-
}
|
|
707
|
-
.fwe-icon-menu-close:before {
|
|
708
|
-
content: "\e9d4";
|
|
709
|
-
}
|
|
710
|
-
.fwe-icon-menu-details:before {
|
|
711
|
-
content: "\e9d5";
|
|
712
|
-
}
|
|
713
|
-
.fwe-icon-menu-home:before {
|
|
714
|
-
content: "\e9d6";
|
|
715
|
-
}
|
|
716
|
-
.fwe-icon-menu-logout:before {
|
|
717
|
-
content: "\e9d7";
|
|
718
|
-
}
|
|
719
|
-
.fwe-icon-menu-menu:before {
|
|
720
|
-
content: "\e9d8";
|
|
721
|
-
}
|
|
722
|
-
.fwe-icon-menu-minus:before {
|
|
723
|
-
content: "\e9d9";
|
|
724
|
-
}
|
|
725
|
-
.fwe-icon-menu-more:before {
|
|
726
|
-
content: "\e9da";
|
|
727
|
-
}
|
|
728
|
-
.fwe-icon-menu-plus:before {
|
|
729
|
-
content: "\e9db";
|
|
730
|
-
}
|
|
731
|
-
.fwe-icon-menu-repair:before {
|
|
732
|
-
content: "\e9dc";
|
|
733
|
-
}
|
|
734
|
-
.fwe-icon-menu-settings:before {
|
|
735
|
-
content: "\e9dd";
|
|
736
|
-
}
|
|
737
|
-
.fwe-icon-network-bluetooth:before {
|
|
738
|
-
content: "\e9de";
|
|
739
|
-
}
|
|
740
|
-
.fwe-icon-network-cloud-network:before {
|
|
741
|
-
content: "\e9df";
|
|
742
|
-
}
|
|
743
|
-
.fwe-icon-network-cloud:before {
|
|
744
|
-
content: "\e9e0";
|
|
745
|
-
}
|
|
746
|
-
.fwe-icon-network-connected:before {
|
|
747
|
-
content: "\e9e1";
|
|
748
|
-
}
|
|
749
|
-
.fwe-icon-network-connecting:before {
|
|
750
|
-
content: "\e9e2";
|
|
751
|
-
}
|
|
752
|
-
.fwe-icon-network-digital-available:before {
|
|
753
|
-
content: "\e9e3";
|
|
754
|
-
}
|
|
755
|
-
.fwe-icon-network-disconnected:before {
|
|
756
|
-
content: "\e9e4";
|
|
757
|
-
}
|
|
758
|
-
.fwe-icon-network-download-cloud:before {
|
|
759
|
-
content: "\e9e5";
|
|
760
|
-
}
|
|
761
|
-
.fwe-icon-network-electric-accessories:before {
|
|
762
|
-
content: "\e9e6";
|
|
763
|
-
}
|
|
764
|
-
.fwe-icon-network-feldbus:before {
|
|
765
|
-
content: "\e9e7";
|
|
766
|
-
}
|
|
767
|
-
.fwe-icon-network-function-specific-system:before {
|
|
768
|
-
content: "\e9e8";
|
|
769
|
-
}
|
|
770
|
-
.fwe-icon-network-io-i:before {
|
|
771
|
-
content: "\e9e9";
|
|
772
|
-
}
|
|
773
|
-
.fwe-icon-network-io-o:before {
|
|
774
|
-
content: "\e9ea";
|
|
775
|
-
}
|
|
776
|
-
.fwe-icon-network-network:before {
|
|
777
|
-
content: "\e9eb";
|
|
778
|
-
}
|
|
779
|
-
.fwe-icon-network-remote-io:before {
|
|
780
|
-
content: "\e9ec";
|
|
781
|
-
}
|
|
782
|
-
.fwe-icon-network-show-nuggets:before {
|
|
783
|
-
content: "\e9ed";
|
|
784
|
-
}
|
|
785
|
-
.fwe-icon-network-upload-cloud:before {
|
|
786
|
-
content: "\e9ee";
|
|
787
|
-
}
|
|
788
|
-
.fwe-icon-operate-button-press:before {
|
|
789
|
-
content: "\e9ef";
|
|
790
|
-
}
|
|
791
|
-
.fwe-icon-operate-commissioning:before {
|
|
792
|
-
content: "\e9f0";
|
|
793
|
-
}
|
|
794
|
-
.fwe-icon-operate-commit-value:before {
|
|
795
|
-
content: "\e9f1";
|
|
796
|
-
}
|
|
797
|
-
.fwe-icon-operate-drag-and-drop:before {
|
|
798
|
-
content: "\e9f2";
|
|
799
|
-
}
|
|
800
|
-
.fwe-icon-operate-engineering-information:before {
|
|
801
|
-
content: "\e9f3";
|
|
802
|
-
}
|
|
803
|
-
.fwe-icon-operate-hand-use:before {
|
|
804
|
-
content: "\e9f4";
|
|
805
|
-
}
|
|
806
|
-
.fwe-icon-operate-like:before {
|
|
807
|
-
content: "\e9f5";
|
|
808
|
-
}
|
|
809
|
-
.fwe-icon-operate-simple-handling:before {
|
|
810
|
-
content: "\e9f6";
|
|
811
|
-
}
|
|
812
|
-
.fwe-icon-operate-skip-maintenance:before {
|
|
813
|
-
content: "\e9f7";
|
|
814
|
-
}
|
|
815
|
-
.fwe-icon-operate-tools:before {
|
|
816
|
-
content: "\e9f8";
|
|
817
|
-
}
|
|
818
|
-
.fwe-icon-pa-angle-seat-valves:before {
|
|
819
|
-
content: "\e9f9";
|
|
820
|
-
}
|
|
821
|
-
.fwe-icon-pa-positioner:before {
|
|
822
|
-
content: "\e9fa";
|
|
823
|
-
}
|
|
824
|
-
.fwe-icon-pa-process-and-media-valves:before {
|
|
825
|
-
content: "\e9fb";
|
|
826
|
-
}
|
|
827
|
-
.fwe-icon-pa-valve:before {
|
|
828
|
-
content: "\e9fc";
|
|
829
|
-
}
|
|
830
|
-
.fwe-icon-people-add-user:before {
|
|
831
|
-
content: "\e9fd";
|
|
832
|
-
}
|
|
833
|
-
.fwe-icon-people-admin-settings:before {
|
|
834
|
-
content: "\e9fe";
|
|
835
|
-
}
|
|
836
|
-
.fwe-icon-people-qualification:before {
|
|
837
|
-
content: "\e9ff";
|
|
838
|
-
}
|
|
839
|
-
.fwe-icon-people-user-administration:before {
|
|
840
|
-
content: "\ea00";
|
|
841
|
-
}
|
|
842
|
-
.fwe-icon-people-user:before {
|
|
843
|
-
content: "\ea01";
|
|
844
|
-
}
|
|
845
|
-
.fwe-icon-program-lin-axispos:before {
|
|
846
|
-
content: "\ea02";
|
|
847
|
-
}
|
|
848
|
-
.fwe-icon-program-module:before {
|
|
849
|
-
content: "\ea03";
|
|
850
|
-
}
|
|
851
|
-
.fwe-icon-program-ptp-axispos:before {
|
|
852
|
-
content: "\ea04";
|
|
853
|
-
}
|
|
854
|
-
.fwe-icon-program-ptp-cartpos:before {
|
|
855
|
-
content: "\ea05";
|
|
856
|
-
}
|
|
857
|
-
.fwe-icon-status-check-status:before {
|
|
858
|
-
content: "\ea06";
|
|
859
|
-
}
|
|
860
|
-
.fwe-icon-status-deny:before {
|
|
861
|
-
content: "\ea07";
|
|
862
|
-
}
|
|
863
|
-
.fwe-icon-status-explosion-protection:before {
|
|
864
|
-
content: "\ea08";
|
|
865
|
-
}
|
|
866
|
-
.fwe-icon-status-failure:before {
|
|
867
|
-
content: "\ea09";
|
|
868
|
-
}
|
|
869
|
-
.fwe-icon-status-help:before {
|
|
870
|
-
content: "\ea0a";
|
|
871
|
-
}
|
|
872
|
-
.fwe-icon-status-info:before {
|
|
873
|
-
content: "\ea0b";
|
|
874
|
-
}
|
|
875
|
-
.fwe-icon-status-warning:before {
|
|
876
|
-
content: "\ea0c";
|
|
877
|
-
}
|
|
878
|
-
.fwe-icon-time-calendar:before {
|
|
879
|
-
content: "\ea0d";
|
|
880
|
-
}
|
|
881
|
-
.fwe-icon-time-moving-time-filled:before {
|
|
882
|
-
content: "\ea0e";
|
|
883
|
-
}
|
|
884
|
-
.fwe-icon-time-moving-time:before {
|
|
885
|
-
content: "\ea0f";
|
|
886
|
-
}
|
|
887
|
-
.fwe-icon-time-recently-used:before {
|
|
888
|
-
content: "\ea10";
|
|
889
|
-
}
|
|
890
|
-
.fwe-icon-time-time:before {
|
|
891
|
-
content: "\ea11";
|
|
892
|
-
}
|
|
893
|
-
.fwe-icon-trace-coordinate:before {
|
|
894
|
-
content: "\ea12";
|
|
895
|
-
}
|
|
896
|
-
.fwe-icon-trace-economically:before {
|
|
897
|
-
content: "\ea13";
|
|
898
|
-
}
|
|
899
|
-
.fwe-icon-trace-lin-cartpos:before {
|
|
900
|
-
content: "\ea14";
|
|
901
|
-
}
|
|
902
|
-
.fwe-icon-trace-progress:before {
|
|
903
|
-
content: "\ea15";
|
|
904
|
-
}
|
|
905
|
-
.fwe-icon-trace-read-trace:before {
|
|
906
|
-
content: "\ea16";
|
|
907
|
-
}
|
|
908
|
-
.fwe-icon-trace-start-trace:before {
|
|
909
|
-
content: "\ea17";
|
|
910
|
-
}
|
|
911
|
-
.fwe-icon-action:before {
|
|
912
|
-
content: "\ea18";
|
|
913
|
-
}
|
|
914
|
-
.fwe-icon-adaptive-learning-path:before {
|
|
915
|
-
content: "\ea19";
|
|
916
|
-
}
|
|
917
|
-
.fwe-icon-audio-off:before {
|
|
918
|
-
content: "\ea1a";
|
|
919
|
-
}
|
|
920
|
-
.fwe-icon-chameleon:before {
|
|
921
|
-
content: "\ea1b";
|
|
922
|
-
}
|
|
923
|
-
.fwe-icon-close-small:before {
|
|
924
|
-
content: "\ea1c";
|
|
925
|
-
}
|
|
926
|
-
.fwe-icon-comment-rate:before {
|
|
927
|
-
content: "\ea1d";
|
|
928
|
-
}
|
|
929
|
-
.fwe-icon-competency-management:before {
|
|
930
|
-
content: "\ea1e";
|
|
931
|
-
}
|
|
932
|
-
.fwe-icon-competency:before {
|
|
933
|
-
content: "\ea1f";
|
|
934
|
-
}
|
|
935
|
-
.fwe-icon-copyright:before {
|
|
936
|
-
content: "\ea20";
|
|
937
|
-
}
|
|
938
|
-
.fwe-icon-course:before {
|
|
939
|
-
content: "\ea21";
|
|
940
|
-
}
|
|
941
|
-
.fwe-icon-elephant:before {
|
|
942
|
-
content: "\ea22";
|
|
943
|
-
}
|
|
944
|
-
.fwe-icon-export-pdf:before {
|
|
945
|
-
content: "\ea23";
|
|
946
|
-
}
|
|
947
|
-
.fwe-icon-fish:before {
|
|
948
|
-
content: "\ea24";
|
|
949
|
-
}
|
|
950
|
-
.fwe-icon-flower:before {
|
|
951
|
-
content: "\ea25";
|
|
952
|
-
}
|
|
953
|
-
.fwe-icon-formula:before {
|
|
954
|
-
content: "\ea26";
|
|
955
|
-
}
|
|
956
|
-
.fwe-icon-glossary:before {
|
|
957
|
-
content: "\ea27";
|
|
958
|
-
}
|
|
959
|
-
.fwe-icon-group-learner:before {
|
|
960
|
-
content: "\ea28";
|
|
961
|
-
}
|
|
962
|
-
.fwe-icon-learner:before {
|
|
963
|
-
content: "\ea29";
|
|
964
|
-
}
|
|
965
|
-
.fwe-icon-learning-analytics:before {
|
|
966
|
-
content: "\ea2a";
|
|
967
|
-
}
|
|
968
|
-
.fwe-icon-learning-library:before {
|
|
969
|
-
content: "\ea2b";
|
|
970
|
-
}
|
|
971
|
-
.fwe-icon-learning-path:before {
|
|
972
|
-
content: "\ea2c";
|
|
973
|
-
}
|
|
974
|
-
.fwe-icon-learning-unit:before {
|
|
975
|
-
content: "\ea2d";
|
|
976
|
-
}
|
|
977
|
-
.fwe-icon-nugget:before {
|
|
978
|
-
content: "\ea2e";
|
|
979
|
-
}
|
|
980
|
-
.fwe-icon-puzzle:before {
|
|
981
|
-
content: "\ea2f";
|
|
982
|
-
}
|
|
983
|
-
.fwe-icon-sort-by:before {
|
|
984
|
-
content: "\ea30";
|
|
985
|
-
}
|
|
986
|
-
.fwe-icon-sound-off:before {
|
|
987
|
-
content: "\ea31";
|
|
988
|
-
}
|
|
989
|
-
.fwe-icon-sound-on:before {
|
|
990
|
-
content: "\ea32";
|
|
991
|
-
}
|
|
992
|
-
.fwe-icon-speaker-text-off:before {
|
|
993
|
-
content: "\ea33";
|
|
994
|
-
}
|
|
995
|
-
.fwe-icon-speaker-text-on:before {
|
|
996
|
-
content: "\ea34";
|
|
997
|
-
}
|
|
998
|
-
.fwe-icon-swipe:before {
|
|
999
|
-
content: "\ea35";
|
|
1000
|
-
}
|
|
1001
|
-
.fwe-icon-tag-draft:before {
|
|
1002
|
-
content: "\ea36";
|
|
1003
|
-
}
|
|
1004
|
-
.fwe-icon-tag-new:before {
|
|
1005
|
-
content: "\ea37";
|
|
1006
|
-
}
|
|
1007
|
-
.fwe-icon-tec2screen:before {
|
|
1008
|
-
content: "\ea38";
|
|
1009
|
-
}
|
|
1010
|
-
.fwe-icon-time-time-outline:before {
|
|
1011
|
-
content: "\ea39";
|
|
1012
|
-
}
|
|
1013
|
-
.fwe-icon-unite:before {
|
|
1014
|
-
content: "\ea3a";
|
|
1015
|
-
}
|
|
1016
|
-
.fwe-icon-accordion:before {
|
|
1017
|
-
content: "\ea3b";
|
|
1018
|
-
}
|
|
1019
|
-
.fwe-icon-assignment:before {
|
|
1020
|
-
content: "\ea3c";
|
|
1021
|
-
}
|
|
1022
|
-
.fwe-icon-enumeration:before {
|
|
1023
|
-
content: "\ea3d";
|
|
1024
|
-
}
|
|
1025
|
-
.fwe-icon-headline:before {
|
|
1026
|
-
content: "\ea3e";
|
|
1027
|
-
}
|
|
1028
|
-
.fwe-icon-installation-guide:before {
|
|
1029
|
-
content: "\ea3f";
|
|
1030
|
-
}
|
|
1031
|
-
.fwe-icon-my-organisation:before {
|
|
1032
|
-
content: "\ea40";
|
|
1033
|
-
}
|
|
1034
|
-
.fwe-icon-subline:before {
|
|
1035
|
-
content: "\ea41";
|
|
1036
|
-
}
|
|
1037
|
-
.fwe-icon-table:before {
|
|
1038
|
-
content: "\ea42";
|
|
1039
|
-
}
|
|
1040
|
-
.fwe-icon-user-license:before {
|
|
1041
|
-
content: "\ea43";
|
|
1042
|
-
}
|
|
1043
|
-
.fwe-icon-alias:before {
|
|
1044
|
-
content: "\ea44";
|
|
1045
|
-
}
|
|
1046
|
-
.fwe-icon-automatic-mode:before {
|
|
1047
|
-
content: "\ea45";
|
|
1048
|
-
}
|
|
1049
|
-
.fwe-icon-cartesian:before {
|
|
1050
|
-
content: "\ea46";
|
|
1051
|
-
}
|
|
1052
|
-
.fwe-icon-chains-of-components-alias:before {
|
|
1053
|
-
content: "\ea47";
|
|
1054
|
-
}
|
|
1055
|
-
.fwe-icon-circuit:before {
|
|
1056
|
-
content: "\ea48";
|
|
1057
|
-
}
|
|
1058
|
-
.fwe-icon-code:before {
|
|
1059
|
-
content: "\ea49";
|
|
1060
|
-
}
|
|
1061
|
-
.fwe-icon-component:before {
|
|
1062
|
-
content: "\ea4a";
|
|
1063
|
-
}
|
|
1064
|
-
.fwe-icon-condition:before {
|
|
1065
|
-
content: "\ea4b";
|
|
1066
|
-
}
|
|
1067
|
-
.fwe-icon-dashboard:before {
|
|
1068
|
-
content: "\ea4c";
|
|
1069
|
-
}
|
|
1070
|
-
.fwe-icon-feldbus-sps:before {
|
|
1071
|
-
content: "\ea4d";
|
|
1072
|
-
}
|
|
1073
|
-
.fwe-icon-joints:before {
|
|
1074
|
-
content: "\ea4e";
|
|
1075
|
-
}
|
|
1076
|
-
.fwe-icon-library:before {
|
|
1077
|
-
content: "\ea4f";
|
|
1078
|
-
}
|
|
1079
|
-
.fwe-icon-location:before {
|
|
1080
|
-
content: "\ea50";
|
|
1081
|
-
}
|
|
1082
|
-
.fwe-icon-logout:before {
|
|
1083
|
-
content: "\ea51";
|
|
1084
|
-
}
|
|
1085
|
-
.fwe-icon-loop:before {
|
|
1086
|
-
content: "\ea52";
|
|
1087
|
-
}
|
|
1088
|
-
.fwe-icon-machine:before {
|
|
1089
|
-
content: "\ea53";
|
|
1090
|
-
}
|
|
1091
|
-
.fwe-icon-manual-mode:before {
|
|
1092
|
-
content: "\ea54";
|
|
1093
|
-
}
|
|
1094
|
-
.fwe-icon-move:before {
|
|
1095
|
-
content: "\ea55";
|
|
1096
|
-
}
|
|
1097
|
-
.fwe-icon-norm-compliant-event:before {
|
|
1098
|
-
content: "\ea56";
|
|
1099
|
-
}
|
|
1100
|
-
.fwe-icon-pallatize:before {
|
|
1101
|
-
content: "\ea57";
|
|
1102
|
-
}
|
|
1103
|
-
.fwe-icon-power-off:before {
|
|
1104
|
-
content: "\ea58";
|
|
1105
|
-
}
|
|
1106
|
-
.fwe-icon-power-on:before {
|
|
1107
|
-
content: "\ea59";
|
|
1108
|
-
}
|
|
1109
|
-
.fwe-icon-project-alias:before {
|
|
1110
|
-
content: "\ea5a";
|
|
1111
|
-
}
|
|
1112
|
-
.fwe-icon-reduced:before {
|
|
1113
|
-
content: "\ea5b";
|
|
1114
|
-
}
|
|
1115
|
-
.fwe-icon-save-to-clipboard:before {
|
|
1116
|
-
content: "\ea5c";
|
|
1117
|
-
}
|
|
1118
|
-
.fwe-icon-sensor:before {
|
|
1119
|
-
content: "\ea5d";
|
|
1120
|
-
}
|
|
1121
|
-
.fwe-icon-show-in-list:before {
|
|
1122
|
-
content: "\ea5e";
|
|
1123
|
-
}
|
|
1124
|
-
.fwe-icon-unlocked:before {
|
|
1125
|
-
content: "\ea5f";
|
|
1126
|
-
}
|
|
1127
|
-
.fwe-icon-upload-history:before {
|
|
1128
|
-
content: "\ea60";
|
|
1129
|
-
}
|
|
1130
|
-
.fwe-icon-worksheet-alias:before {
|
|
1131
|
-
content: "\ea61";
|
|
1132
|
-
}
|
|
1133
|
-
.fwe-icon-analysis-compressed-air-consumption:before {
|
|
1134
|
-
content: "\ea62";
|
|
1135
|
-
}
|
|
1136
|
-
.fwe-icon-analysis-compressed-air-generation:before {
|
|
1137
|
-
content: "\ea63";
|
|
1138
|
-
}
|
|
1139
|
-
.fwe-icon-analysis-compressed-air-quality:before {
|
|
1140
|
-
content: "\ea64";
|
|
1141
|
-
}
|
|
1142
|
-
.fwe-icon-balance:before {
|
|
1143
|
-
content: "\ea65";
|
|
1144
|
-
}
|
|
1145
|
-
.fwe-icon-compressed-air-energy-efficiency:before {
|
|
1146
|
-
content: "\ea66";
|
|
1147
|
-
}
|
|
1148
|
-
.fwe-icon-leakage-detection:before {
|
|
1149
|
-
content: "\ea67";
|
|
1150
|
-
}
|
|
1151
|
-
.fwe-icon-machine-analysis:before {
|
|
1152
|
-
content: "\ea68";
|
|
1153
|
-
}
|
|
1154
|
-
.fwe-icon-mechanic-gripper-close:before {
|
|
1155
|
-
content: "\ea69";
|
|
1156
|
-
}
|
|
1157
|
-
.fwe-icon-mechanic-gripper-open:before {
|
|
1158
|
-
content: "\ea6a";
|
|
1159
|
-
}
|
|
1160
|
-
.fwe-icon-security:before {
|
|
1161
|
-
content: "\ea6b";
|
|
1162
|
-
}
|
|
1163
|
-
.fwe-icon-status:before {
|
|
1164
|
-
content: "\ea6c";
|
|
1165
|
-
}
|
|
1166
|
-
.fwe-icon-vacuum-suction-close:before {
|
|
1167
|
-
content: "\ea6d";
|
|
1168
|
-
}
|
|
1169
|
-
.fwe-icon-vacuum-suction-open:before {
|
|
1170
|
-
content: "\ea6e";
|
|
1171
|
-
}
|
|
1172
|
-
.fwe-icon-page-configure:before {
|
|
1173
|
-
content: "\ea6f";
|
|
1174
|
-
}
|
|
1175
|
-
.fwe-icon-compare:before {
|
|
1176
|
-
content: "\ea70";
|
|
1177
|
-
}
|
|
1178
|
-
.fwe-icon-contact:before {
|
|
1179
|
-
content: "\ea71";
|
|
1180
|
-
}
|
|
1181
|
-
.fwe-icon-copy:before {
|
|
1182
|
-
content: "\ea72";
|
|
1183
|
-
}
|
|
1184
|
-
.fwe-icon-duplicate:before {
|
|
1185
|
-
content: "\ea73";
|
|
1186
|
-
}
|
|
1187
|
-
.fwe-icon-group:before {
|
|
1188
|
-
content: "\ea74";
|
|
1189
|
-
}
|
|
1190
|
-
.fwe-icon-in-progress:before {
|
|
1191
|
-
content: "\ea75";
|
|
1192
|
-
}
|
|
1193
|
-
.fwe-icon-motion-terminal:before {
|
|
1194
|
-
content: "\ea76";
|
|
1195
|
-
}
|
|
1196
|
-
.fwe-icon-move-circular:before {
|
|
1197
|
-
content: "\ea77";
|
|
1198
|
-
}
|
|
1199
|
-
.fwe-icon-move-linear:before {
|
|
1200
|
-
content: "\ea78";
|
|
1201
|
-
}
|
|
1202
|
-
.fwe-icon-move-ptp:before {
|
|
1203
|
-
content: "\ea79";
|
|
1204
|
-
}
|
|
1205
|
-
.fwe-icon-move-skill:before {
|
|
1206
|
-
content: "\ea7a";
|
|
1207
|
-
}
|
|
1208
|
-
.fwe-icon-move-spline:before {
|
|
1209
|
-
content: "\ea7b";
|
|
1210
|
-
}
|
|
1211
|
-
.fwe-icon-paste:before {
|
|
1212
|
-
content: "\ea7c";
|
|
1213
|
-
}
|
|
1214
|
-
.fwe-icon-ringing:before {
|
|
1215
|
-
content: "\ea7d";
|
|
1216
|
-
}
|
|
1217
|
-
.fwe-icon-ungroup:before {
|
|
1218
|
-
content: "\ea7e";
|
|
1219
|
-
}
|
|
1220
|
-
.fwe-icon-wifi:before {
|
|
1221
|
-
content: "\ea7f";
|
|
1222
|
-
}
|
|
1223
|
-
.fwe-icon-training-consulting:before {
|
|
1224
|
-
content: "\ea80";
|
|
1225
|
-
}
|
|
1226
|
-
.fwe-icon-reduce-pressure:before {
|
|
1227
|
-
content: "\ea81";
|
|
1228
|
-
}
|
|
1229
|
-
.fwe-icon-dimension-correctly:before {
|
|
1230
|
-
content: "\ea82";
|
|
1231
|
-
}
|
|
1232
|
-
.fwe-icon-shorten-hose-length:before {
|
|
1233
|
-
content: "\ea83";
|
|
1234
|
-
}
|
|
1235
|
-
.fwe-icon-reduce-leckage:before {
|
|
1236
|
-
content: "\ea84";
|
|
1237
|
-
}
|
|
1238
|
-
.fwe-icon-air-saving-circuit:before {
|
|
1239
|
-
content: "\ea85";
|
|
1240
|
-
}
|
|
1241
|
-
.fwe-icon-reduce-pressure-drop:before {
|
|
1242
|
-
content: "\ea86";
|
|
1243
|
-
}
|
|
1244
|
-
.fwe-icon-efficient-control:before {
|
|
1245
|
-
content: "\ea87";
|
|
1246
|
-
}
|
|
1247
|
-
.fwe-icon-measurement-technology:before {
|
|
1248
|
-
content: "\ea88";
|
|
1249
|
-
}
|
|
1250
|
-
.fwe-icon-select-component:before {
|
|
1251
|
-
content: "\ea89";
|
|
1252
|
-
}
|
|
1253
|
-
.fwe-icon-reduce-weight:before {
|
|
1254
|
-
content: "\ea8a";
|
|
1255
|
-
}
|
|
1256
|
-
.fwe-icon-recover-energy:before {
|
|
1257
|
-
content: "\ea8b";
|
|
1258
|
-
}
|
|
1259
|
-
.fwe-icon-reduce-friction:before {
|
|
1260
|
-
content: "\ea8c";
|
|
1261
|
-
}
|
|
1262
|
-
.fwe-icon-energy-on:before {
|
|
1263
|
-
content: "\ea8d";
|
|
1264
|
-
}
|
|
1265
|
-
.fwe-icon-energy-off:before {
|
|
1266
|
-
content: "\ea8e";
|
|
1267
|
-
}
|
|
1268
|
-
.fwe-icon-code-library:before {
|
|
1269
|
-
content: "\ea8f";
|
|
1270
|
-
}
|
|
1271
|
-
.fwe-icon-codesys:before {
|
|
1272
|
-
content: "\ea90";
|
|
1273
|
-
}
|
|
1274
|
-
.fwe-icon-driver:before {
|
|
1275
|
-
content: "\ea91";
|
|
1276
|
-
}
|
|
1277
|
-
.fwe-icon-firmware:before {
|
|
1278
|
-
content: "\ea92";
|
|
1279
|
-
}
|
|
1280
|
-
.fwe-icon-i-o-link:before {
|
|
1281
|
-
content: "\ea93";
|
|
1282
|
-
}
|
|
1283
|
-
.fwe-icon-middleware:before {
|
|
1284
|
-
content: "\ea94";
|
|
1285
|
-
}
|
|
1286
|
-
.fwe-icon-plugin:before {
|
|
1287
|
-
content: "\ea95";
|
|
1288
|
-
}
|
|
1289
|
-
.fwe-icon-calculator:before {
|
|
1290
|
-
content: "\ea96";
|
|
1291
|
-
}
|
|
1292
|
-
.fwe-icon-design:before {
|
|
1293
|
-
content: "\ea97";
|
|
1294
|
-
}
|
|
1295
|
-
.fwe-icon-first-time-use:before {
|
|
1296
|
-
content: "\ea98";
|
|
1297
|
-
}
|
|
1298
|
-
.fwe-icon-flow-control:before {
|
|
1299
|
-
content: "\ea99";
|
|
1300
|
-
}
|
|
1301
|
-
.fwe-icon-news-services:before {
|
|
1302
|
-
content: "\ea9a";
|
|
1303
|
-
}
|
|
1304
|
-
.fwe-icon-pressure-control:before {
|
|
1305
|
-
content: "\ea9b";
|
|
1306
|
-
}
|
|
1307
|
-
.fwe-icon-services:before {
|
|
1308
|
-
content: "\ea9c";
|
|
1309
|
-
}
|
|
1310
|
-
.fwe-icon-simulation:before {
|
|
1311
|
-
content: "\ea9d";
|
|
1312
|
-
}
|
|
1313
|
-
.fwe-icon-control-valve:before {
|
|
1314
|
-
content: "\ea9e";
|
|
1315
|
-
}
|
|
1316
|
-
.fwe-icon-country-selector:before {
|
|
1317
|
-
content: "\ea9f";
|
|
1318
|
-
}
|
|
1319
|
-
.fwe-icon-dosing-heads:before {
|
|
1320
|
-
content: "\eaa0";
|
|
1321
|
-
}
|
|
1322
|
-
.fwe-icon-single-valve:before {
|
|
1323
|
-
content: "\eaa1";
|
|
1324
|
-
}
|
|
1325
|
-
.fwe-icon-show-course:before {
|
|
1326
|
-
content: "\eaa2";
|
|
1327
|
-
}
|
|
1328
|
-
.fwe-icon-show-equipment:before {
|
|
1329
|
-
content: "\eaa3";
|
|
1330
|
-
}
|
|
1331
|
-
.fwe-icon-show-group:before {
|
|
1332
|
-
content: "\eaa4";
|
|
1333
|
-
}
|
|
1334
|
-
.fwe-icon-show-results:before {
|
|
1335
|
-
content: "\eaa5";
|
|
1336
|
-
}
|
|
1337
|
-
.fwe-icon-show-user:before {
|
|
1338
|
-
content: "\eaa6";
|
|
1339
|
-
}
|
|
1340
|
-
.fwe-icon-align-bottom:before {
|
|
1341
|
-
content: "\eaa7";
|
|
1342
|
-
}
|
|
1343
|
-
.fwe-icon-align-center:before {
|
|
1344
|
-
content: "\eaa8";
|
|
1345
|
-
}
|
|
1346
|
-
.fwe-icon-align-left:before {
|
|
1347
|
-
content: "\eaa9";
|
|
1348
|
-
}
|
|
1349
|
-
.fwe-icon-align-middle:before {
|
|
1350
|
-
content: "\eaaa";
|
|
1351
|
-
}
|
|
1352
|
-
.fwe-icon-align-right:before {
|
|
1353
|
-
content: "\eaab";
|
|
1354
|
-
}
|
|
1355
|
-
.fwe-icon-align-top:before {
|
|
1356
|
-
content: "\eaac";
|
|
1357
|
-
}
|
|
1358
|
-
.fwe-icon-artificial-intelligence-AI:before {
|
|
1359
|
-
content: "\eaad";
|
|
1360
|
-
}
|
|
1361
|
-
.fwe-icon-assign-to-learner:before {
|
|
1362
|
-
content: "\eaae";
|
|
1363
|
-
}
|
|
1364
|
-
.fwe-icon-augmented-reality:before {
|
|
1365
|
-
content: "\eaaf";
|
|
1366
|
-
}
|
|
1367
|
-
.fwe-icon-bus-systems:before {
|
|
1368
|
-
content: "\eab0";
|
|
1369
|
-
}
|
|
1370
|
-
.fwe-icon-cobotic:before {
|
|
1371
|
-
content: "\eab1";
|
|
1372
|
-
}
|
|
1373
|
-
.fwe-icon-controlled:before {
|
|
1374
|
-
content: "\eab2";
|
|
1375
|
-
}
|
|
1376
|
-
.fwe-icon-distribute-columns:before {
|
|
1377
|
-
content: "\eab3";
|
|
1378
|
-
}
|
|
1379
|
-
.fwe-icon-electrics:before {
|
|
1380
|
-
content: "\eab4";
|
|
1381
|
-
}
|
|
1382
|
-
.fwe-icon-energy-efficiency:before {
|
|
1383
|
-
content: "\eab5";
|
|
1384
|
-
}
|
|
1385
|
-
.fwe-icon-fast-delivery:before {
|
|
1386
|
-
content: "\eab6";
|
|
1387
|
-
}
|
|
1388
|
-
.fwe-icon-funk:before {
|
|
1389
|
-
content: "\eab7";
|
|
1390
|
-
}
|
|
1391
|
-
.fwe-icon-hide-label:before {
|
|
1392
|
-
content: "\eab8";
|
|
1393
|
-
}
|
|
1394
|
-
.fwe-icon-iiot:before {
|
|
1395
|
-
content: "\eab9";
|
|
1396
|
-
}
|
|
1397
|
-
.fwe-icon-iot:before {
|
|
1398
|
-
content: "\eaba";
|
|
1399
|
-
}
|
|
1400
|
-
.fwe-icon-mobotic:before {
|
|
1401
|
-
content: "\eabc";
|
|
1402
|
-
}
|
|
1403
|
-
.fwe-icon-new-link:before {
|
|
1404
|
-
content: "\eabd";
|
|
1405
|
-
}
|
|
1406
|
-
.fwe-icon-numeric-value:before {
|
|
1407
|
-
content: "\eabe";
|
|
1408
|
-
}
|
|
1409
|
-
.fwe-icon-piezo:before {
|
|
1410
|
-
content: "\eabf";
|
|
1411
|
-
}
|
|
1412
|
-
.fwe-icon-pneumatics:before {
|
|
1413
|
-
content: "\eac0";
|
|
1414
|
-
}
|
|
1415
|
-
.fwe-icon-recycling:before {
|
|
1416
|
-
content: "\eac1";
|
|
1417
|
-
}
|
|
1418
|
-
.fwe-icon-remove-link:before {
|
|
1419
|
-
content: "\eac2";
|
|
1420
|
-
}
|
|
1421
|
-
.fwe-icon-remove-user:before {
|
|
1422
|
-
content: "\eac3";
|
|
1423
|
-
}
|
|
1424
|
-
.fwe-icon-safety:before {
|
|
1425
|
-
content: "\eac4";
|
|
1426
|
-
}
|
|
1427
|
-
.fwe-icon-show-label:before {
|
|
1428
|
-
content: "\eac5";
|
|
1429
|
-
}
|
|
1430
|
-
.fwe-icon-show-link:before {
|
|
1431
|
-
content: "\eac6";
|
|
1432
|
-
}
|
|
1433
|
-
.fwe-icon-smart:before {
|
|
1434
|
-
content: "\eac7";
|
|
1435
|
-
}
|
|
1436
|
-
.fwe-icon-sustainable-materials:before {
|
|
1437
|
-
content: "\eac9";
|
|
1438
|
-
}
|
|
1439
|
-
.fwe-icon-text-value:before {
|
|
1440
|
-
content: "\eaca";
|
|
1441
|
-
}
|
|
1442
|
-
.fwe-icon-virtual-reality:before {
|
|
1443
|
-
content: "\eacb";
|
|
1444
|
-
}
|
|
1445
|
-
.fwe-icon-cut:before {
|
|
1446
|
-
content: "\eabb";
|
|
1447
|
-
}
|
|
1448
|
-
.fwe-icon-digital-twin:before {
|
|
1449
|
-
content: "\eac8";
|
|
1450
|
-
}
|
|
1451
|
-
.fwe-icon-doc-zip:before {
|
|
1452
|
-
content: "\eacc";
|
|
1453
|
-
}
|
|
1454
|
-
.fwe-icon-fast-forward:before {
|
|
1455
|
-
content: "\eacd";
|
|
1456
|
-
}
|
|
1457
|
-
.fwe-icon-fast-rewind:before {
|
|
1458
|
-
content: "\eace";
|
|
1459
|
-
}
|
|
1460
|
-
.fwe-icon-forward:before {
|
|
1461
|
-
content: "\eacf";
|
|
1462
|
-
}
|
|
1463
|
-
.fwe-icon-rewind:before {
|
|
1464
|
-
content: "\ead0";
|
|
1465
|
-
}
|
|
1466
|
-
.fwe-icon-report-error:before {
|
|
1467
|
-
content: "\ead1";
|
|
1468
|
-
}
|
|
1469
|
-
.fwe-icon-show-learning-path:before {
|
|
1470
|
-
content: "\ead2";
|
|
1471
|
-
}
|
|
1472
|
-
.fwe-icon-clock-generator:before {
|
|
1473
|
-
content: "\ead3";
|
|
1474
|
-
}
|
|
1475
|
-
.fwe-icon-diode:before {
|
|
1476
|
-
content: "\ead4";
|
|
1477
|
-
}
|
|
1478
|
-
.fwe-icon-flip-horizontally:before {
|
|
1479
|
-
content: "\ead5";
|
|
1480
|
-
}
|
|
1481
|
-
.fwe-icon-flip-vertically:before {
|
|
1482
|
-
content: "\ead6";
|
|
1483
|
-
}
|
|
1484
|
-
.fwe-icon-function-generator:before {
|
|
1485
|
-
content: "\ead7";
|
|
1486
|
-
}
|
|
1487
|
-
.fwe-icon-multimeter:before {
|
|
1488
|
-
content: "\ead8";
|
|
1489
|
-
}
|
|
1490
|
-
.fwe-icon-oscilloscope:before {
|
|
1491
|
-
content: "\ead9";
|
|
1492
|
-
}
|
|
1493
|
-
.fwe-icon-parameter:before {
|
|
1494
|
-
content: "\eada";
|
|
1495
|
-
}
|
|
1496
|
-
.fwe-icon-rotate:before {
|
|
1497
|
-
content: "\eadb";
|
|
1498
|
-
}
|
|
1499
|
-
.fwe-icon-select:before {
|
|
1500
|
-
content: "\eadc";
|
|
1501
|
-
}
|
|
1502
|
-
.fwe-icon-sound-of-multimeter:before {
|
|
1503
|
-
content: "\eadd";
|
|
1504
|
-
}
|
|
1505
|
-
.fwe-icon-voltage-source:before {
|
|
1506
|
-
content: "\eade";
|
|
1507
|
-
}
|
|
1508
|
-
.fwe-icon-add-photo:before {
|
|
1509
|
-
content: "\eadf";
|
|
1510
|
-
}
|
|
1511
|
-
.fwe-icon-analog-io:before {
|
|
1512
|
-
content: "\eae0";
|
|
1513
|
-
}
|
|
1514
|
-
.fwe-icon-diagnosis:before {
|
|
1515
|
-
content: "\eae1";
|
|
1516
|
-
}
|
|
1517
|
-
.fwe-icon-digital-io:before {
|
|
1518
|
-
content: "\eae2";
|
|
1519
|
-
}
|
|
1520
|
-
.fwe-icon-led-test:before {
|
|
1521
|
-
content: "\eae3";
|
|
1522
|
-
}
|
|
1523
|
-
.fwe-icon-applause:before {
|
|
1524
|
-
content: "\eae4";
|
|
1525
|
-
}
|
|
1526
|
-
.fwe-icon-battery:before {
|
|
1527
|
-
content: "\eae5";
|
|
1528
|
-
}
|
|
1529
|
-
.fwe-icon-dangerous-goods:before {
|
|
1530
|
-
content: "\eae6";
|
|
1531
|
-
}
|
|
1532
|
-
.fwe-icon-check-small:before {
|
|
1533
|
-
content: "\eae7";
|
|
1534
|
-
}
|
|
1535
|
-
.fwe-icon-arrange:before {
|
|
1536
|
-
content: "\eae8";
|
|
1537
|
-
}
|
|
1538
|
-
.fwe-icon-cloud-failure:before {
|
|
1539
|
-
content: "\eae9";
|
|
1540
|
-
}
|
|
1541
|
-
.fwe-icon-cloud-ready:before {
|
|
1542
|
-
content: "\eaeb";
|
|
1543
|
-
}
|
|
1544
|
-
.fwe-icon-cloud-sync:before {
|
|
1545
|
-
content: "\eaed";
|
|
1546
|
-
}
|
|
1547
|
-
.fwe-icon-crop:before {
|
|
1548
|
-
content: "\eaee";
|
|
1549
|
-
}
|
|
1550
|
-
.fwe-icon-decentral-drive:before {
|
|
1551
|
-
content: "\eaef";
|
|
1552
|
-
}
|
|
1553
|
-
.fwe-icon-feature-tag:before {
|
|
1554
|
-
content: "\eaf0";
|
|
1555
|
-
}
|
|
1556
|
-
.fwe-icon-hide:before {
|
|
1557
|
-
content: "\eaf1";
|
|
1558
|
-
}
|
|
1559
|
-
.fwe-icon-repeat-audio:before {
|
|
1560
|
-
content: "\eaf2";
|
|
1561
|
-
}
|
|
1562
|
-
.fwe-icon-data-variable:before {
|
|
1563
|
-
content: "\eaea";
|
|
1564
|
-
}
|
|
1565
|
-
.fwe-icon-method:before {
|
|
1566
|
-
content: "\eaec";
|
|
1567
|
-
}
|
|
1568
|
-
.fwe-icon-myfesto-projects:before {
|
|
1569
|
-
content: "\eaf3";
|
|
1570
|
-
}
|
|
1571
|
-
.fwe-icon-redo:before {
|
|
1572
|
-
content: "\eaf4";
|
|
1573
|
-
}
|
|
1574
|
-
.fwe-icon-undo:before {
|
|
1575
|
-
content: "\eaf5";
|
|
1576
|
-
}
|
|
1577
|
-
.fwe-icon-win:before {
|
|
1578
|
-
content: "\eaf6";
|
|
1579
|
-
}
|