@acorex/styles 19.8.0-next.10 → 19.8.0-next.12
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
@@ -5,7 +5,6 @@
|
|
5
5
|
font-style: normal;
|
6
6
|
font-size: 24px; /* Preferred icon size */
|
7
7
|
display: inline-block;
|
8
|
-
line-height: 1;
|
9
8
|
text-transform: none;
|
10
9
|
letter-spacing: normal;
|
11
10
|
word-wrap: normal;
|
@@ -22,16 +21,16 @@
|
|
22
21
|
}
|
23
22
|
|
24
23
|
.ax-icon-thin {
|
25
|
-
--ax-icon-weight: 100;
|
24
|
+
--ax-sys-icon-weight: 100;
|
26
25
|
}
|
27
26
|
.ax-icon-light {
|
28
|
-
--ax-icon-weight: 300;
|
27
|
+
--ax-sys-icon-weight: 300;
|
29
28
|
}
|
30
29
|
.ax-icon-regular {
|
31
|
-
--ax-icon-weight: 400;
|
30
|
+
--ax-sys-icon-weight: 400;
|
32
31
|
}
|
33
32
|
.ax-icon-solid {
|
34
|
-
--ax-icon-weight: 900;
|
33
|
+
--ax-sys-icon-weight: 900;
|
35
34
|
}
|
36
35
|
|
37
36
|
.ax-icon-more-horizontal {
|
@@ -609,30 +608,3 @@
|
|
609
608
|
content: variables.$ax-icon-full-screen-after;
|
610
609
|
}
|
611
610
|
}
|
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
|
-
}
|