@acorex/styles 19.8.0-next.8 → 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.
Files changed (56) hide show
  1. package/icons/fontawesome/_variables.scss +9 -0
  2. package/icons/fontawesome/index.scss +38 -10
  3. package/icons/huge/huge-bulk/_variables.scss +9 -0
  4. package/icons/huge/huge-bulk/index.scss +31 -4
  5. package/icons/huge/huge-duotone/_variables.scss +9 -0
  6. package/icons/huge/huge-duotone/index.scss +31 -4
  7. package/icons/huge/huge-solid-rounded/_variables.scss +9 -0
  8. package/icons/huge/huge-solid-rounded/index.scss +27 -0
  9. package/icons/huge/huge-solid-sharp/_variables.scss +9 -0
  10. package/icons/huge/huge-solid-sharp/index.scss +31 -4
  11. package/icons/huge/huge-solid-standard/_variables.scss +9 -0
  12. package/icons/huge/huge-solid-standard/index.scss +31 -4
  13. package/icons/huge/huge-stroke-rounded/_variables.scss +9 -0
  14. package/icons/huge/huge-stroke-rounded/index.scss +31 -4
  15. package/icons/huge/huge-stroke-sharp/_variables.scss +9 -0
  16. package/icons/huge/huge-stroke-sharp/index.scss +31 -4
  17. package/icons/huge/huge-stroke-standard/_variables.scss +9 -0
  18. package/icons/huge/huge-stroke-standard/index.scss +31 -4
  19. package/icons/huge/huge-twotone/_variables.scss +9 -0
  20. package/icons/huge/huge-twotone/index.scss +31 -4
  21. package/icons/material/_variables.scss +9 -0
  22. package/icons/material/index.scss +32 -4
  23. package/index.css +2016 -319
  24. package/index.min.css +1 -1
  25. package/index.scss +0 -1
  26. package/package.json +1 -1
  27. package/src/base/index.scss +4 -2
  28. package/src/mixins/_look.scss +35 -20
  29. package/src/shared/_action-item.scss +3 -3
  30. package/src/shared/_actionsheet.scss +6 -7
  31. package/src/shared/_check-box.scss +14 -8
  32. package/src/shared/_color-look.scss +822 -0
  33. package/src/shared/_drop-down.scss +16 -7
  34. package/src/shared/_editor-container.scss +75 -35
  35. package/src/shared/_general-button.scss +12 -11
  36. package/src/shared/_inputs.scss +16 -0
  37. package/src/shared/_list.scss +41 -15
  38. package/src/shared/_radio.scss +14 -8
  39. package/src/shared/_table.scss +30 -9
  40. package/src/shared/_utils.scss +16 -10
  41. package/src/shared/index.scss +2 -4
  42. package/src/utility/index.scss +22 -2
  43. package/src/variables/_colors.scss +1 -1
  44. package/tailwind-base.js +56 -89
  45. package/themes/default.css +1 -1
  46. package/themes/default.scss +139 -240
  47. package/src/components/editors/_base.scss +0 -50
  48. package/src/components/editors/index.scss +0 -60
  49. package/src/components/editors/looks/_fill.scss +0 -17
  50. package/src/components/editors/looks/_flat.scss +0 -18
  51. package/src/components/editors/looks/_outline.scss +0 -18
  52. package/src/components/editors/looks/_solid.scss +0 -20
  53. package/src/components/editors/looks/index.scss +0 -4
  54. package/src/components/index.scss +0 -1
  55. package/src/shared/_ripple.scss +0 -13
  56. 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-sys-icon-weight: 100;
25
+ --ax-icon-weight: 100;
25
26
  }
26
27
  .ax-icon-light {
27
- --ax-sys-icon-weight: 300;
28
+ --ax-icon-weight: 300;
28
29
  }
29
30
  .ax-icon-regular {
30
- --ax-sys-icon-weight: 400;
31
+ --ax-icon-weight: 400;
31
32
  }
32
33
  .ax-icon-solid {
33
- --ax-sys-icon-weight: 900;
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
+ }