@acorex/styles 19.8.0-next.9 → 19.9.0
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 +9 -0
- package/icons/fontawesome/index.scss +38 -10
- package/icons/huge/huge-bulk/_variables.scss +9 -0
- package/icons/huge/huge-bulk/index.scss +31 -4
- package/icons/huge/huge-duotone/_variables.scss +9 -0
- package/icons/huge/huge-duotone/index.scss +31 -4
- package/icons/huge/huge-solid-rounded/_variables.scss +9 -0
- package/icons/huge/huge-solid-rounded/index.scss +27 -0
- package/icons/huge/huge-solid-sharp/_variables.scss +9 -0
- package/icons/huge/huge-solid-sharp/index.scss +31 -4
- package/icons/huge/huge-solid-standard/_variables.scss +9 -0
- package/icons/huge/huge-solid-standard/index.scss +31 -4
- package/icons/huge/huge-stroke-rounded/_variables.scss +9 -0
- package/icons/huge/huge-stroke-rounded/index.scss +31 -4
- package/icons/huge/huge-stroke-sharp/_variables.scss +9 -0
- package/icons/huge/huge-stroke-sharp/index.scss +31 -4
- package/icons/huge/huge-stroke-standard/_variables.scss +9 -0
- package/icons/huge/huge-stroke-standard/index.scss +31 -4
- package/icons/huge/huge-twotone/_variables.scss +9 -0
- package/icons/huge/huge-twotone/index.scss +31 -4
- package/icons/material/_variables.scss +9 -0
- package/icons/material/index.scss +32 -4
- package/index.css +2016 -319
- package/index.min.css +1 -1
- package/index.scss +0 -1
- package/package.json +1 -1
- package/src/base/index.scss +4 -2
- package/src/mixins/_look.scss +35 -20
- package/src/shared/_action-item.scss +3 -3
- package/src/shared/_actionsheet.scss +6 -7
- package/src/shared/_check-box.scss +14 -8
- package/src/shared/_color-look.scss +822 -0
- package/src/shared/_drop-down.scss +16 -7
- package/src/shared/_editor-container.scss +75 -35
- package/src/shared/_general-button.scss +12 -11
- package/src/shared/_inputs.scss +16 -0
- package/src/shared/_list.scss +41 -15
- package/src/shared/_radio.scss +14 -8
- package/src/shared/_table.scss +30 -9
- package/src/shared/_utils.scss +16 -10
- package/src/shared/index.scss +2 -4
- package/src/utility/index.scss +22 -2
- package/src/variables/_colors.scss +1 -1
- package/tailwind-base.js +56 -89
- package/themes/default.css +1 -1
- package/themes/default.scss +139 -240
- package/src/components/editors/_base.scss +0 -50
- package/src/components/editors/index.scss +0 -60
- package/src/components/editors/looks/_fill.scss +0 -17
- package/src/components/editors/looks/_flat.scss +0 -18
- package/src/components/editors/looks/_outline.scss +0 -18
- package/src/components/editors/looks/_solid.scss +0 -20
- package/src/components/editors/looks/index.scss +0 -4
- package/src/components/index.scss +0 -1
- package/src/shared/_ripple.scss +0 -13
- package/themes/test.scss +0 -237
@@ -5,6 +5,7 @@
|
|
5
5
|
font-style: normal;
|
6
6
|
font-size: 24px; /* Preferred icon size */
|
7
7
|
display: inline-block;
|
8
|
+
line-height: 1;
|
8
9
|
text-transform: none;
|
9
10
|
letter-spacing: normal;
|
10
11
|
word-wrap: normal;
|
@@ -21,16 +22,16 @@
|
|
21
22
|
}
|
22
23
|
|
23
24
|
.ax-icon-thin {
|
24
|
-
--ax-
|
25
|
+
--ax-icon-weight: 100;
|
25
26
|
}
|
26
27
|
.ax-icon-light {
|
27
|
-
--ax-
|
28
|
+
--ax-icon-weight: 300;
|
28
29
|
}
|
29
30
|
.ax-icon-regular {
|
30
|
-
--ax-
|
31
|
+
--ax-icon-weight: 400;
|
31
32
|
}
|
32
33
|
.ax-icon-solid {
|
33
|
-
--ax-
|
34
|
+
--ax-icon-weight: 900;
|
34
35
|
}
|
35
36
|
|
36
37
|
.ax-icon-more-horizontal {
|
@@ -608,3 +609,30 @@
|
|
608
609
|
content: variables.$ax-icon-full-screen-after;
|
609
610
|
}
|
610
611
|
}
|
612
|
+
|
613
|
+
.ax-icon-up-folder {
|
614
|
+
&:before {
|
615
|
+
content: variables.$ax-icon-up-folder;
|
616
|
+
}
|
617
|
+
&:after {
|
618
|
+
content: variables.$ax-icon-up-folder-after;
|
619
|
+
}
|
620
|
+
}
|
621
|
+
|
622
|
+
.ax-icon-sort {
|
623
|
+
&:before {
|
624
|
+
content: variables.$ax-icon-sort;
|
625
|
+
}
|
626
|
+
&:after {
|
627
|
+
content: variables.$ax-icon-sort-after;
|
628
|
+
}
|
629
|
+
}
|
630
|
+
|
631
|
+
.ax-icon-menu {
|
632
|
+
&:before {
|
633
|
+
content: variables.$ax-icon-menu;
|
634
|
+
}
|
635
|
+
&:after {
|
636
|
+
content: variables.$ax-icon-menu-after;
|
637
|
+
}
|
638
|
+
}
|