@acorex/styles 18.5.3 → 18.5.5
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.
@@ -42,6 +42,7 @@ $ax-icon-heart: '\f004';
|
|
42
42
|
$ax-icon-comment: '\f075';
|
43
43
|
$ax-icon-bold: '\f032';
|
44
44
|
$ax-icon-italic: '\f033';
|
45
|
+
$ax-icon-strike: '\f0cc';
|
45
46
|
$ax-icon-under-line: '\f0cd';
|
46
47
|
$ax-icon-order-list: '\f0cb';
|
47
48
|
$ax-icon-un-order-list: '\f0ca';
|
@@ -49,3 +50,8 @@ $ax-icon-align-left: '\f036';
|
|
49
50
|
$ax-icon-align-right: '\f038';
|
50
51
|
$ax-icon-align-center: '\f037';
|
51
52
|
$ax-icon-align-justify: '\f039';
|
53
|
+
$ax-icon-undo: '\f0e2';
|
54
|
+
$ax-icon-redo: '\f01e';
|
55
|
+
$ax-icon-highlight: '\f591';
|
56
|
+
$ax-icon-link: '\f0c1';
|
57
|
+
$ax-icon-image: '\f03e';
|
package/icons/index.scss
CHANGED
@@ -250,6 +250,11 @@
|
|
250
250
|
content: $ax-icon-under-line;
|
251
251
|
}
|
252
252
|
}
|
253
|
+
.ax-icon-strike {
|
254
|
+
&:before {
|
255
|
+
content: $ax-icon-strike;
|
256
|
+
}
|
257
|
+
}
|
253
258
|
.ax-icon-order-list {
|
254
259
|
&:before {
|
255
260
|
content: $ax-icon-order-list;
|
@@ -280,3 +285,28 @@
|
|
280
285
|
content: $ax-icon-align-justify;
|
281
286
|
}
|
282
287
|
}
|
288
|
+
.ax-icon-undo {
|
289
|
+
&:before {
|
290
|
+
content: $ax-icon-undo;
|
291
|
+
}
|
292
|
+
}
|
293
|
+
.ax-icon-redo {
|
294
|
+
&:before {
|
295
|
+
content: $ax-icon-redo;
|
296
|
+
}
|
297
|
+
}
|
298
|
+
.ax-icon-highlight {
|
299
|
+
&:before {
|
300
|
+
content: $ax-icon-highlight;
|
301
|
+
}
|
302
|
+
}
|
303
|
+
.ax-icon-link {
|
304
|
+
&:before {
|
305
|
+
content: $ax-icon-link;
|
306
|
+
}
|
307
|
+
}
|
308
|
+
.ax-icon-image {
|
309
|
+
&:before {
|
310
|
+
content: $ax-icon-image;
|
311
|
+
}
|
312
|
+
}
|
@@ -42,6 +42,7 @@ $ax-icon-heart: '\e87d';
|
|
42
42
|
$ax-icon-comment: '\e0ca';
|
43
43
|
$ax-icon-bold: '\e238';
|
44
44
|
$ax-icon-italic: '\e23f';
|
45
|
+
$ax-icon-strike: '\e257';
|
45
46
|
$ax-icon-under-line: '\e249';
|
46
47
|
$ax-icon-order-list: '\e242';
|
47
48
|
$ax-icon-un-order-list: '\e241';
|
@@ -49,3 +50,8 @@ $ax-icon-align-left: '\e236';
|
|
49
50
|
$ax-icon-align-right: '\e237';
|
50
51
|
$ax-icon-align-center: '\e234';
|
51
52
|
$ax-icon-align-justify: '\e235';
|
53
|
+
$ax-icon-undo: '\e166';
|
54
|
+
$ax-icon-redo: '\e15a';
|
55
|
+
$ax-icon-highlight: '\e6d1';
|
56
|
+
$ax-icon-link: '\e157';
|
57
|
+
$ax-icon-image: '\e3f4';
|