@acorex/styles 19.8.0-next.10 → 19.8.0-next.11
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/icons/fontawesome/_variables.scss +0 -9
- package/icons/fontawesome/index.scss +10 -38
- package/icons/huge/huge-bulk/_variables.scss +0 -9
- package/icons/huge/huge-bulk/index.scss +4 -31
- package/icons/huge/huge-duotone/_variables.scss +0 -9
- package/icons/huge/huge-duotone/index.scss +4 -31
- package/icons/huge/huge-solid-rounded/_variables.scss +0 -9
- package/icons/huge/huge-solid-rounded/index.scss +0 -27
- package/icons/huge/huge-solid-sharp/_variables.scss +0 -9
- package/icons/huge/huge-solid-sharp/index.scss +4 -31
- package/icons/huge/huge-solid-standard/_variables.scss +0 -9
- package/icons/huge/huge-solid-standard/index.scss +4 -31
- package/icons/huge/huge-stroke-rounded/_variables.scss +0 -9
- package/icons/huge/huge-stroke-rounded/index.scss +4 -31
- package/icons/huge/huge-stroke-sharp/_variables.scss +0 -9
- package/icons/huge/huge-stroke-sharp/index.scss +4 -31
- package/icons/huge/huge-stroke-standard/_variables.scss +0 -9
- package/icons/huge/huge-stroke-standard/index.scss +4 -31
- package/icons/huge/huge-twotone/_variables.scss +0 -9
- package/icons/huge/huge-twotone/index.scss +4 -31
- package/icons/material/_variables.scss +0 -9
- package/icons/material/index.scss +4 -32
- package/index.css +319 -2016
- package/index.min.css +1 -1
- package/index.scss +1 -0
- package/package.json +1 -1
- package/src/base/index.scss +2 -4
- package/src/components/editors/_base.scss +50 -0
- package/src/components/editors/index.scss +60 -0
- package/src/components/editors/looks/_fill.scss +17 -0
- package/src/components/editors/looks/_flat.scss +18 -0
- package/src/components/editors/looks/_outline.scss +18 -0
- package/src/components/editors/looks/_solid.scss +20 -0
- package/src/components/editors/looks/index.scss +4 -0
- package/src/components/index.scss +1 -0
- package/src/mixins/_look.scss +20 -35
- package/src/shared/_action-item.scss +3 -3
- package/src/shared/_actionsheet.scss +7 -6
- package/src/shared/_check-box.scss +8 -14
- package/src/shared/_drop-down.scss +7 -16
- package/src/shared/_editor-container.scss +35 -75
- package/src/shared/_general-button.scss +11 -12
- package/src/shared/_inputs.scss +0 -16
- package/src/shared/_list.scss +15 -41
- package/src/shared/_radio.scss +8 -14
- package/src/shared/_ripple.scss +13 -0
- package/src/shared/_table.scss +9 -30
- package/src/shared/_utils.scss +10 -16
- package/src/shared/index.scss +4 -2
- package/src/utility/index.scss +2 -22
- package/src/variables/_colors.scss +1 -1
- package/tailwind-base.js +89 -56
- package/themes/default.css +1 -1
- package/themes/default.scss +240 -139
- package/themes/test.scss +237 -0
- package/src/shared/_color-look.scss +0 -822
@@ -189,12 +189,3 @@ $ax-icon-crop-after: '';
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: '\f065';
|
191
191
|
$ax-icon-full-screen-after: '';
|
192
|
-
|
193
|
-
$ax-icon-up-folder: '\e632';
|
194
|
-
$ax-icon-up-folder-after: '';
|
195
|
-
|
196
|
-
$ax-icon-sort: '\e0ae';
|
197
|
-
$ax-icon-sort-after: '';
|
198
|
-
|
199
|
-
$ax-icon-menu: '\f0c9';
|
200
|
-
$ax-icon-menu-after: '';
|
@@ -1,33 +1,32 @@
|
|
1
1
|
@use './variables';
|
2
2
|
|
3
3
|
.ax-icon-thin {
|
4
|
-
--ax-icon-weight: 100;
|
4
|
+
--ax-sys-icon-weight: 100;
|
5
5
|
}
|
6
6
|
.ax-icon-light {
|
7
|
-
--ax-icon-weight: 300;
|
7
|
+
--ax-sys-icon-weight: 300;
|
8
8
|
}
|
9
9
|
.ax-icon-regular {
|
10
|
-
--ax-icon-weight: 400;
|
10
|
+
--ax-sys-icon-weight: 400;
|
11
11
|
}
|
12
12
|
.ax-icon-solid {
|
13
|
-
--ax-icon-weight: 900;
|
13
|
+
--ax-sys-icon-weight: 900;
|
14
14
|
}
|
15
15
|
|
16
16
|
.ax-icon {
|
17
17
|
-moz-osx-font-smoothing: grayscale;
|
18
18
|
-webkit-font-smoothing: antialiased;
|
19
19
|
display: inline-flex !important;
|
20
|
+
align-items: center;
|
21
|
+
justify-content: center;
|
20
22
|
font-style: normal;
|
21
23
|
font-variant: normal;
|
22
|
-
line-height: 1;
|
23
24
|
text-rendering: auto;
|
24
25
|
font-family: 'Font Awesome 6 Pro';
|
25
|
-
width:
|
26
|
-
height:
|
27
|
-
|
28
|
-
|
29
|
-
font-weight: var(--ax-icon-weight, 400);
|
30
|
-
font-size: var(--ax-icon-size, 100%);
|
26
|
+
width: var(--ax-sys-icon-width, inherit);
|
27
|
+
height: var(--ax-sys-icon-height, inherit);
|
28
|
+
font-weight: var(--ax-sys-icon-weight, 400);
|
29
|
+
font-size: var(--ax-sys-icon-size, 100%);
|
31
30
|
}
|
32
31
|
|
33
32
|
.ax-icon-more-horizontal {
|
@@ -605,30 +604,3 @@
|
|
605
604
|
content: variables.$ax-icon-full-screen-after;
|
606
605
|
}
|
607
606
|
}
|
608
|
-
|
609
|
-
.ax-icon-up-folder {
|
610
|
-
&:before {
|
611
|
-
content: variables.$ax-icon-up-folder;
|
612
|
-
}
|
613
|
-
&:after {
|
614
|
-
content: variables.$ax-icon-up-folder-after;
|
615
|
-
}
|
616
|
-
}
|
617
|
-
|
618
|
-
.ax-icon-sort {
|
619
|
-
&:before {
|
620
|
-
content: variables.$ax-icon-sort;
|
621
|
-
}
|
622
|
-
&:after {
|
623
|
-
content: variables.$ax-icon-sort-after;
|
624
|
-
}
|
625
|
-
}
|
626
|
-
|
627
|
-
.ax-icon-menu {
|
628
|
-
&:before {
|
629
|
-
content: variables.$ax-icon-menu;
|
630
|
-
}
|
631
|
-
&:after {
|
632
|
-
content: variables.$ax-icon-menu-after;
|
633
|
-
}
|
634
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: ''; //crop
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: ''; //arrow-diagonal
|
191
191
|
$ax-icon-full-screen-after: ''; //arrow-diagonal
|
192
|
-
|
193
|
-
$ax-icon-up-folder: ''; //arrow-move-up-left
|
194
|
-
$ax-icon-up-folder-after: ''; //arrow-move-up-left
|
195
|
-
|
196
|
-
$ax-icon-sort: 'ξ'; //sorting-01
|
197
|
-
$ax-icon-sort-after: 'ν'; //sorting-01
|
198
|
-
|
199
|
-
$ax-icon-menu: 'ﭾ'; //menu-01
|
200
|
-
$ax-icon-menu-after: 'ﭽ'; //menu-01
|
@@ -13,16 +13,16 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
.ax-icon-thin {
|
16
|
-
--ax-icon-weight: 100;
|
16
|
+
--ax-sys-icon-weight: 100;
|
17
17
|
}
|
18
18
|
.ax-icon-light {
|
19
|
-
--ax-icon-weight: 300;
|
19
|
+
--ax-sys-icon-weight: 300;
|
20
20
|
}
|
21
21
|
.ax-icon-regular {
|
22
|
-
--ax-icon-weight: 400;
|
22
|
+
--ax-sys-icon-weight: 400;
|
23
23
|
}
|
24
24
|
.ax-icon-solid {
|
25
|
-
--ax-icon-weight: 900;
|
25
|
+
--ax-sys-icon-weight: 900;
|
26
26
|
}
|
27
27
|
|
28
28
|
.ax-icon-more-horizontal {
|
@@ -600,30 +600,3 @@
|
|
600
600
|
content: variables.$ax-icon-full-screen-after;
|
601
601
|
}
|
602
602
|
}
|
603
|
-
|
604
|
-
.ax-icon-up-folder {
|
605
|
-
&:before {
|
606
|
-
content: variables.$ax-icon-up-folder;
|
607
|
-
}
|
608
|
-
&:after {
|
609
|
-
content: variables.$ax-icon-up-folder-after;
|
610
|
-
}
|
611
|
-
}
|
612
|
-
|
613
|
-
.ax-icon-sort {
|
614
|
-
&:before {
|
615
|
-
content: variables.$ax-icon-sort;
|
616
|
-
}
|
617
|
-
&:after {
|
618
|
-
content: variables.$ax-icon-sort-after;
|
619
|
-
}
|
620
|
-
}
|
621
|
-
|
622
|
-
.ax-icon-menu {
|
623
|
-
&:before {
|
624
|
-
content: variables.$ax-icon-menu;
|
625
|
-
}
|
626
|
-
&:after {
|
627
|
-
content: variables.$ax-icon-menu-after;
|
628
|
-
}
|
629
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: 'Ȥ'; //crop
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: 'ﮛ'; //arrow-diagonal
|
191
191
|
$ax-icon-full-screen-after: 'ﮚ'; //arrow-diagonal
|
192
|
-
|
193
|
-
$ax-icon-up-folder: 'ﯓ'; //arrow-move-up-left
|
194
|
-
$ax-icon-up-folder-after: ''; //arrow-move-up-left
|
195
|
-
|
196
|
-
$ax-icon-sort: 'Ꮫ'; //sorting-01
|
197
|
-
$ax-icon-sort-after: 'Ꮪ'; //sorting-01
|
198
|
-
|
199
|
-
$ax-icon-menu: ''; //menu-01
|
200
|
-
$ax-icon-menu-after: 'ஜ'; //menu-01
|
@@ -14,16 +14,16 @@
|
|
14
14
|
}
|
15
15
|
|
16
16
|
.ax-icon-thin {
|
17
|
-
--ax-icon-weight: 100;
|
17
|
+
--ax-sys-icon-weight: 100;
|
18
18
|
}
|
19
19
|
.ax-icon-light {
|
20
|
-
--ax-icon-weight: 300;
|
20
|
+
--ax-sys-icon-weight: 300;
|
21
21
|
}
|
22
22
|
.ax-icon-regular {
|
23
|
-
--ax-icon-weight: 400;
|
23
|
+
--ax-sys-icon-weight: 400;
|
24
24
|
}
|
25
25
|
.ax-icon-solid {
|
26
|
-
--ax-icon-weight: 900;
|
26
|
+
--ax-sys-icon-weight: 900;
|
27
27
|
}
|
28
28
|
|
29
29
|
.ax-icon-more-horizontal {
|
@@ -601,30 +601,3 @@
|
|
601
601
|
content: variables.$ax-icon-full-screen-after;
|
602
602
|
}
|
603
603
|
}
|
604
|
-
|
605
|
-
.ax-icon-up-folder {
|
606
|
-
&:before {
|
607
|
-
content: variables.$ax-icon-up-folder;
|
608
|
-
}
|
609
|
-
&:after {
|
610
|
-
content: variables.$ax-icon-up-folder-after;
|
611
|
-
}
|
612
|
-
}
|
613
|
-
|
614
|
-
.ax-icon-sort {
|
615
|
-
&:before {
|
616
|
-
content: variables.$ax-icon-sort;
|
617
|
-
}
|
618
|
-
&:after {
|
619
|
-
content: variables.$ax-icon-sort-after;
|
620
|
-
}
|
621
|
-
}
|
622
|
-
|
623
|
-
.ax-icon-menu {
|
624
|
-
&:before {
|
625
|
-
content: variables.$ax-icon-menu;
|
626
|
-
}
|
627
|
-
&:after {
|
628
|
-
content: variables.$ax-icon-menu-after;
|
629
|
-
}
|
630
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: ''; //crop
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: 'ૼ'; //arrow-diagonal
|
191
191
|
$ax-icon-full-screen-after: ''; //arrow-diagonal
|
192
|
-
|
193
|
-
$ax-icon-up-folder: 'ଘ'; //arrow-move-up-left
|
194
|
-
$ax-icon-up-folder-after: ''; //arrow-move-up-left
|
195
|
-
|
196
|
-
$ax-icon-sort: ''; //sorting-01
|
197
|
-
$ax-icon-sort-after: ''; //sorting-01
|
198
|
-
|
199
|
-
$ax-icon-menu: 'ዽ'; //menu-01
|
200
|
-
$ax-icon-menu-after: ''; //menu-01
|
@@ -587,30 +587,3 @@
|
|
587
587
|
content: variables.$ax-icon-full-screen-after;
|
588
588
|
}
|
589
589
|
}
|
590
|
-
|
591
|
-
.ax-icon-up-folder {
|
592
|
-
&:before {
|
593
|
-
content: variables.$ax-icon-up-folder;
|
594
|
-
}
|
595
|
-
&:after {
|
596
|
-
content: variables.$ax-icon-up-folder-after;
|
597
|
-
}
|
598
|
-
}
|
599
|
-
|
600
|
-
.ax-icon-sort {
|
601
|
-
&:before {
|
602
|
-
content: variables.$ax-icon-sort;
|
603
|
-
}
|
604
|
-
&:after {
|
605
|
-
content: variables.$ax-icon-sort-after;
|
606
|
-
}
|
607
|
-
}
|
608
|
-
|
609
|
-
.ax-icon-menu {
|
610
|
-
&:before {
|
611
|
-
content: variables.$ax-icon-menu;
|
612
|
-
}
|
613
|
-
&:after {
|
614
|
-
content: variables.$ax-icon-menu-after;
|
615
|
-
}
|
616
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: ''; //crop
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: 'ᬛ'; //arrow-diagonal
|
191
191
|
$ax-icon-full-screen-after: ''; //arrow-diagonal
|
192
|
-
|
193
|
-
$ax-icon-up-folder: 'ᬷ'; //arrow-move-up-left
|
194
|
-
$ax-icon-up-folder-after: ''; //arrow-move-up-left
|
195
|
-
|
196
|
-
$ax-icon-sort: '✼'; //sorting-01
|
197
|
-
$ax-icon-sort-after: ''; //sorting-01
|
198
|
-
|
199
|
-
$ax-icon-menu: '⌜'; //menu-01
|
200
|
-
$ax-icon-menu-after: ''; //menu-01
|
@@ -13,16 +13,16 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
.ax-icon-thin {
|
16
|
-
--ax-icon-weight: 100;
|
16
|
+
--ax-sys-icon-weight: 100;
|
17
17
|
}
|
18
18
|
.ax-icon-light {
|
19
|
-
--ax-icon-weight: 300;
|
19
|
+
--ax-sys-icon-weight: 300;
|
20
20
|
}
|
21
21
|
.ax-icon-regular {
|
22
|
-
--ax-icon-weight: 400;
|
22
|
+
--ax-sys-icon-weight: 400;
|
23
23
|
}
|
24
24
|
.ax-icon-solid {
|
25
|
-
--ax-icon-weight: 900;
|
25
|
+
--ax-sys-icon-weight: 900;
|
26
26
|
}
|
27
27
|
|
28
28
|
.ax-icon-more-horizontal {
|
@@ -600,30 +600,3 @@
|
|
600
600
|
content: variables.$ax-icon-full-screen-after;
|
601
601
|
}
|
602
602
|
}
|
603
|
-
|
604
|
-
.ax-icon-up-folder {
|
605
|
-
&:before {
|
606
|
-
content: variables.$ax-icon-up-folder;
|
607
|
-
}
|
608
|
-
&:after {
|
609
|
-
content: variables.$ax-icon-up-folder-after;
|
610
|
-
}
|
611
|
-
}
|
612
|
-
|
613
|
-
.ax-icon-sort {
|
614
|
-
&:before {
|
615
|
-
content: variables.$ax-icon-sort;
|
616
|
-
}
|
617
|
-
&:after {
|
618
|
-
content: variables.$ax-icon-sort-after;
|
619
|
-
}
|
620
|
-
}
|
621
|
-
|
622
|
-
.ax-icon-menu {
|
623
|
-
&:before {
|
624
|
-
content: variables.$ax-icon-menu;
|
625
|
-
}
|
626
|
-
&:after {
|
627
|
-
content: variables.$ax-icon-menu-after;
|
628
|
-
}
|
629
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: ''; //crop
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: '⬺'; //arrow-diagonal
|
191
191
|
$ax-icon-full-screen-after: ''; //arrow-diagonal
|
192
|
-
|
193
|
-
$ax-icon-up-folder: '⭖'; //arrow-move-up-left
|
194
|
-
$ax-icon-up-folder-after: ''; //arrow-move-up-left
|
195
|
-
|
196
|
-
$ax-icon-sort: '㝛'; //sorting-01
|
197
|
-
$ax-icon-sort-after: ''; //sorting-01
|
198
|
-
|
199
|
-
$ax-icon-menu: '㌻'; //menu-01
|
200
|
-
$ax-icon-menu-after: ''; //menu-01
|
@@ -13,16 +13,16 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
.ax-icon-thin {
|
16
|
-
--ax-icon-weight: 100;
|
16
|
+
--ax-sys-icon-weight: 100;
|
17
17
|
}
|
18
18
|
.ax-icon-light {
|
19
|
-
--ax-icon-weight: 300;
|
19
|
+
--ax-sys-icon-weight: 300;
|
20
20
|
}
|
21
21
|
.ax-icon-regular {
|
22
|
-
--ax-icon-weight: 400;
|
22
|
+
--ax-sys-icon-weight: 400;
|
23
23
|
}
|
24
24
|
.ax-icon-solid {
|
25
|
-
--ax-icon-weight: 900;
|
25
|
+
--ax-sys-icon-weight: 900;
|
26
26
|
}
|
27
27
|
|
28
28
|
.ax-icon-more-horizontal {
|
@@ -600,30 +600,3 @@
|
|
600
600
|
content: variables.$ax-icon-full-screen-after;
|
601
601
|
}
|
602
602
|
}
|
603
|
-
|
604
|
-
.ax-icon-up-folder {
|
605
|
-
&:before {
|
606
|
-
content: variables.$ax-icon-up-folder;
|
607
|
-
}
|
608
|
-
&:after {
|
609
|
-
content: variables.$ax-icon-up-folder-after;
|
610
|
-
}
|
611
|
-
}
|
612
|
-
|
613
|
-
.ax-icon-sort {
|
614
|
-
&:before {
|
615
|
-
content: variables.$ax-icon-sort;
|
616
|
-
}
|
617
|
-
&:after {
|
618
|
-
content: variables.$ax-icon-sort-after;
|
619
|
-
}
|
620
|
-
}
|
621
|
-
|
622
|
-
.ax-icon-menu {
|
623
|
-
&:before {
|
624
|
-
content: variables.$ax-icon-menu;
|
625
|
-
}
|
626
|
-
&:after {
|
627
|
-
content: variables.$ax-icon-menu-after;
|
628
|
-
}
|
629
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: ''; //crop
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: '㭙'; //arrow-diagonal
|
191
191
|
$ax-icon-full-screen-after: ''; //arrow-diagonal
|
192
|
-
|
193
|
-
$ax-icon-up-folder: '㭵'; //arrow-move-up-left
|
194
|
-
$ax-icon-up-folder-after: ''; //arrow-move-up-left
|
195
|
-
|
196
|
-
$ax-icon-sort: '䝺'; //sorting-01
|
197
|
-
$ax-icon-sort-after: ''; //sorting-01
|
198
|
-
|
199
|
-
$ax-icon-menu: '䍚'; //menu-01
|
200
|
-
$ax-icon-menu-after: ''; //menu-01
|
@@ -13,16 +13,16 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
.ax-icon-thin {
|
16
|
-
--ax-icon-weight: 100;
|
16
|
+
--ax-sys-icon-weight: 100;
|
17
17
|
}
|
18
18
|
.ax-icon-light {
|
19
|
-
--ax-icon-weight: 300;
|
19
|
+
--ax-sys-icon-weight: 300;
|
20
20
|
}
|
21
21
|
.ax-icon-regular {
|
22
|
-
--ax-icon-weight: 400;
|
22
|
+
--ax-sys-icon-weight: 400;
|
23
23
|
}
|
24
24
|
.ax-icon-solid {
|
25
|
-
--ax-icon-weight: 900;
|
25
|
+
--ax-sys-icon-weight: 900;
|
26
26
|
}
|
27
27
|
|
28
28
|
.ax-icon-more-horizontal {
|
@@ -600,30 +600,3 @@
|
|
600
600
|
content: variables.$ax-icon-full-screen-after;
|
601
601
|
}
|
602
602
|
}
|
603
|
-
|
604
|
-
.ax-icon-up-folder {
|
605
|
-
&:before {
|
606
|
-
content: variables.$ax-icon-up-folder;
|
607
|
-
}
|
608
|
-
&:after {
|
609
|
-
content: variables.$ax-icon-up-folder-after;
|
610
|
-
}
|
611
|
-
}
|
612
|
-
|
613
|
-
.ax-icon-sort {
|
614
|
-
&:before {
|
615
|
-
content: variables.$ax-icon-sort;
|
616
|
-
}
|
617
|
-
&:after {
|
618
|
-
content: variables.$ax-icon-sort-after;
|
619
|
-
}
|
620
|
-
}
|
621
|
-
|
622
|
-
.ax-icon-menu {
|
623
|
-
&:before {
|
624
|
-
content: variables.$ax-icon-menu;
|
625
|
-
}
|
626
|
-
&:after {
|
627
|
-
content: variables.$ax-icon-menu-after;
|
628
|
-
}
|
629
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: ''; //crop
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: '䭸'; //arrow-diagonal
|
191
191
|
$ax-icon-full-screen-after: ''; //arrow-diagonal
|
192
|
-
|
193
|
-
$ax-icon-up-folder: '䮔'; //arrow-move-up-left
|
194
|
-
$ax-icon-up-folder-after: ''; //arrow-move-up-left
|
195
|
-
|
196
|
-
$ax-icon-sort: '垙'; //sorting-01
|
197
|
-
$ax-icon-sort-after: ''; //sorting-01
|
198
|
-
|
199
|
-
$ax-icon-menu: '卹'; //menu-01
|
200
|
-
$ax-icon-menu-after: ''; //menu-01
|
@@ -13,16 +13,16 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
.ax-icon-thin {
|
16
|
-
--ax-icon-weight: 100;
|
16
|
+
--ax-sys-icon-weight: 100;
|
17
17
|
}
|
18
18
|
.ax-icon-light {
|
19
|
-
--ax-icon-weight: 300;
|
19
|
+
--ax-sys-icon-weight: 300;
|
20
20
|
}
|
21
21
|
.ax-icon-regular {
|
22
|
-
--ax-icon-weight: 400;
|
22
|
+
--ax-sys-icon-weight: 400;
|
23
23
|
}
|
24
24
|
.ax-icon-solid {
|
25
|
-
--ax-icon-weight: 900;
|
25
|
+
--ax-sys-icon-weight: 900;
|
26
26
|
}
|
27
27
|
|
28
28
|
.ax-icon-more-horizontal {
|
@@ -600,30 +600,3 @@
|
|
600
600
|
content: variables.$ax-icon-full-screen-after;
|
601
601
|
}
|
602
602
|
}
|
603
|
-
|
604
|
-
.ax-icon-up-folder {
|
605
|
-
&:before {
|
606
|
-
content: variables.$ax-icon-up-folder;
|
607
|
-
}
|
608
|
-
&:after {
|
609
|
-
content: variables.$ax-icon-up-folder-after;
|
610
|
-
}
|
611
|
-
}
|
612
|
-
|
613
|
-
.ax-icon-sort {
|
614
|
-
&:before {
|
615
|
-
content: variables.$ax-icon-sort;
|
616
|
-
}
|
617
|
-
&:after {
|
618
|
-
content: variables.$ax-icon-sort-after;
|
619
|
-
}
|
620
|
-
}
|
621
|
-
|
622
|
-
.ax-icon-menu {
|
623
|
-
&:before {
|
624
|
-
content: variables.$ax-icon-menu;
|
625
|
-
}
|
626
|
-
&:after {
|
627
|
-
content: variables.$ax-icon-menu-after;
|
628
|
-
}
|
629
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: ''; //crop
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: '宗'; //arrow-diagonal
|
191
191
|
$ax-icon-full-screen-after: ''; //arrow-diagonal
|
192
|
-
|
193
|
-
$ax-icon-up-folder: '害'; //arrow-move-up-left
|
194
|
-
$ax-icon-up-folder-after: ''; //arrow-move-up-left
|
195
|
-
|
196
|
-
$ax-icon-sort: '枸'; //sorting-01
|
197
|
-
$ax-icon-sort-after: ''; //sorting-01
|
198
|
-
|
199
|
-
$ax-icon-menu: '掘'; //menu-01
|
200
|
-
$ax-icon-menu-after: ''; //menu-01
|
@@ -13,16 +13,16 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
.ax-icon-thin {
|
16
|
-
--ax-icon-weight: 100;
|
16
|
+
--ax-sys-icon-weight: 100;
|
17
17
|
}
|
18
18
|
.ax-icon-light {
|
19
|
-
--ax-icon-weight: 300;
|
19
|
+
--ax-sys-icon-weight: 300;
|
20
20
|
}
|
21
21
|
.ax-icon-regular {
|
22
|
-
--ax-icon-weight: 400;
|
22
|
+
--ax-sys-icon-weight: 400;
|
23
23
|
}
|
24
24
|
.ax-icon-solid {
|
25
|
-
--ax-icon-weight: 900;
|
25
|
+
--ax-sys-icon-weight: 900;
|
26
26
|
}
|
27
27
|
|
28
28
|
.ax-icon-more-horizontal {
|
@@ -600,30 +600,3 @@
|
|
600
600
|
content: variables.$ax-icon-full-screen-after;
|
601
601
|
}
|
602
602
|
}
|
603
|
-
|
604
|
-
.ax-icon-up-folder {
|
605
|
-
&:before {
|
606
|
-
content: variables.$ax-icon-up-folder;
|
607
|
-
}
|
608
|
-
&:after {
|
609
|
-
content: variables.$ax-icon-up-folder-after;
|
610
|
-
}
|
611
|
-
}
|
612
|
-
|
613
|
-
.ax-icon-sort {
|
614
|
-
&:before {
|
615
|
-
content: variables.$ax-icon-sort;
|
616
|
-
}
|
617
|
-
&:after {
|
618
|
-
content: variables.$ax-icon-sort-after;
|
619
|
-
}
|
620
|
-
}
|
621
|
-
|
622
|
-
.ax-icon-menu {
|
623
|
-
&:before {
|
624
|
-
content: variables.$ax-icon-menu;
|
625
|
-
}
|
626
|
-
&:after {
|
627
|
-
content: variables.$ax-icon-menu-after;
|
628
|
-
}
|
629
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: '狽'; //crop
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: '汴'; //arrow-diagonal
|
191
191
|
$ax-icon-full-screen-after: '汳'; //arrow-diagonal
|
192
|
-
|
193
|
-
$ax-icon-up-folder: '沬'; //arrow-move-up-left
|
194
|
-
$ax-icon-up-folder-after: '沫'; //arrow-move-up-left
|
195
|
-
|
196
|
-
$ax-icon-sort: '蒶'; //sorting-01
|
197
|
-
$ax-icon-sort-after: '蒵'; //sorting-01
|
198
|
-
|
199
|
-
$ax-icon-menu: '籶'; //menu-01
|
200
|
-
$ax-icon-menu-after: '籵'; //menu-01
|
@@ -13,16 +13,16 @@
|
|
13
13
|
}
|
14
14
|
|
15
15
|
.ax-icon-thin {
|
16
|
-
--ax-icon-weight: 100;
|
16
|
+
--ax-sys-icon-weight: 100;
|
17
17
|
}
|
18
18
|
.ax-icon-light {
|
19
|
-
--ax-icon-weight: 300;
|
19
|
+
--ax-sys-icon-weight: 300;
|
20
20
|
}
|
21
21
|
.ax-icon-regular {
|
22
|
-
--ax-icon-weight: 400;
|
22
|
+
--ax-sys-icon-weight: 400;
|
23
23
|
}
|
24
24
|
.ax-icon-solid {
|
25
|
-
--ax-icon-weight: 900;
|
25
|
+
--ax-sys-icon-weight: 900;
|
26
26
|
}
|
27
27
|
|
28
28
|
.ax-icon-more-horizontal {
|
@@ -600,30 +600,3 @@
|
|
600
600
|
content: variables.$ax-icon-full-screen-after;
|
601
601
|
}
|
602
602
|
}
|
603
|
-
|
604
|
-
.ax-icon-up-folder {
|
605
|
-
&:before {
|
606
|
-
content: variables.$ax-icon-up-folder;
|
607
|
-
}
|
608
|
-
&:after {
|
609
|
-
content: variables.$ax-icon-up-folder-after;
|
610
|
-
}
|
611
|
-
}
|
612
|
-
|
613
|
-
.ax-icon-sort {
|
614
|
-
&:before {
|
615
|
-
content: variables.$ax-icon-sort;
|
616
|
-
}
|
617
|
-
&:after {
|
618
|
-
content: variables.$ax-icon-sort-after;
|
619
|
-
}
|
620
|
-
}
|
621
|
-
|
622
|
-
.ax-icon-menu {
|
623
|
-
&:before {
|
624
|
-
content: variables.$ax-icon-menu;
|
625
|
-
}
|
626
|
-
&:after {
|
627
|
-
content: variables.$ax-icon-menu-after;
|
628
|
-
}
|
629
|
-
}
|
@@ -189,12 +189,3 @@ $ax-icon-crop-after: '';
|
|
189
189
|
|
190
190
|
$ax-icon-full-screen: '\e5d0';
|
191
191
|
$ax-icon-full-screen-after: '';
|
192
|
-
|
193
|
-
$ax-icon-up-folder: '\f72e';
|
194
|
-
$ax-icon-up-folder-after: '';
|
195
|
-
|
196
|
-
$ax-icon-sort: '\e164';
|
197
|
-
$ax-icon-sort-after: '';
|
198
|
-
|
199
|
-
$ax-icon-menu: '\e5d2';
|
200
|
-
$ax-icon-menu-after: '';
|