@acorex/styles 18.12.29 → 18.12.30
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 +32 -32
- package/icons/fontawesome/_variables.scss +185 -185
- package/icons/fontawesome/fontawesome.scss +17 -17
- package/icons/huge/huge-bulk/_variables.scss +185 -185
- package/icons/huge/huge-bulk/bulk-rounded.scss +13 -13
- package/icons/huge/huge-duotone/_variables.scss +185 -185
- package/icons/huge/huge-duotone/duotone-rounded.scss +13 -13
- package/icons/huge/huge-solid/solid-rounded.scss +13 -13
- package/icons/huge/huge-solid/solid-sharp.scss +13 -13
- package/icons/huge/huge-solid/solid-standard.scss +13 -13
- package/icons/huge/huge-solid/variables/_rounded-variables.scss +185 -185
- package/icons/huge/huge-solid/variables/_sharp-variables.scss +185 -185
- package/icons/huge/huge-solid/variables/_standard-variables.scss +185 -185
- package/icons/huge/huge-stroke/stroke-rounded.scss +13 -13
- package/icons/huge/huge-stroke/stroke-sharp.scss +13 -13
- package/icons/huge/huge-stroke/stroke-standard.scss +13 -13
- package/icons/huge/huge-stroke/variables/_rounded-variables.scss +185 -185
- package/icons/huge/huge-stroke/variables/_sharp-variables.scss +185 -185
- package/icons/huge/huge-stroke/variables/_standard-variables.scss +185 -185
- package/icons/huge/huge-twotone/_variables.scss +185 -185
- package/icons/huge/huge-twotone/twotone-rounded.scss +13 -13
- package/icons/index.scss +570 -570
- package/icons/material/_variables.scss +185 -185
- package/icons/material/material.scss +22 -22
- package/index.css +3058 -0
- package/index.min.css +1 -0
- package/index.scss +9 -9
- package/package.json +11 -11
- package/src/base/_preflight.scss +405 -405
- package/src/base/index.scss +13 -13
- package/src/mixins/_look.scss +83 -83
- package/src/mixins/_media.scss +73 -73
- package/src/mixins/_util.scss +19 -19
- package/src/mixins/index.scss +3 -3
- package/src/shared/_action-item.scss +109 -109
- package/src/shared/_actionsheet.scss +20 -20
- package/src/shared/_check-box.scss +60 -60
- package/src/shared/_color-look.scss +864 -864
- package/src/shared/_drop-down.scss +76 -76
- package/src/shared/_editor-container.scss +258 -258
- package/src/shared/_general-button.scss +87 -87
- package/src/shared/_inputs.scss +16 -16
- package/src/shared/_list.scss +199 -199
- package/src/shared/_radio.scss +57 -57
- package/src/shared/_table.scss +149 -149
- package/src/shared/_utils.scss +84 -84
- package/src/shared/index.scss +12 -12
- package/src/utility/index.scss +24 -24
- package/src/variables/_colors.scss +2 -2
- package/src/variables/_degrees.scss +1 -1
- package/src/variables/index.scss +2 -2
- package/tailwind-base.js +234 -234
- package/themes/default.css +1 -0
- package/themes/default.scss +143 -143
package/icons/index.scss
CHANGED
@@ -1,570 +1,570 @@
|
|
1
|
-
.ax-icon-thin {
|
2
|
-
--ax-icon-weight: 100;
|
3
|
-
}
|
4
|
-
.ax-icon-light {
|
5
|
-
--ax-icon-weight: 300;
|
6
|
-
}
|
7
|
-
.ax-icon-regular {
|
8
|
-
--ax-icon-weight: 400;
|
9
|
-
}
|
10
|
-
.ax-icon-solid {
|
11
|
-
--ax-icon-weight: 900;
|
12
|
-
}
|
13
|
-
|
14
|
-
.ax-icon-more-horizontal {
|
15
|
-
&:before {
|
16
|
-
content: $ax-icon-more-horizontal;
|
17
|
-
}
|
18
|
-
&:after {
|
19
|
-
content: $ax-icon-more-horizontal-after;
|
20
|
-
}
|
21
|
-
}
|
22
|
-
|
23
|
-
.ax-icon-more-vertical {
|
24
|
-
&:before {
|
25
|
-
content: $ax-icon-more-vertical;
|
26
|
-
}
|
27
|
-
&:after {
|
28
|
-
content: $ax-icon-more-vertical-after;
|
29
|
-
}
|
30
|
-
}
|
31
|
-
|
32
|
-
.ax-icon-arrow-long-up {
|
33
|
-
&:before {
|
34
|
-
content: $ax-icon-arrow-long-up;
|
35
|
-
}
|
36
|
-
&:after {
|
37
|
-
content: $ax-icon-arrow-long-up-after;
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
.ax-icon-arrow-long-down {
|
42
|
-
&:before {
|
43
|
-
content: $ax-icon-arrow-long-down;
|
44
|
-
}
|
45
|
-
&:after {
|
46
|
-
content: $ax-icon-arrow-long-down-after;
|
47
|
-
}
|
48
|
-
}
|
49
|
-
|
50
|
-
.ax-icon-color-palette {
|
51
|
-
&:before {
|
52
|
-
content: $ax-icon-color-palette;
|
53
|
-
}
|
54
|
-
&:after {
|
55
|
-
content: $ax-icon-color-palette-after;
|
56
|
-
}
|
57
|
-
}
|
58
|
-
|
59
|
-
.ax-icon-arrow-left {
|
60
|
-
&:before {
|
61
|
-
content: $ax-icon-arrow-left;
|
62
|
-
}
|
63
|
-
&:after {
|
64
|
-
content: $ax-icon-arrow-left-after;
|
65
|
-
}
|
66
|
-
}
|
67
|
-
|
68
|
-
.ax-icon-arrow-down {
|
69
|
-
&:before {
|
70
|
-
content: $ax-icon-arrow-down;
|
71
|
-
}
|
72
|
-
&:after {
|
73
|
-
content: $ax-icon-arrow-down-after;
|
74
|
-
}
|
75
|
-
}
|
76
|
-
|
77
|
-
.ax-icon-arrow-up {
|
78
|
-
&:before {
|
79
|
-
content: $ax-icon-arrow-up;
|
80
|
-
}
|
81
|
-
&:after {
|
82
|
-
content: $ax-icon-arrow-up-after;
|
83
|
-
}
|
84
|
-
}
|
85
|
-
|
86
|
-
.ax-icon-arrow-right {
|
87
|
-
&:before {
|
88
|
-
content: $ax-icon-arrow-right;
|
89
|
-
}
|
90
|
-
&:after {
|
91
|
-
content: $ax-icon-arrow-right-after;
|
92
|
-
}
|
93
|
-
}
|
94
|
-
|
95
|
-
.ax-icon-chevron-left {
|
96
|
-
&:before {
|
97
|
-
content: $ax-icon-chevron-left;
|
98
|
-
}
|
99
|
-
&:after {
|
100
|
-
content: $ax-icon-chevron-left-after;
|
101
|
-
}
|
102
|
-
}
|
103
|
-
|
104
|
-
.ax-icon-chevron-down {
|
105
|
-
&:before {
|
106
|
-
content: $ax-icon-chevron-down;
|
107
|
-
}
|
108
|
-
&:after {
|
109
|
-
content: $ax-icon-chevron-down-after;
|
110
|
-
}
|
111
|
-
}
|
112
|
-
|
113
|
-
.ax-icon-chevron-up {
|
114
|
-
&:before {
|
115
|
-
content: $ax-icon-chevron-up;
|
116
|
-
}
|
117
|
-
&:after {
|
118
|
-
content: $ax-icon-chevron-up-after;
|
119
|
-
}
|
120
|
-
}
|
121
|
-
|
122
|
-
.ax-icon-chevron-right {
|
123
|
-
&:before {
|
124
|
-
content: $ax-icon-chevron-right;
|
125
|
-
}
|
126
|
-
&:after {
|
127
|
-
content: $ax-icon-chevron-right-after;
|
128
|
-
}
|
129
|
-
}
|
130
|
-
|
131
|
-
.ax-icon-first-page {
|
132
|
-
&:before {
|
133
|
-
content: $ax-icon-first-page;
|
134
|
-
}
|
135
|
-
&:after {
|
136
|
-
content: $ax-icon-first-page-after;
|
137
|
-
}
|
138
|
-
}
|
139
|
-
|
140
|
-
.ax-icon-last-page {
|
141
|
-
&:before {
|
142
|
-
content: $ax-icon-last-page;
|
143
|
-
}
|
144
|
-
&:after {
|
145
|
-
content: $ax-icon-last-page-after;
|
146
|
-
}
|
147
|
-
}
|
148
|
-
|
149
|
-
.ax-icon-calendar {
|
150
|
-
&:before {
|
151
|
-
content: $ax-icon-calendar;
|
152
|
-
}
|
153
|
-
&:after {
|
154
|
-
content: $ax-icon-calendar-after;
|
155
|
-
}
|
156
|
-
}
|
157
|
-
|
158
|
-
.ax-icon-error {
|
159
|
-
&:before {
|
160
|
-
content: $ax-icon-error;
|
161
|
-
}
|
162
|
-
&:after {
|
163
|
-
content: $ax-icon-error-after;
|
164
|
-
}
|
165
|
-
}
|
166
|
-
|
167
|
-
.ax-icon-info {
|
168
|
-
&:before {
|
169
|
-
content: $ax-icon-info;
|
170
|
-
}
|
171
|
-
&:after {
|
172
|
-
content: $ax-icon-info-after;
|
173
|
-
}
|
174
|
-
}
|
175
|
-
|
176
|
-
.ax-icon-warning {
|
177
|
-
&:before {
|
178
|
-
content: $ax-icon-warning;
|
179
|
-
}
|
180
|
-
&:after {
|
181
|
-
content: $ax-icon-warning-after;
|
182
|
-
}
|
183
|
-
}
|
184
|
-
|
185
|
-
.ax-icon-check-circle {
|
186
|
-
&:before {
|
187
|
-
content: $ax-icon-check-circle;
|
188
|
-
}
|
189
|
-
&:after {
|
190
|
-
content: $ax-icon-check-circle-after;
|
191
|
-
}
|
192
|
-
}
|
193
|
-
|
194
|
-
.ax-icon-close {
|
195
|
-
&:before {
|
196
|
-
content: $ax-icon-close;
|
197
|
-
}
|
198
|
-
&:after {
|
199
|
-
content: $ax-icon-close-after;
|
200
|
-
}
|
201
|
-
}
|
202
|
-
|
203
|
-
.ax-icon-clear {
|
204
|
-
&:before {
|
205
|
-
content: $ax-icon-clear;
|
206
|
-
}
|
207
|
-
&:after {
|
208
|
-
content: $ax-icon-clear-after;
|
209
|
-
}
|
210
|
-
}
|
211
|
-
|
212
|
-
.ax-icon-visibility-off {
|
213
|
-
&:before {
|
214
|
-
content: $ax-icon-visibility-off;
|
215
|
-
}
|
216
|
-
&:after {
|
217
|
-
content: $ax-icon-visibility-off-after;
|
218
|
-
}
|
219
|
-
}
|
220
|
-
|
221
|
-
.ax-icon-visibility {
|
222
|
-
&:before {
|
223
|
-
content: $ax-icon-visibility;
|
224
|
-
}
|
225
|
-
&:after {
|
226
|
-
content: $ax-icon-visibility-after;
|
227
|
-
}
|
228
|
-
}
|
229
|
-
|
230
|
-
.ax-icon-unfold-more {
|
231
|
-
&:before {
|
232
|
-
content: $ax-icon-unfold-more;
|
233
|
-
}
|
234
|
-
&:after {
|
235
|
-
content: $ax-icon-unfold-more-after;
|
236
|
-
}
|
237
|
-
}
|
238
|
-
|
239
|
-
.ax-icon-download {
|
240
|
-
&:before {
|
241
|
-
content: $ax-icon-download;
|
242
|
-
}
|
243
|
-
&:after {
|
244
|
-
content: $ax-icon-download-after;
|
245
|
-
}
|
246
|
-
}
|
247
|
-
|
248
|
-
.ax-icon-upload {
|
249
|
-
&:before {
|
250
|
-
content: $ax-icon-upload;
|
251
|
-
}
|
252
|
-
&:after {
|
253
|
-
content: $ax-icon-upload-after;
|
254
|
-
}
|
255
|
-
}
|
256
|
-
|
257
|
-
.ax-icon-search {
|
258
|
-
&:before {
|
259
|
-
content: $ax-icon-search;
|
260
|
-
}
|
261
|
-
&:after {
|
262
|
-
content: $ax-icon-search-after;
|
263
|
-
}
|
264
|
-
}
|
265
|
-
|
266
|
-
.ax-icon-copy {
|
267
|
-
&:before {
|
268
|
-
content: $ax-icon-copy;
|
269
|
-
}
|
270
|
-
&:after {
|
271
|
-
content: $ax-icon-copy-after;
|
272
|
-
}
|
273
|
-
}
|
274
|
-
|
275
|
-
.ax-icon-refresh {
|
276
|
-
&:before {
|
277
|
-
content: $ax-icon-refresh;
|
278
|
-
}
|
279
|
-
&:after {
|
280
|
-
content: $ax-icon-refresh-after;
|
281
|
-
}
|
282
|
-
}
|
283
|
-
|
284
|
-
.ax-icon-inbox {
|
285
|
-
&:before {
|
286
|
-
content: $ax-icon-inbox;
|
287
|
-
}
|
288
|
-
&:after {
|
289
|
-
content: $ax-icon-inbox-after;
|
290
|
-
}
|
291
|
-
}
|
292
|
-
|
293
|
-
.ax-icon-emoji {
|
294
|
-
&:before {
|
295
|
-
content: $ax-icon-emoji;
|
296
|
-
}
|
297
|
-
&:after {
|
298
|
-
content: $ax-icon-emoji-after;
|
299
|
-
}
|
300
|
-
}
|
301
|
-
|
302
|
-
.ax-icon-attach {
|
303
|
-
&:before {
|
304
|
-
content: $ax-icon-attach;
|
305
|
-
}
|
306
|
-
&:after {
|
307
|
-
content: $ax-icon-attach-after;
|
308
|
-
}
|
309
|
-
}
|
310
|
-
|
311
|
-
.ax-icon-mic {
|
312
|
-
&:before {
|
313
|
-
content: $ax-icon-mic;
|
314
|
-
}
|
315
|
-
&:after {
|
316
|
-
content: $ax-icon-mic-after;
|
317
|
-
}
|
318
|
-
}
|
319
|
-
|
320
|
-
.ax-icon-send {
|
321
|
-
&:before {
|
322
|
-
content: $ax-icon-send;
|
323
|
-
}
|
324
|
-
&:after {
|
325
|
-
content: $ax-icon-send-after;
|
326
|
-
}
|
327
|
-
}
|
328
|
-
|
329
|
-
.ax-icon-check {
|
330
|
-
&:before {
|
331
|
-
content: $ax-icon-check;
|
332
|
-
}
|
333
|
-
&:after {
|
334
|
-
content: $ax-icon-check-after;
|
335
|
-
}
|
336
|
-
}
|
337
|
-
|
338
|
-
.ax-icon-dobble-check {
|
339
|
-
&:before {
|
340
|
-
content: $ax-icon-dobble-check;
|
341
|
-
}
|
342
|
-
&:after {
|
343
|
-
content: $ax-icon-dobble-check-after;
|
344
|
-
}
|
345
|
-
}
|
346
|
-
|
347
|
-
.ax-icon-pause {
|
348
|
-
&:before {
|
349
|
-
content: $ax-icon-pause;
|
350
|
-
}
|
351
|
-
&:after {
|
352
|
-
content: $ax-icon-pause-after;
|
353
|
-
}
|
354
|
-
}
|
355
|
-
|
356
|
-
.ax-icon-play {
|
357
|
-
&:before {
|
358
|
-
content: $ax-icon-play;
|
359
|
-
}
|
360
|
-
&:after {
|
361
|
-
content: $ax-icon-play-after;
|
362
|
-
}
|
363
|
-
}
|
364
|
-
|
365
|
-
.ax-icon-reload {
|
366
|
-
&:before {
|
367
|
-
content: $ax-icon-reload;
|
368
|
-
}
|
369
|
-
&:after {
|
370
|
-
content: $ax-icon-reload-after;
|
371
|
-
}
|
372
|
-
}
|
373
|
-
|
374
|
-
.ax-icon-heart {
|
375
|
-
&:before {
|
376
|
-
content: $ax-icon-heart;
|
377
|
-
}
|
378
|
-
&:after {
|
379
|
-
content: $ax-icon-heart-after;
|
380
|
-
}
|
381
|
-
}
|
382
|
-
|
383
|
-
.ax-icon-comment {
|
384
|
-
&:before {
|
385
|
-
content: $ax-icon-comment;
|
386
|
-
}
|
387
|
-
&:after {
|
388
|
-
content: $ax-icon-comment-after;
|
389
|
-
}
|
390
|
-
}
|
391
|
-
|
392
|
-
.ax-icon-bold {
|
393
|
-
&:before {
|
394
|
-
content: $ax-icon-bold;
|
395
|
-
}
|
396
|
-
&:after {
|
397
|
-
content: $ax-icon-bold-after;
|
398
|
-
}
|
399
|
-
}
|
400
|
-
|
401
|
-
.ax-icon-italic {
|
402
|
-
&:before {
|
403
|
-
content: $ax-icon-italic;
|
404
|
-
}
|
405
|
-
&:after {
|
406
|
-
content: $ax-icon-italic-after;
|
407
|
-
}
|
408
|
-
}
|
409
|
-
|
410
|
-
.ax-icon-under-line {
|
411
|
-
&:before {
|
412
|
-
content: $ax-icon-under-line;
|
413
|
-
}
|
414
|
-
&:after {
|
415
|
-
content: $ax-icon-under-line-after;
|
416
|
-
}
|
417
|
-
}
|
418
|
-
|
419
|
-
.ax-icon-strike {
|
420
|
-
&:before {
|
421
|
-
content: $ax-icon-strike;
|
422
|
-
}
|
423
|
-
&:after {
|
424
|
-
content: $ax-icon-strike-after;
|
425
|
-
}
|
426
|
-
}
|
427
|
-
|
428
|
-
.ax-icon-order-list {
|
429
|
-
&:before {
|
430
|
-
content: $ax-icon-order-list;
|
431
|
-
}
|
432
|
-
&:after {
|
433
|
-
content: $ax-icon-order-list-after;
|
434
|
-
}
|
435
|
-
}
|
436
|
-
|
437
|
-
.ax-icon-un-order-list {
|
438
|
-
&:before {
|
439
|
-
content: $ax-icon-un-order-list;
|
440
|
-
}
|
441
|
-
&:after {
|
442
|
-
content: $ax-icon-un-order-list-after;
|
443
|
-
}
|
444
|
-
}
|
445
|
-
|
446
|
-
.ax-icon-align-left {
|
447
|
-
&:before {
|
448
|
-
content: $ax-icon-align-left;
|
449
|
-
}
|
450
|
-
&:after {
|
451
|
-
content: $ax-icon-align-left-after;
|
452
|
-
}
|
453
|
-
}
|
454
|
-
|
455
|
-
.ax-icon-align-right {
|
456
|
-
&:before {
|
457
|
-
content: $ax-icon-align-right;
|
458
|
-
}
|
459
|
-
&:after {
|
460
|
-
content: $ax-icon-align-right-after;
|
461
|
-
}
|
462
|
-
}
|
463
|
-
|
464
|
-
.ax-icon-align-center {
|
465
|
-
&:before {
|
466
|
-
content: $ax-icon-align-center;
|
467
|
-
}
|
468
|
-
&:after {
|
469
|
-
content: $ax-icon-align-center-after;
|
470
|
-
}
|
471
|
-
}
|
472
|
-
|
473
|
-
.ax-icon-align-justify {
|
474
|
-
&:before {
|
475
|
-
content: $ax-icon-align-justify;
|
476
|
-
}
|
477
|
-
&:after {
|
478
|
-
content: $ax-icon-align-justify-after;
|
479
|
-
}
|
480
|
-
}
|
481
|
-
|
482
|
-
.ax-icon-undo {
|
483
|
-
&:before {
|
484
|
-
content: $ax-icon-undo;
|
485
|
-
}
|
486
|
-
&:after {
|
487
|
-
content: $ax-icon-undo-after;
|
488
|
-
}
|
489
|
-
}
|
490
|
-
|
491
|
-
.ax-icon-redo {
|
492
|
-
&:before {
|
493
|
-
content: $ax-icon-redo;
|
494
|
-
}
|
495
|
-
&:after {
|
496
|
-
content: $ax-icon-redo-after;
|
497
|
-
}
|
498
|
-
}
|
499
|
-
|
500
|
-
.ax-icon-highlight {
|
501
|
-
&:before {
|
502
|
-
content: $ax-icon-highlight;
|
503
|
-
}
|
504
|
-
&:after {
|
505
|
-
content: $ax-icon-highlight-after;
|
506
|
-
}
|
507
|
-
}
|
508
|
-
|
509
|
-
.ax-icon-link {
|
510
|
-
&:before {
|
511
|
-
content: $ax-icon-link;
|
512
|
-
}
|
513
|
-
&:after {
|
514
|
-
content: $ax-icon-link-after;
|
515
|
-
}
|
516
|
-
}
|
517
|
-
|
518
|
-
.ax-icon-image {
|
519
|
-
&:before {
|
520
|
-
content: $ax-icon-image;
|
521
|
-
}
|
522
|
-
&:after {
|
523
|
-
content: $ax-icon-image-after;
|
524
|
-
}
|
525
|
-
}
|
526
|
-
|
527
|
-
.ax-icon-pen {
|
528
|
-
&:before {
|
529
|
-
content: $ax-icon-pen;
|
530
|
-
}
|
531
|
-
&:after {
|
532
|
-
content: $ax-icon-pen-after;
|
533
|
-
}
|
534
|
-
}
|
535
|
-
|
536
|
-
.ax-icon-eraser {
|
537
|
-
&:before {
|
538
|
-
content: $ax-icon-eraser;
|
539
|
-
}
|
540
|
-
&:after {
|
541
|
-
content: $ax-icon-eraser-after;
|
542
|
-
}
|
543
|
-
}
|
544
|
-
|
545
|
-
.ax-icon-pen-ruler {
|
546
|
-
&:before {
|
547
|
-
content: $ax-icon-pen-ruler;
|
548
|
-
}
|
549
|
-
&:after {
|
550
|
-
content: $ax-icon-pen-ruler-after;
|
551
|
-
}
|
552
|
-
}
|
553
|
-
|
554
|
-
.ax-icon-crop {
|
555
|
-
&:before {
|
556
|
-
content: $ax-icon-crop;
|
557
|
-
}
|
558
|
-
&:after {
|
559
|
-
content: $ax-icon-crop-after;
|
560
|
-
}
|
561
|
-
}
|
562
|
-
|
563
|
-
.ax-icon-full-screen {
|
564
|
-
&:before {
|
565
|
-
content: $ax-icon-full-screen;
|
566
|
-
}
|
567
|
-
&:after {
|
568
|
-
content: $ax-icon-full-screen-after;
|
569
|
-
}
|
570
|
-
}
|
1
|
+
.ax-icon-thin {
|
2
|
+
--ax-icon-weight: 100;
|
3
|
+
}
|
4
|
+
.ax-icon-light {
|
5
|
+
--ax-icon-weight: 300;
|
6
|
+
}
|
7
|
+
.ax-icon-regular {
|
8
|
+
--ax-icon-weight: 400;
|
9
|
+
}
|
10
|
+
.ax-icon-solid {
|
11
|
+
--ax-icon-weight: 900;
|
12
|
+
}
|
13
|
+
|
14
|
+
.ax-icon-more-horizontal {
|
15
|
+
&:before {
|
16
|
+
content: $ax-icon-more-horizontal;
|
17
|
+
}
|
18
|
+
&:after {
|
19
|
+
content: $ax-icon-more-horizontal-after;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
.ax-icon-more-vertical {
|
24
|
+
&:before {
|
25
|
+
content: $ax-icon-more-vertical;
|
26
|
+
}
|
27
|
+
&:after {
|
28
|
+
content: $ax-icon-more-vertical-after;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
.ax-icon-arrow-long-up {
|
33
|
+
&:before {
|
34
|
+
content: $ax-icon-arrow-long-up;
|
35
|
+
}
|
36
|
+
&:after {
|
37
|
+
content: $ax-icon-arrow-long-up-after;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
.ax-icon-arrow-long-down {
|
42
|
+
&:before {
|
43
|
+
content: $ax-icon-arrow-long-down;
|
44
|
+
}
|
45
|
+
&:after {
|
46
|
+
content: $ax-icon-arrow-long-down-after;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
.ax-icon-color-palette {
|
51
|
+
&:before {
|
52
|
+
content: $ax-icon-color-palette;
|
53
|
+
}
|
54
|
+
&:after {
|
55
|
+
content: $ax-icon-color-palette-after;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
.ax-icon-arrow-left {
|
60
|
+
&:before {
|
61
|
+
content: $ax-icon-arrow-left;
|
62
|
+
}
|
63
|
+
&:after {
|
64
|
+
content: $ax-icon-arrow-left-after;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
.ax-icon-arrow-down {
|
69
|
+
&:before {
|
70
|
+
content: $ax-icon-arrow-down;
|
71
|
+
}
|
72
|
+
&:after {
|
73
|
+
content: $ax-icon-arrow-down-after;
|
74
|
+
}
|
75
|
+
}
|
76
|
+
|
77
|
+
.ax-icon-arrow-up {
|
78
|
+
&:before {
|
79
|
+
content: $ax-icon-arrow-up;
|
80
|
+
}
|
81
|
+
&:after {
|
82
|
+
content: $ax-icon-arrow-up-after;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
.ax-icon-arrow-right {
|
87
|
+
&:before {
|
88
|
+
content: $ax-icon-arrow-right;
|
89
|
+
}
|
90
|
+
&:after {
|
91
|
+
content: $ax-icon-arrow-right-after;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
.ax-icon-chevron-left {
|
96
|
+
&:before {
|
97
|
+
content: $ax-icon-chevron-left;
|
98
|
+
}
|
99
|
+
&:after {
|
100
|
+
content: $ax-icon-chevron-left-after;
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
.ax-icon-chevron-down {
|
105
|
+
&:before {
|
106
|
+
content: $ax-icon-chevron-down;
|
107
|
+
}
|
108
|
+
&:after {
|
109
|
+
content: $ax-icon-chevron-down-after;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
.ax-icon-chevron-up {
|
114
|
+
&:before {
|
115
|
+
content: $ax-icon-chevron-up;
|
116
|
+
}
|
117
|
+
&:after {
|
118
|
+
content: $ax-icon-chevron-up-after;
|
119
|
+
}
|
120
|
+
}
|
121
|
+
|
122
|
+
.ax-icon-chevron-right {
|
123
|
+
&:before {
|
124
|
+
content: $ax-icon-chevron-right;
|
125
|
+
}
|
126
|
+
&:after {
|
127
|
+
content: $ax-icon-chevron-right-after;
|
128
|
+
}
|
129
|
+
}
|
130
|
+
|
131
|
+
.ax-icon-first-page {
|
132
|
+
&:before {
|
133
|
+
content: $ax-icon-first-page;
|
134
|
+
}
|
135
|
+
&:after {
|
136
|
+
content: $ax-icon-first-page-after;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
.ax-icon-last-page {
|
141
|
+
&:before {
|
142
|
+
content: $ax-icon-last-page;
|
143
|
+
}
|
144
|
+
&:after {
|
145
|
+
content: $ax-icon-last-page-after;
|
146
|
+
}
|
147
|
+
}
|
148
|
+
|
149
|
+
.ax-icon-calendar {
|
150
|
+
&:before {
|
151
|
+
content: $ax-icon-calendar;
|
152
|
+
}
|
153
|
+
&:after {
|
154
|
+
content: $ax-icon-calendar-after;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
.ax-icon-error {
|
159
|
+
&:before {
|
160
|
+
content: $ax-icon-error;
|
161
|
+
}
|
162
|
+
&:after {
|
163
|
+
content: $ax-icon-error-after;
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
.ax-icon-info {
|
168
|
+
&:before {
|
169
|
+
content: $ax-icon-info;
|
170
|
+
}
|
171
|
+
&:after {
|
172
|
+
content: $ax-icon-info-after;
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
.ax-icon-warning {
|
177
|
+
&:before {
|
178
|
+
content: $ax-icon-warning;
|
179
|
+
}
|
180
|
+
&:after {
|
181
|
+
content: $ax-icon-warning-after;
|
182
|
+
}
|
183
|
+
}
|
184
|
+
|
185
|
+
.ax-icon-check-circle {
|
186
|
+
&:before {
|
187
|
+
content: $ax-icon-check-circle;
|
188
|
+
}
|
189
|
+
&:after {
|
190
|
+
content: $ax-icon-check-circle-after;
|
191
|
+
}
|
192
|
+
}
|
193
|
+
|
194
|
+
.ax-icon-close {
|
195
|
+
&:before {
|
196
|
+
content: $ax-icon-close;
|
197
|
+
}
|
198
|
+
&:after {
|
199
|
+
content: $ax-icon-close-after;
|
200
|
+
}
|
201
|
+
}
|
202
|
+
|
203
|
+
.ax-icon-clear {
|
204
|
+
&:before {
|
205
|
+
content: $ax-icon-clear;
|
206
|
+
}
|
207
|
+
&:after {
|
208
|
+
content: $ax-icon-clear-after;
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
.ax-icon-visibility-off {
|
213
|
+
&:before {
|
214
|
+
content: $ax-icon-visibility-off;
|
215
|
+
}
|
216
|
+
&:after {
|
217
|
+
content: $ax-icon-visibility-off-after;
|
218
|
+
}
|
219
|
+
}
|
220
|
+
|
221
|
+
.ax-icon-visibility {
|
222
|
+
&:before {
|
223
|
+
content: $ax-icon-visibility;
|
224
|
+
}
|
225
|
+
&:after {
|
226
|
+
content: $ax-icon-visibility-after;
|
227
|
+
}
|
228
|
+
}
|
229
|
+
|
230
|
+
.ax-icon-unfold-more {
|
231
|
+
&:before {
|
232
|
+
content: $ax-icon-unfold-more;
|
233
|
+
}
|
234
|
+
&:after {
|
235
|
+
content: $ax-icon-unfold-more-after;
|
236
|
+
}
|
237
|
+
}
|
238
|
+
|
239
|
+
.ax-icon-download {
|
240
|
+
&:before {
|
241
|
+
content: $ax-icon-download;
|
242
|
+
}
|
243
|
+
&:after {
|
244
|
+
content: $ax-icon-download-after;
|
245
|
+
}
|
246
|
+
}
|
247
|
+
|
248
|
+
.ax-icon-upload {
|
249
|
+
&:before {
|
250
|
+
content: $ax-icon-upload;
|
251
|
+
}
|
252
|
+
&:after {
|
253
|
+
content: $ax-icon-upload-after;
|
254
|
+
}
|
255
|
+
}
|
256
|
+
|
257
|
+
.ax-icon-search {
|
258
|
+
&:before {
|
259
|
+
content: $ax-icon-search;
|
260
|
+
}
|
261
|
+
&:after {
|
262
|
+
content: $ax-icon-search-after;
|
263
|
+
}
|
264
|
+
}
|
265
|
+
|
266
|
+
.ax-icon-copy {
|
267
|
+
&:before {
|
268
|
+
content: $ax-icon-copy;
|
269
|
+
}
|
270
|
+
&:after {
|
271
|
+
content: $ax-icon-copy-after;
|
272
|
+
}
|
273
|
+
}
|
274
|
+
|
275
|
+
.ax-icon-refresh {
|
276
|
+
&:before {
|
277
|
+
content: $ax-icon-refresh;
|
278
|
+
}
|
279
|
+
&:after {
|
280
|
+
content: $ax-icon-refresh-after;
|
281
|
+
}
|
282
|
+
}
|
283
|
+
|
284
|
+
.ax-icon-inbox {
|
285
|
+
&:before {
|
286
|
+
content: $ax-icon-inbox;
|
287
|
+
}
|
288
|
+
&:after {
|
289
|
+
content: $ax-icon-inbox-after;
|
290
|
+
}
|
291
|
+
}
|
292
|
+
|
293
|
+
.ax-icon-emoji {
|
294
|
+
&:before {
|
295
|
+
content: $ax-icon-emoji;
|
296
|
+
}
|
297
|
+
&:after {
|
298
|
+
content: $ax-icon-emoji-after;
|
299
|
+
}
|
300
|
+
}
|
301
|
+
|
302
|
+
.ax-icon-attach {
|
303
|
+
&:before {
|
304
|
+
content: $ax-icon-attach;
|
305
|
+
}
|
306
|
+
&:after {
|
307
|
+
content: $ax-icon-attach-after;
|
308
|
+
}
|
309
|
+
}
|
310
|
+
|
311
|
+
.ax-icon-mic {
|
312
|
+
&:before {
|
313
|
+
content: $ax-icon-mic;
|
314
|
+
}
|
315
|
+
&:after {
|
316
|
+
content: $ax-icon-mic-after;
|
317
|
+
}
|
318
|
+
}
|
319
|
+
|
320
|
+
.ax-icon-send {
|
321
|
+
&:before {
|
322
|
+
content: $ax-icon-send;
|
323
|
+
}
|
324
|
+
&:after {
|
325
|
+
content: $ax-icon-send-after;
|
326
|
+
}
|
327
|
+
}
|
328
|
+
|
329
|
+
.ax-icon-check {
|
330
|
+
&:before {
|
331
|
+
content: $ax-icon-check;
|
332
|
+
}
|
333
|
+
&:after {
|
334
|
+
content: $ax-icon-check-after;
|
335
|
+
}
|
336
|
+
}
|
337
|
+
|
338
|
+
.ax-icon-dobble-check {
|
339
|
+
&:before {
|
340
|
+
content: $ax-icon-dobble-check;
|
341
|
+
}
|
342
|
+
&:after {
|
343
|
+
content: $ax-icon-dobble-check-after;
|
344
|
+
}
|
345
|
+
}
|
346
|
+
|
347
|
+
.ax-icon-pause {
|
348
|
+
&:before {
|
349
|
+
content: $ax-icon-pause;
|
350
|
+
}
|
351
|
+
&:after {
|
352
|
+
content: $ax-icon-pause-after;
|
353
|
+
}
|
354
|
+
}
|
355
|
+
|
356
|
+
.ax-icon-play {
|
357
|
+
&:before {
|
358
|
+
content: $ax-icon-play;
|
359
|
+
}
|
360
|
+
&:after {
|
361
|
+
content: $ax-icon-play-after;
|
362
|
+
}
|
363
|
+
}
|
364
|
+
|
365
|
+
.ax-icon-reload {
|
366
|
+
&:before {
|
367
|
+
content: $ax-icon-reload;
|
368
|
+
}
|
369
|
+
&:after {
|
370
|
+
content: $ax-icon-reload-after;
|
371
|
+
}
|
372
|
+
}
|
373
|
+
|
374
|
+
.ax-icon-heart {
|
375
|
+
&:before {
|
376
|
+
content: $ax-icon-heart;
|
377
|
+
}
|
378
|
+
&:after {
|
379
|
+
content: $ax-icon-heart-after;
|
380
|
+
}
|
381
|
+
}
|
382
|
+
|
383
|
+
.ax-icon-comment {
|
384
|
+
&:before {
|
385
|
+
content: $ax-icon-comment;
|
386
|
+
}
|
387
|
+
&:after {
|
388
|
+
content: $ax-icon-comment-after;
|
389
|
+
}
|
390
|
+
}
|
391
|
+
|
392
|
+
.ax-icon-bold {
|
393
|
+
&:before {
|
394
|
+
content: $ax-icon-bold;
|
395
|
+
}
|
396
|
+
&:after {
|
397
|
+
content: $ax-icon-bold-after;
|
398
|
+
}
|
399
|
+
}
|
400
|
+
|
401
|
+
.ax-icon-italic {
|
402
|
+
&:before {
|
403
|
+
content: $ax-icon-italic;
|
404
|
+
}
|
405
|
+
&:after {
|
406
|
+
content: $ax-icon-italic-after;
|
407
|
+
}
|
408
|
+
}
|
409
|
+
|
410
|
+
.ax-icon-under-line {
|
411
|
+
&:before {
|
412
|
+
content: $ax-icon-under-line;
|
413
|
+
}
|
414
|
+
&:after {
|
415
|
+
content: $ax-icon-under-line-after;
|
416
|
+
}
|
417
|
+
}
|
418
|
+
|
419
|
+
.ax-icon-strike {
|
420
|
+
&:before {
|
421
|
+
content: $ax-icon-strike;
|
422
|
+
}
|
423
|
+
&:after {
|
424
|
+
content: $ax-icon-strike-after;
|
425
|
+
}
|
426
|
+
}
|
427
|
+
|
428
|
+
.ax-icon-order-list {
|
429
|
+
&:before {
|
430
|
+
content: $ax-icon-order-list;
|
431
|
+
}
|
432
|
+
&:after {
|
433
|
+
content: $ax-icon-order-list-after;
|
434
|
+
}
|
435
|
+
}
|
436
|
+
|
437
|
+
.ax-icon-un-order-list {
|
438
|
+
&:before {
|
439
|
+
content: $ax-icon-un-order-list;
|
440
|
+
}
|
441
|
+
&:after {
|
442
|
+
content: $ax-icon-un-order-list-after;
|
443
|
+
}
|
444
|
+
}
|
445
|
+
|
446
|
+
.ax-icon-align-left {
|
447
|
+
&:before {
|
448
|
+
content: $ax-icon-align-left;
|
449
|
+
}
|
450
|
+
&:after {
|
451
|
+
content: $ax-icon-align-left-after;
|
452
|
+
}
|
453
|
+
}
|
454
|
+
|
455
|
+
.ax-icon-align-right {
|
456
|
+
&:before {
|
457
|
+
content: $ax-icon-align-right;
|
458
|
+
}
|
459
|
+
&:after {
|
460
|
+
content: $ax-icon-align-right-after;
|
461
|
+
}
|
462
|
+
}
|
463
|
+
|
464
|
+
.ax-icon-align-center {
|
465
|
+
&:before {
|
466
|
+
content: $ax-icon-align-center;
|
467
|
+
}
|
468
|
+
&:after {
|
469
|
+
content: $ax-icon-align-center-after;
|
470
|
+
}
|
471
|
+
}
|
472
|
+
|
473
|
+
.ax-icon-align-justify {
|
474
|
+
&:before {
|
475
|
+
content: $ax-icon-align-justify;
|
476
|
+
}
|
477
|
+
&:after {
|
478
|
+
content: $ax-icon-align-justify-after;
|
479
|
+
}
|
480
|
+
}
|
481
|
+
|
482
|
+
.ax-icon-undo {
|
483
|
+
&:before {
|
484
|
+
content: $ax-icon-undo;
|
485
|
+
}
|
486
|
+
&:after {
|
487
|
+
content: $ax-icon-undo-after;
|
488
|
+
}
|
489
|
+
}
|
490
|
+
|
491
|
+
.ax-icon-redo {
|
492
|
+
&:before {
|
493
|
+
content: $ax-icon-redo;
|
494
|
+
}
|
495
|
+
&:after {
|
496
|
+
content: $ax-icon-redo-after;
|
497
|
+
}
|
498
|
+
}
|
499
|
+
|
500
|
+
.ax-icon-highlight {
|
501
|
+
&:before {
|
502
|
+
content: $ax-icon-highlight;
|
503
|
+
}
|
504
|
+
&:after {
|
505
|
+
content: $ax-icon-highlight-after;
|
506
|
+
}
|
507
|
+
}
|
508
|
+
|
509
|
+
.ax-icon-link {
|
510
|
+
&:before {
|
511
|
+
content: $ax-icon-link;
|
512
|
+
}
|
513
|
+
&:after {
|
514
|
+
content: $ax-icon-link-after;
|
515
|
+
}
|
516
|
+
}
|
517
|
+
|
518
|
+
.ax-icon-image {
|
519
|
+
&:before {
|
520
|
+
content: $ax-icon-image;
|
521
|
+
}
|
522
|
+
&:after {
|
523
|
+
content: $ax-icon-image-after;
|
524
|
+
}
|
525
|
+
}
|
526
|
+
|
527
|
+
.ax-icon-pen {
|
528
|
+
&:before {
|
529
|
+
content: $ax-icon-pen;
|
530
|
+
}
|
531
|
+
&:after {
|
532
|
+
content: $ax-icon-pen-after;
|
533
|
+
}
|
534
|
+
}
|
535
|
+
|
536
|
+
.ax-icon-eraser {
|
537
|
+
&:before {
|
538
|
+
content: $ax-icon-eraser;
|
539
|
+
}
|
540
|
+
&:after {
|
541
|
+
content: $ax-icon-eraser-after;
|
542
|
+
}
|
543
|
+
}
|
544
|
+
|
545
|
+
.ax-icon-pen-ruler {
|
546
|
+
&:before {
|
547
|
+
content: $ax-icon-pen-ruler;
|
548
|
+
}
|
549
|
+
&:after {
|
550
|
+
content: $ax-icon-pen-ruler-after;
|
551
|
+
}
|
552
|
+
}
|
553
|
+
|
554
|
+
.ax-icon-crop {
|
555
|
+
&:before {
|
556
|
+
content: $ax-icon-crop;
|
557
|
+
}
|
558
|
+
&:after {
|
559
|
+
content: $ax-icon-crop-after;
|
560
|
+
}
|
561
|
+
}
|
562
|
+
|
563
|
+
.ax-icon-full-screen {
|
564
|
+
&:before {
|
565
|
+
content: $ax-icon-full-screen;
|
566
|
+
}
|
567
|
+
&:after {
|
568
|
+
content: $ax-icon-full-screen-after;
|
569
|
+
}
|
570
|
+
}
|