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