@acorex/styles 6.1.12 → 7.0.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 (81) hide show
  1. package/index.scss +3 -1
  2. package/package.json +1 -1
  3. package/src/base/index.scss +44 -30
  4. package/src/components/_avatar.scss +122 -122
  5. package/src/components/_badge.scss +178 -178
  6. package/src/components/_breadcrumbs.scss +30 -29
  7. package/src/components/_button copy.scss +924 -0
  8. package/src/components/_button.scss +0 -924
  9. package/src/components/_calendar.scss +180 -180
  10. package/src/components/_carousel.scss +44 -44
  11. package/src/components/_checkbox.scss +58 -58
  12. package/src/components/_collapse.scss +48 -48
  13. package/src/components/_color-palette.scss +5 -5
  14. package/src/components/_color-picker.scss +23 -23
  15. package/src/components/_context-menu.scss +0 -16
  16. package/src/components/_data-table.scss +1 -1
  17. package/src/components/_datepicker.scss +5 -5
  18. package/src/components/_decoration.scss +0 -39
  19. package/src/components/_dialog.scss +80 -79
  20. package/src/components/_drawer.scss +112 -112
  21. package/src/components/_dropdown.scss +162 -216
  22. package/src/components/_editor-container.scss +0 -155
  23. package/src/components/_fieldset.scss +1 -6
  24. package/src/components/_image.scss +1 -1
  25. package/src/components/_label.scss +1 -1
  26. package/src/components/_list.scss +0 -83
  27. package/src/components/_loading.scss +1 -50
  28. package/src/components/_menu copy.scss +5 -5
  29. package/src/components/_menu.scss +114 -114
  30. package/src/components/_popup.scss +92 -91
  31. package/src/components/_progress.scss +59 -59
  32. package/src/components/_radio.scss +30 -30
  33. package/src/components/_range-slider.scss +147 -125
  34. package/src/components/_result.scss +2 -2
  35. package/src/components/_selectbox.scss +15 -17
  36. package/src/components/_selection-list.scss +2 -2
  37. package/src/components/_skeleton.scss +2 -2
  38. package/src/components/_switch.scss +0 -186
  39. package/src/components/_table.scss +0 -81
  40. package/src/components/_tabs copy.scss +18 -18
  41. package/src/components/_tabs.scss +235 -235
  42. package/src/components/_textarea.scss +27 -31
  43. package/src/components/_toast.scss +1 -1
  44. package/src/components/_treeview.scss +0 -54
  45. package/src/components/_uploader.scss +0 -18
  46. package/src/components/index.scss +1 -47
  47. package/src/icons/demo.html +892 -738
  48. package/src/icons/fonts/acorex-icons.eot +0 -0
  49. package/src/icons/fonts/acorex-icons.svg +71 -0
  50. package/src/icons/fonts/acorex-icons.ttf +0 -0
  51. package/src/icons/fonts/acorex-icons.woff +0 -0
  52. package/src/icons/selection.json +1 -1
  53. package/src/icons/style.css +210 -177
  54. package/src/icons/style.scss +335 -280
  55. package/src/icons/variables.scss +65 -54
  56. package/src/mixins/_media.scss +27 -0
  57. package/src/mixins/index.scss +1 -0
  58. package/src/shared/_check-box.scss +45 -0
  59. package/src/shared/_decoration.scss +56 -0
  60. package/src/shared/_drop-down.scss +163 -0
  61. package/src/shared/_editor-container.scss +130 -0
  62. package/src/shared/_general-button.scss +42 -0
  63. package/src/shared/_icon-control.scss +0 -0
  64. package/src/shared/_inputs.scss +12 -0
  65. package/src/shared/_list.scss +134 -0
  66. package/src/shared/_radio.scss +37 -0
  67. package/src/shared/_skeleton.scss +26 -0
  68. package/src/shared/_table.scss +116 -0
  69. package/src/shared/_utils.scss +46 -0
  70. package/src/shared/index.scss +12 -0
  71. package/src/utility/_mixins.scss +3 -3
  72. package/src/utility/index.scss +16 -22
  73. package/src/variables/_colors.scss +76 -107
  74. package/src/variables/_degrees.scss +1 -0
  75. package/src/variables/index.scss +2 -0
  76. package/{index.js → tailwind.config.js} +14 -63
  77. package/src/components/_alert.scss +0 -276
  78. package/src/icons/fonts/acorex-icon.eot +0 -0
  79. package/src/icons/fonts/acorex-icon.svg +0 -60
  80. package/src/icons/fonts/acorex-icon.ttf +0 -0
  81. package/src/icons/fonts/acorex-icon.woff +0 -0
@@ -1,182 +1,182 @@
1
- @layer components {
2
- .ax-calendar {
3
- @apply ax-w-80 ax-block ax-border ax-border-solid ax-border-light-300 ax-rounded ax-bg-white ax-select-none dark:ax-bg-white/[0.03] dark:ax-border-transparent;
4
- @include responsive('phone') {
5
- @apply ax-w-full;
6
- }
7
- @include responsive('tablet') {
8
- @apply ax-w-full;
9
- }
10
- @include responsive('desktop'){
11
- @apply ax-w-80;
12
- }
13
- @include responsive('desktop-large'){
14
- @apply ax-w-80;
15
- }
16
-
17
- .ax-calendar-header {
18
- i {
19
- @apply ax-font-medium ax-text-xl;
20
- }
21
- }
1
+ // @layer components {
2
+ // .ax-calendar {
3
+ // @apply ax-w-80 ax-block ax-border ax-border-solid ax-border-neutral-300 ax-rounded ax-bg-white ax-select-none dark:ax-bg-white/[0.03] dark:ax-border-transparent;
4
+ // @include media('phone') {
5
+ // @apply ax-w-full;
6
+ // }
7
+ // @include media('tablet') {
8
+ // @apply ax-w-full;
9
+ // }
10
+ // @include media('desktop'){
11
+ // @apply ax-w-80;
12
+ // }
13
+ // @include media('desktop-large'){
14
+ // @apply ax-w-80;
15
+ // }
16
+
17
+ // .ax-calendar-header {
18
+ // i {
19
+ // @apply ax-font-medium ax-text-xl;
20
+ // }
21
+ // }
22
22
 
23
23
 
24
- &.ax-state-disabled {
25
- .ax-calendar-slots {
26
- @apply ax-opacity-50 ax-cursor-default;
27
- }
28
- }
29
-
30
- .ax-calendar-header {
31
- @apply ax-flex ax-justify-between ax-py-1 ax-px-2 ax-border-b ax-border-light-300 ax-border-solid dark:ax-border-transparent;
32
- .ax-calendar-header-buttons {
33
- @apply ax-flex;
34
- }
35
- }
36
-
37
- .ax-calendar-body {
38
- @apply ax-m-2;
39
-
40
- .ax-calendar-slots {
41
- @apply ax-grid;
42
-
43
- & > div {
44
- @apply ax-text-sm ax-text-black dark:ax-text-light-200 ax-text-center ax-relative ax-flex ax-items-center ax-justify-center ax-cursor-pointer ax-m-0.5 ax-rounded;
45
-
46
- &::before {
47
- content: "";
48
- padding-top: 100%;
49
- float: left;
50
- }
51
-
52
- &::after {
53
- content: "";
54
- display: block;
55
- clear: both;
56
- }
57
-
58
- &:hover {
59
- @apply ax-bg-light-100 dark:ax-bg-white/[0.07];
60
- }
61
- &:focus {
62
- @apply ax-ring-2 ax-ring-primary-500 ax-outline-none;
63
- }
64
-
65
- &.ax-state-disabled {
66
- @apply ax-text-light-300 ax-cursor-not-allowed;
67
- &:hover {
68
- @apply ax-bg-transparent ax-text-light-300;
69
- }
70
- // &::after {
71
- // @apply ax-text-sm ax-cursor-not-allowed ax-text-danger-600;
72
- // position: absolute;
73
- // content: "\03a7";
74
- // margin: auto;
75
- // }
76
- }
77
-
78
- &.ax-state-holiday {
79
- @apply ax-text-danger-500;
80
- &:hover {
81
- @apply ax-text-black dark:ax-text-light-100;
82
- }
83
- }
84
-
85
- &.ax-state-today {
86
- @apply ax-bg-opacity-70 ax-bg-primary-100 ax-text-primary-500 dark:ax-bg-primary-500 dark:ax-text-primary-fore;
87
- &:hover {
88
- @apply ax-text-primary-500 dark:ax-text-primary-fore;
89
- }
90
- }
91
-
92
- &.ax-state-other {
93
- @apply ax-opacity-50;
94
- }
95
-
96
- &.ax-state-selected {
97
- @apply ax-bg-primary-500 ax-text-primary-fore ax-opacity-100;
98
-
99
- &:hover {
100
- @apply ax-text-primary-fore;
101
- }
102
- }
103
-
104
- &.ax-state-event {
105
- &::after {
106
- @apply ax-absolute ax-bottom-0.5 ax-rounded-full ax-h-0.5 ax-w-4 ax-bg-dark-500;
107
- content: "";
108
- }
109
-
110
- &.ax-state-event-primary {
111
- &::after {
112
- @apply ax-bg-primary-500;
113
- }
114
- }
115
-
116
- &.ax-state-event-secondary {
117
- &::after {
118
- @apply ax-bg-secondary-500;
119
- }
120
- }
121
-
122
- &.ax-state-event-success {
123
- &::after {
124
- @apply ax-bg-success-500;
125
- }
126
- }
127
-
128
- &.ax-state-event-warning {
129
- &::after {
130
- @apply ax-bg-warning-500;
131
- }
132
- }
133
-
134
- &.ax-state-event-danger {
135
- &::after {
136
- @apply ax-bg-danger-500;
137
- }
138
- }
139
-
140
- &.ax-state-event-info {
141
- &::after {
142
- @apply ax-bg-info-500;
143
- }
144
- }
145
- }
146
- }
147
-
148
- &.ax-calendar-slots-day {
149
- @apply ax-grid-cols-7;
150
- }
151
-
152
- &.ax-calendar-slots-year,
153
- &.ax-calendar-slots-month {
154
- @apply ax-grid-cols-4;
155
- }
156
- }
157
-
158
- .ax-calendar-week {
159
- @apply ax-grid ax-grid-cols-7 ax-my-2;
160
-
161
- & > div {
162
- @apply ax-text-sm ax-text-black dark:ax-text-light-200 ax-text-center ax-relative ax-flex ax-items-center ax-justify-center ax-cursor-text ax-m-0.5;
163
- }
164
- }
165
- }
166
-
167
- .ax-calendar-footer {
168
- @apply ax-flex ax-justify-center ax-p-2 ax-border-t ax-border-black/[0.12] dark:ax-border-white/[0.12];
169
- }
170
- }
171
- .ax-calendar-picker {
172
- @apply ax-flex ax-w-full;
173
- ax-picker {
174
- @apply ax-flex-1;
175
- }
176
- }
177
- .ax-overlay-pane {
178
- ax-calendar {
179
- @apply ax-border-none;
180
- }
181
- }
182
- }
24
+ // &.ax-state-disabled {
25
+ // .ax-calendar-slots {
26
+ // @apply ax-opacity-50 ax-cursor-default;
27
+ // }
28
+ // }
29
+
30
+ // .ax-calendar-header {
31
+ // @apply ax-flex ax-justify-between ax-py-1 ax-px-2 ax-border-b ax-border-neutral-300 ax-border-solid dark:ax-border-transparent;
32
+ // .ax-calendar-header-buttons {
33
+ // @apply ax-flex;
34
+ // }
35
+ // }
36
+
37
+ // .ax-calendar-body {
38
+ // @apply ax-m-2;
39
+
40
+ // .ax-calendar-slots {
41
+ // @apply ax-grid;
42
+
43
+ // & > div {
44
+ // @apply ax-text-sm ax-text-black dark:ax-text-neutral-200 ax-text-center ax-relative ax-flex ax-items-center ax-justify-center ax-cursor-pointer ax-m-0.5 ax-rounded;
45
+
46
+ // &::before {
47
+ // content: "";
48
+ // padding-top: 100%;
49
+ // float: left;
50
+ // }
51
+
52
+ // &::after {
53
+ // content: "";
54
+ // display: block;
55
+ // clear: both;
56
+ // }
57
+
58
+ // &:hover {
59
+ // @apply ax-bg-neutral-100 dark:ax-bg-white/[0.07];
60
+ // }
61
+ // &:focus {
62
+ // @apply ax-ring-2 ax-ring-primary-500 ax-outline-none;
63
+ // }
64
+
65
+ // &.ax-state-disabled {
66
+ // @apply ax-text-neutral-300 ax-cursor-not-allowed;
67
+ // &:hover {
68
+ // @apply ax-bg-transparent ax-text-neutral-300;
69
+ // }
70
+ // // &::after {
71
+ // // @apply ax-text-sm ax-cursor-not-allowed ax-text-danger-600;
72
+ // // position: absolute;
73
+ // // content: "\03a7";
74
+ // // margin: auto;
75
+ // // }
76
+ // }
77
+
78
+ // &.ax-state-holiday {
79
+ // @apply ax-text-danger-500;
80
+ // &:hover {
81
+ // @apply ax-text-black dark:ax-text-neutral-100;
82
+ // }
83
+ // }
84
+
85
+ // &.ax-state-today {
86
+ // @apply ax-bg-opacity-70 ax-bg-primary-100 ax-text-primary-500 dark:ax-bg-primary-500 dark:ax-text-primary-fore;
87
+ // &:hover {
88
+ // @apply ax-text-primary-500 dark:ax-text-primary-fore;
89
+ // }
90
+ // }
91
+
92
+ // &.ax-state-other {
93
+ // @apply ax-opacity-50;
94
+ // }
95
+
96
+ // &.ax-state-selected {
97
+ // @apply ax-bg-primary-500 ax-text-primary-fore ax-opacity-100;
98
+
99
+ // &:hover {
100
+ // @apply ax-text-primary-fore;
101
+ // }
102
+ // }
103
+
104
+ // &.ax-state-event {
105
+ // &::after {
106
+ // @apply ax-absolute ax-bottom-0.5 ax-rounded-full ax-h-0.5 ax-w-4 ax-bg-neutral-500;
107
+ // content: "";
108
+ // }
109
+
110
+ // &.ax-state-event-primary {
111
+ // &::after {
112
+ // @apply ax-bg-primary-500;
113
+ // }
114
+ // }
115
+
116
+ // &.ax-state-event-secondary {
117
+ // &::after {
118
+ // @apply ax-bg-secondary-500;
119
+ // }
120
+ // }
121
+
122
+ // &.ax-state-event-success {
123
+ // &::after {
124
+ // @apply ax-bg-success-500;
125
+ // }
126
+ // }
127
+
128
+ // &.ax-state-event-warning {
129
+ // &::after {
130
+ // @apply ax-bg-warning-500;
131
+ // }
132
+ // }
133
+
134
+ // &.ax-state-event-danger {
135
+ // &::after {
136
+ // @apply ax-bg-danger-500;
137
+ // }
138
+ // }
139
+
140
+ // &.ax-state-event-info {
141
+ // &::after {
142
+ // @apply ax-bg-primary-500;
143
+ // }
144
+ // }
145
+ // }
146
+ // }
147
+
148
+ // &.ax-calendar-slots-day {
149
+ // @apply ax-grid-cols-7;
150
+ // }
151
+
152
+ // &.ax-calendar-slots-year,
153
+ // &.ax-calendar-slots-month {
154
+ // @apply ax-grid-cols-4;
155
+ // }
156
+ // }
157
+
158
+ // .ax-calendar-week {
159
+ // @apply ax-grid ax-grid-cols-7 ax-my-2;
160
+
161
+ // & > div {
162
+ // @apply ax-text-sm ax-text-black dark:ax-text-neutral-200 ax-text-center ax-relative ax-flex ax-items-center ax-justify-center ax-cursor-text ax-m-0.5;
163
+ // }
164
+ // }
165
+ // }
166
+
167
+ // .ax-calendar-footer {
168
+ // @apply ax-flex ax-justify-center ax-p-2 ax-border-t ax-border-black/[0.12] dark:ax-border-white/[0.12];
169
+ // }
170
+ // }
171
+ // .ax-calendar-picker {
172
+ // @apply ax-flex ax-w-full;
173
+ // ax-picker {
174
+ // @apply ax-flex-1;
175
+ // }
176
+ // }
177
+ // .ax-overlay-pane {
178
+ // ax-calendar {
179
+ // @apply ax-border-none;
180
+ // }
181
+ // }
182
+ // }
@@ -1,44 +1,44 @@
1
- @layer components {
2
- .ax-carousel {
3
- @apply ax-text-center ax-overflow-hidden ax-w-full ax-block ax-relative;
4
- .ax-carousel-arrows {
5
- @apply ax-flex ax-absolute ax-justify-between ax-justify-items-center ax-cursor-pointer ax-bg-transparent ax-text-white ax-invisible ax-left-0 ax-right-0 ax-top-0 ax-bottom-0;
6
- button {
7
- @apply ax-border-none ax-cursor-pointer ax-bg-transparent ax-text-white ax-visible;
8
- .ax-ic {
9
- @apply ax-text-4xl;
10
- text-shadow: 0px 0px 2px #000000;
11
- }
12
- }
13
- .ax-vertical-arrow {
14
- @apply ax-absolute ax-left-1/2 ax-block;
15
- transform: translate(-50%, -50%);
16
- &.ax-top-arrow {
17
- @apply ax-top-5;
18
- .ax-ic {
19
- @apply ax-block ax-rotate-90;
20
- }
21
- }
22
- &.ax-bottom-arrow {
23
- @apply -ax-bottom-5;
24
- transform: translate(-50%, -50%);
25
- .ax-ic {
26
- @apply ax-block -ax-rotate-90;
27
- }
28
- }
29
- }
30
- }
31
- .ax-carousel-pager {
32
- @apply ax-flex ax-my-3 ax-justify-center;
33
- button {
34
- @apply ax-p-1 ax-mx-1 ax-cursor-pointer ax-border-none ax-rounded-full ax-bg-light-300;
35
- &:hover {
36
- @apply ax-bg-primary-500;
37
- }
38
- &.ax-state-active {
39
- @apply ax-bg-primary-500;
40
- }
41
- }
42
- }
43
- }
44
- }
1
+ // @layer components {
2
+ // .ax-carousel {
3
+ // @apply ax-text-center ax-overflow-hidden ax-w-full ax-block ax-relative;
4
+ // .ax-carousel-arrows {
5
+ // @apply ax-flex ax-absolute ax-justify-between ax-justify-items-center ax-cursor-pointer ax-bg-transparent ax-text-white ax-invisible ax-left-0 ax-right-0 ax-top-0 ax-bottom-0;
6
+ // button {
7
+ // @apply ax-border-none ax-cursor-pointer ax-bg-transparent ax-text-white ax-visible;
8
+ // .ax-icon{
9
+ // @apply ax-text-4xl;
10
+ // text-shadow: 0px 0px 2px #000000;
11
+ // }
12
+ // }
13
+ // .ax-vertical-arrow {
14
+ // @apply ax-absolute ax-left-1/2 ax-block;
15
+ // transform: translate(-50%, -50%);
16
+ // &.ax-top-arrow {
17
+ // @apply ax-top-5;
18
+ // .ax-icon{
19
+ // @apply ax-block ax-rotate-90;
20
+ // }
21
+ // }
22
+ // &.ax-bottom-arrow {
23
+ // @apply -ax-bottom-5;
24
+ // transform: translate(-50%, -50%);
25
+ // .ax-icon{
26
+ // @apply ax-block -ax-rotate-90;
27
+ // }
28
+ // }
29
+ // }
30
+ // }
31
+ // .ax-carousel-pager {
32
+ // @apply ax-flex ax-my-3 ax-justify-center;
33
+ // button {
34
+ // @apply ax-p-1 ax-mx-1 ax-cursor-pointer ax-border-none ax-rounded-full ax-bg-neutral-300;
35
+ // &:hover {
36
+ // @apply ax-bg-primary-500;
37
+ // }
38
+ // &.ax-state-active {
39
+ // @apply ax-bg-primary-500;
40
+ // }
41
+ // }
42
+ // }
43
+ // }
44
+ // }
@@ -1,58 +1,58 @@
1
- @layer components {
2
- .ax-check-box {
3
- .ax-state-error {
4
- @apply ax-text-danger-500;
5
-
6
- input[type="checkbox"] {
7
- @apply ax-border-danger-500;
8
- }
9
- }
10
- .ax-state-success {
11
- @apply ax-text-success-600;
12
-
13
- input[type="checkbox"] {
14
- @apply ax-border-success-600;
15
- }
16
- }
17
-
18
- .ax-wrapper {
19
- &.ax-state-disabled {
20
- @apply ax-cursor-not-allowed ax-opacity-80;
21
-
22
- input[type="checkbox"] {
23
- @apply ax-cursor-not-allowed;
24
- }
25
- }
26
- }
27
-
28
- input[type="checkbox"] {
29
- @apply ax-w-4 ax-h-4 ax-border-solid ax-border ax-border-light-300 ax-rounded ax-bg-white ax-text-primary-500 ax-m-0 ax-outline-none ax-align-middle ax-appearance-none;
30
- @include control-states("editor");
31
-
32
- &:checked,
33
- &:indeterminate {
34
- @apply ax-border-primary-500 ax-bg-no-repeat ax-bg-primary-500 ax-bg-contain #{!important};
35
- }
36
-
37
- &:checked {
38
- background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
39
- }
40
-
41
- &:indeterminate {
42
- background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9PC9zdHlsZT48L2RlZnM+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzIiB5PSI3IiB3aWR0aD0iMTAiIGhlaWdodD0iMiIvPjwvc3ZnPg==");
43
- }
44
-
45
- &:focus {
46
- @apply ax-ring-2 ax-ring-primary-500 ax-ring-offset-2;
47
- }
48
-
49
- &.ax-state-disabled {
50
- @apply ax-opacity-70;
51
- }
52
-
53
- &.ax-state-disabled {
54
- @apply ax-opacity-60;
55
- }
56
- }
57
- }
58
- }
1
+ // @layer components {
2
+ // .ax-check-box {
3
+ // .ax-state-error {
4
+ // @apply ax-text-danger-500;
5
+
6
+ // input[type="checkbox"] {
7
+ // @apply ax-border-danger-500;
8
+ // }
9
+ // }
10
+ // .ax-state-success {
11
+ // @apply ax-text-success-600;
12
+
13
+ // input[type="checkbox"] {
14
+ // @apply ax-border-success-600;
15
+ // }
16
+ // }
17
+
18
+ // .ax-wrapper {
19
+ // &.ax-state-disabled {
20
+ // @apply ax-cursor-not-allowed ax-opacity-80;
21
+
22
+ // input[type="checkbox"] {
23
+ // @apply ax-cursor-not-allowed;
24
+ // }
25
+ // }
26
+ // }
27
+
28
+ // input[type="checkbox"] {
29
+ // @apply ax-w-4 ax-h-4 ax-border-solid ax-border ax-border-neutral-300 ax-rounded ax-bg-white ax-text-primary-500 ax-m-0 ax-outline-none ax-align-middle ax-appearance-none;
30
+ // @include control-states("editor");
31
+
32
+ // &:checked,
33
+ // &:indeterminate {
34
+ // @apply ax-border-primary-500 ax-bg-no-repeat ax-bg-primary-500 ax-bg-contain #{!important};
35
+ // }
36
+
37
+ // &:checked {
38
+ // background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
39
+ // }
40
+
41
+ // &:indeterminate {
42
+ // background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9PC9zdHlsZT48L2RlZnM+PHJlY3QgY2xhc3M9ImNscy0xIiB4PSIzIiB5PSI3IiB3aWR0aD0iMTAiIGhlaWdodD0iMiIvPjwvc3ZnPg==");
43
+ // }
44
+
45
+ // &:focus {
46
+ // @apply ax-ring-2 ax-ring-primary-500 ax-ring-offset-2;
47
+ // }
48
+
49
+ // &.ax-state-disabled {
50
+ // @apply ax-opacity-70;
51
+ // }
52
+
53
+ // &.ax-state-disabled {
54
+ // @apply ax-opacity-60;
55
+ // }
56
+ // }
57
+ // }
58
+ // }