@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.
- package/index.scss +3 -1
- package/package.json +1 -1
- package/src/base/index.scss +44 -30
- package/src/components/_avatar.scss +122 -122
- package/src/components/_badge.scss +178 -178
- package/src/components/_breadcrumbs.scss +30 -29
- package/src/components/_button copy.scss +924 -0
- package/src/components/_button.scss +0 -924
- package/src/components/_calendar.scss +180 -180
- package/src/components/_carousel.scss +44 -44
- package/src/components/_checkbox.scss +58 -58
- package/src/components/_collapse.scss +48 -48
- package/src/components/_color-palette.scss +5 -5
- package/src/components/_color-picker.scss +23 -23
- package/src/components/_context-menu.scss +0 -16
- package/src/components/_data-table.scss +1 -1
- package/src/components/_datepicker.scss +5 -5
- package/src/components/_decoration.scss +0 -39
- package/src/components/_dialog.scss +80 -79
- package/src/components/_drawer.scss +112 -112
- package/src/components/_dropdown.scss +162 -216
- package/src/components/_editor-container.scss +0 -155
- package/src/components/_fieldset.scss +1 -6
- package/src/components/_image.scss +1 -1
- package/src/components/_label.scss +1 -1
- package/src/components/_list.scss +0 -83
- package/src/components/_loading.scss +1 -50
- package/src/components/_menu copy.scss +5 -5
- package/src/components/_menu.scss +114 -114
- package/src/components/_popup.scss +92 -91
- package/src/components/_progress.scss +59 -59
- package/src/components/_radio.scss +30 -30
- package/src/components/_range-slider.scss +147 -125
- package/src/components/_result.scss +2 -2
- package/src/components/_selectbox.scss +15 -17
- package/src/components/_selection-list.scss +2 -2
- package/src/components/_skeleton.scss +2 -2
- package/src/components/_switch.scss +0 -186
- package/src/components/_table.scss +0 -81
- package/src/components/_tabs copy.scss +18 -18
- package/src/components/_tabs.scss +235 -235
- package/src/components/_textarea.scss +27 -31
- package/src/components/_toast.scss +1 -1
- package/src/components/_treeview.scss +0 -54
- package/src/components/_uploader.scss +0 -18
- package/src/components/index.scss +1 -47
- package/src/icons/demo.html +892 -738
- package/src/icons/fonts/acorex-icons.eot +0 -0
- package/src/icons/fonts/acorex-icons.svg +71 -0
- package/src/icons/fonts/acorex-icons.ttf +0 -0
- package/src/icons/fonts/acorex-icons.woff +0 -0
- package/src/icons/selection.json +1 -1
- package/src/icons/style.css +210 -177
- package/src/icons/style.scss +335 -280
- package/src/icons/variables.scss +65 -54
- package/src/mixins/_media.scss +27 -0
- package/src/mixins/index.scss +1 -0
- package/src/shared/_check-box.scss +45 -0
- package/src/shared/_decoration.scss +56 -0
- package/src/shared/_drop-down.scss +163 -0
- package/src/shared/_editor-container.scss +130 -0
- package/src/shared/_general-button.scss +42 -0
- package/src/shared/_icon-control.scss +0 -0
- package/src/shared/_inputs.scss +12 -0
- package/src/shared/_list.scss +134 -0
- package/src/shared/_radio.scss +37 -0
- package/src/shared/_skeleton.scss +26 -0
- package/src/shared/_table.scss +116 -0
- package/src/shared/_utils.scss +46 -0
- package/src/shared/index.scss +12 -0
- package/src/utility/_mixins.scss +3 -3
- package/src/utility/index.scss +16 -22
- package/src/variables/_colors.scss +76 -107
- package/src/variables/_degrees.scss +1 -0
- package/src/variables/index.scss +2 -0
- package/{index.js → tailwind.config.js} +14 -63
- package/src/components/_alert.scss +0 -276
- package/src/icons/fonts/acorex-icon.eot +0 -0
- package/src/icons/fonts/acorex-icon.svg +0 -60
- package/src/icons/fonts/acorex-icon.ttf +0 -0
- package/src/icons/fonts/acorex-icon.woff +0 -0
@@ -1,113 +1,113 @@
|
|
1
|
-
@layer components {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
1
|
+
// @layer components {
|
2
|
+
// .ax-drawer-container {
|
3
|
+
// @apply ax-flex ax-relative ax-w-full ax-h-full ax-overflow-hidden;
|
4
|
+
|
5
|
+
// &.ax-fixed {
|
6
|
+
// @apply ax-hidden ax-top-0 ax-right-0 ax-left-0 ax-bottom-0 ax-z-[1000];
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
}
|
8
|
+
// &.ax-visible {
|
9
|
+
// @apply ax-flex;
|
10
|
+
// }
|
11
|
+
// }
|
12
|
+
|
13
|
+
// .ax-backdrop {
|
14
|
+
// @apply ax-bg-black/30 ax-absolute ax-w-full ax-h-full ax-z-[1] ax-top-0 ax-bottom-0 ax-transition-all;
|
15
|
+
// }
|
16
|
+
|
17
|
+
// ax-drawer {
|
18
|
+
// @apply ax-flex ax-flex-col ax-max-w-[95%] ax-h-full ax-animate-duration-300 ax-transition-all #{!important};
|
19
|
+
// .ax-header,
|
20
|
+
// .ax-footer {
|
21
|
+
// @apply ax-p-3 ax-border-neutral-300 dark:ax-border-neutral-700 ;
|
22
|
+
// }
|
23
|
+
// .ax-footer
|
24
|
+
// {
|
25
|
+
// @apply ax-border-t;
|
26
|
+
// }
|
27
|
+
// .ax-header
|
28
|
+
// {
|
29
|
+
// @apply ax-border-b;
|
30
|
+
// }
|
31
|
+
// &.ax-preload {
|
32
|
+
// @apply ax-animate-duration-[0ms] ax-transition-none #{!important};
|
33
|
+
// }
|
34
|
+
|
35
|
+
|
36
|
+
// &>.ax-content
|
37
|
+
// {
|
38
|
+
// @apply ax-overflow-auto ax-bg-white ax-flex-1 ax-h-full ax-text-neutral-500;
|
39
|
+
// @include control-states("surface");
|
40
|
+
|
41
|
+
// }
|
42
|
+
|
43
|
+
// &.ax-drawer-overlay {
|
44
|
+
// @apply ax-absolute;
|
45
|
+
|
46
|
+
// &.ax-expanded {
|
47
|
+
// @apply ax-z-[2];
|
48
|
+
// }
|
49
|
+
|
50
|
+
// &.ax-collapsed {
|
51
|
+
// @apply ax-z-[0];
|
52
|
+
// }
|
53
|
+
|
54
|
+
// &.ax-drawer-start {
|
55
|
+
|
56
|
+
// &.ax-expanded {
|
57
|
+
// @apply ax-start-0;
|
58
|
+
// }
|
59
|
+
|
60
|
+
// &.ax-collapsed {
|
61
|
+
// inset-inline-start: calc(-1 * var(--ax-el-width));
|
62
|
+
// }
|
63
|
+
|
64
|
+
// }
|
65
|
+
|
66
|
+
// &.ax-drawer-end {
|
67
|
+
|
68
|
+
// &.ax-expanded {
|
69
|
+
// @apply ax-end-0;
|
70
|
+
// }
|
71
|
+
|
72
|
+
// &.ax-collapsed {
|
73
|
+
// inset-inline-end: calc(-1 * var(--ax-el-width));
|
74
|
+
// }
|
75
|
+
// }
|
76
|
+
// }
|
77
|
+
|
78
|
+
// &.ax-drawer-push {
|
79
|
+
// @apply ax-flex-initial;
|
80
|
+
|
81
|
+
// &.ax-drawer-start {
|
82
|
+
// @apply ax-order-first;
|
83
|
+
|
84
|
+
// &.ax-expanded {
|
85
|
+
// margin-inline-start: 0%
|
86
|
+
// }
|
87
|
+
|
88
|
+
// &.ax-collapsed {
|
89
|
+
// margin-inline-start: calc(-1 * var(--ax-el-width));
|
90
|
+
// }
|
91
|
+
|
92
|
+
// }
|
93
|
+
|
94
|
+
// &.ax-drawer-end {
|
95
|
+
// @apply ax-order-last;
|
96
|
+
|
97
|
+
// &.ax-expanded {
|
98
|
+
// margin-inline-end: 0%;
|
99
|
+
// }
|
100
|
+
|
101
|
+
// &.ax-collapsed {
|
102
|
+
// margin-inline-end: calc(-1 * var(--ax-el-width));
|
103
|
+
// }
|
104
|
+
// }
|
105
|
+
// }
|
106
|
+
|
107
|
+
// }
|
108
|
+
|
109
|
+
// &>.ax-content {
|
110
|
+
// @apply ax-flex-1 ax-h-full ax-overflow-auto;
|
111
|
+
// }
|
112
|
+
// }
|
113
|
+
// }
|
@@ -1,216 +1,162 @@
|
|
1
|
-
@layer components {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
&.ax-info-default {
|
164
|
-
@apply ax-bg-transparent ax-text-info-500 ax-border-transparent;
|
165
|
-
|
166
|
-
&:hover,
|
167
|
-
&:focus {
|
168
|
-
@apply ax-bg-info-50 ax-text-info-600 dark:ax-bg-info-500 dark:ax-text-info-100;
|
169
|
-
}
|
170
|
-
|
171
|
-
&:active {
|
172
|
-
@apply ax-bg-info-100 ax-text-info-700 dark:ax-bg-info-600 dark:ax-text-info-100;
|
173
|
-
}
|
174
|
-
|
175
|
-
&.ax-state-selected {
|
176
|
-
@apply ax-bg-info-200 dark:ax-bg-info-600 dark:ax-text-info-100;
|
177
|
-
}
|
178
|
-
}
|
179
|
-
|
180
|
-
&.ax-dark-default {
|
181
|
-
@apply ax-bg-transparent ax-text-dark-500 ax-border-transparent dark:ax-text-dark-100;
|
182
|
-
|
183
|
-
&:hover,
|
184
|
-
&:focus {
|
185
|
-
@apply ax-bg-dark-50 ax-text-dark-600 dark:ax-bg-dark-400 dark:ax-text-dark-50;
|
186
|
-
}
|
187
|
-
|
188
|
-
&:active {
|
189
|
-
@apply ax-bg-dark-100 ax-text-dark-700 dark:ax-text-dark-100;
|
190
|
-
}
|
191
|
-
|
192
|
-
&.ax-state-selected {
|
193
|
-
@apply ax-bg-dark-200 dark:ax-bg-dark-400 dark:ax-text-dark-100;
|
194
|
-
}
|
195
|
-
}
|
196
|
-
|
197
|
-
&.ax-light-default {
|
198
|
-
@apply ax-bg-transparent ax-text-light-700 ax-border-transparent dark:ax-text-light-200;
|
199
|
-
|
200
|
-
&:hover,
|
201
|
-
&:focus {
|
202
|
-
@apply ax-bg-light-100 ax-text-light-600 dark:ax-bg-light-500 dark:ax-text-light-100;
|
203
|
-
}
|
204
|
-
|
205
|
-
&:active {
|
206
|
-
@apply ax-bg-light-200 ax-text-light-700 dark:ax-bg-light-600 dark:ax-text-light-100;
|
207
|
-
}
|
208
|
-
|
209
|
-
&.ax-state-selected {
|
210
|
-
@apply ax-bg-light-200 dark:ax-bg-light-600 dark:ax-text-light-100;
|
211
|
-
}
|
212
|
-
}
|
213
|
-
}
|
214
|
-
}
|
215
|
-
}
|
216
|
-
}
|
1
|
+
// @layer components {
|
2
|
+
// ax-drop-down,
|
3
|
+
// .ax-drop-down {
|
4
|
+
// @apply ax-contents;
|
5
|
+
// .ax-dropdown-content {
|
6
|
+
// @apply ax-flex ax-flex-auto ax-text-sm ax-overflow-y-hidden ax-overscroll-x-auto ax-items-center;
|
7
|
+
// &.ax-state-disabled {
|
8
|
+
// @include control-states("editor-disabled");
|
9
|
+
// }
|
10
|
+
// }
|
11
|
+
// }
|
12
|
+
|
13
|
+
// .ax-overlay-pane {
|
14
|
+
// @apply ax-bg-white ax-border ax-rounded ax-border-neutral-200 ax-shadow-lg;
|
15
|
+
// @include control-states("surface");
|
16
|
+
// .ax-header,
|
17
|
+
// .ax-footer {
|
18
|
+
// @apply ax-bg-white ax-p-3 ax-border-neutral-300 dark:ax-border-neutral-700;
|
19
|
+
// @include control-states("editor");
|
20
|
+
// }
|
21
|
+
// .ax-footer {
|
22
|
+
// @apply ax-border-t;
|
23
|
+
// }
|
24
|
+
// .ax-header {
|
25
|
+
// @apply ax-border-b;
|
26
|
+
// }
|
27
|
+
// @include screen(mobile) {
|
28
|
+
// @apply ax-rounded-b-none;
|
29
|
+
// }
|
30
|
+
|
31
|
+
// &.ax-overlay-center {
|
32
|
+
// @apply ax-h-fit;
|
33
|
+
// max-height: 90vh;
|
34
|
+
// width: 80vw;
|
35
|
+
// }
|
36
|
+
|
37
|
+
// &.ax-overlay-actionsheet {
|
38
|
+
// @apply ax-w-full ax-h-auto ax-bg-white;
|
39
|
+
// @include control-states("surface");
|
40
|
+
// max-height: 85vh;
|
41
|
+
// &.ax-full {
|
42
|
+
// max-height: 95vh;
|
43
|
+
// height: 95vh;
|
44
|
+
// }
|
45
|
+
// }
|
46
|
+
|
47
|
+
// &.ax-overlay-full {
|
48
|
+
// @apply ax-w-screen ax-h-screen;
|
49
|
+
// }
|
50
|
+
|
51
|
+
// &.ax-dropdown-list {
|
52
|
+
// @apply ax-border ax-border-solid ax-flex ax-flex-col ax-py-1 ax-rounded ax-shadow-sm;
|
53
|
+
|
54
|
+
// .ax-button-item {
|
55
|
+
// height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
56
|
+
// line-height: calc((var(--ax-base-size) * var(--ax-base-ratio)) / 2) !important;
|
57
|
+
// @apply ax-relative ax-inline-flex ax-items-center ax-justify-start ax-px-4 ax-py-2 ax-text-sm ax-text-neutral-600 ax-cursor-pointer ax-select-none;
|
58
|
+
|
59
|
+
// &.ax-divide {
|
60
|
+
// @apply ax-border-t ax-border ax-border-solid;
|
61
|
+
// }
|
62
|
+
|
63
|
+
// &.ax-state-disabled {
|
64
|
+
// @apply ax-cursor-not-allowed ax-opacity-60;
|
65
|
+
// }
|
66
|
+
|
67
|
+
// .ax-prefix {
|
68
|
+
// @apply ax-flex ax-flex-row ax-pe-2;
|
69
|
+
// }
|
70
|
+
|
71
|
+
// .ax-suffix {
|
72
|
+
// @apply ax-flex ax-flex-row ax-ps-2;
|
73
|
+
// }
|
74
|
+
|
75
|
+
// &.ax-primary-default {
|
76
|
+
// @apply ax-bg-transparent ax-text-primary-500 ax-border-transparent;
|
77
|
+
|
78
|
+
// &:hover,
|
79
|
+
// &:focus {
|
80
|
+
// @apply ax-bg-primary-50 ax-text-primary-600 dark:ax-bg-primary-500 dark:ax-text-primary-100;
|
81
|
+
// }
|
82
|
+
|
83
|
+
// &:active {
|
84
|
+
// @apply ax-bg-primary-100 ax-text-primary-700 dark:ax-bg-primary-600 dark:ax-text-primary-100;
|
85
|
+
// }
|
86
|
+
|
87
|
+
// &.ax-state-selected {
|
88
|
+
// @apply ax-bg-primary-200 dark:ax-bg-primary-600 dark:ax-text-primary-100;
|
89
|
+
// }
|
90
|
+
// }
|
91
|
+
|
92
|
+
// &.ax-secondary-default {
|
93
|
+
// @apply ax-bg-transparent ax-text-secondary-500 ax-border-transparent;
|
94
|
+
|
95
|
+
// &:hover,
|
96
|
+
// &:focus {
|
97
|
+
// @apply ax-bg-secondary-50 ax-text-secondary-600 dark:ax-bg-secondary-500 dark:ax-text-secondary-100;
|
98
|
+
// }
|
99
|
+
|
100
|
+
// &:active {
|
101
|
+
// @apply ax-bg-secondary-100 ax-text-secondary-700 dark:ax-bg-secondary-600 dark:ax-text-secondary-100;
|
102
|
+
// }
|
103
|
+
|
104
|
+
// &.ax-state-selected {
|
105
|
+
// @apply ax-bg-secondary-200 dark:ax-bg-secondary-600 dark:ax-text-secondary-100;
|
106
|
+
// }
|
107
|
+
// }
|
108
|
+
|
109
|
+
// &.ax-warning-default {
|
110
|
+
// @apply ax-bg-transparent ax-text-warning-500 ax-border-transparent;
|
111
|
+
|
112
|
+
// &:hover,
|
113
|
+
// &:focus {
|
114
|
+
// @apply ax-bg-warning-50 ax-text-warning-600 dark:ax-bg-warning-500 dark:ax-text-warning-100;
|
115
|
+
// }
|
116
|
+
|
117
|
+
// &:active {
|
118
|
+
// @apply ax-bg-warning-100 ax-text-warning-700 dark:ax-bg-warning-600 dark:ax-text-warning-100;
|
119
|
+
// }
|
120
|
+
|
121
|
+
// &.ax-state-selected {
|
122
|
+
// @apply ax-bg-warning-200 dark:ax-bg-warning-600 dark:ax-text-warning-100;
|
123
|
+
// }
|
124
|
+
// }
|
125
|
+
|
126
|
+
// &.ax-danger-default {
|
127
|
+
// @apply ax-bg-transparent ax-text-danger-500 ax-border-transparent;
|
128
|
+
|
129
|
+
// &:hover,
|
130
|
+
// &:focus {
|
131
|
+
// @apply ax-bg-danger-50 ax-text-danger-600 dark:ax-bg-danger-500 dark:ax-text-danger-100;
|
132
|
+
// }
|
133
|
+
|
134
|
+
// &:active {
|
135
|
+
// @apply ax-bg-danger-100 ax-text-danger-700 dark:ax-bg-danger-600 dark:ax-text-danger-100;
|
136
|
+
// }
|
137
|
+
|
138
|
+
// &.ax-state-selected {
|
139
|
+
// @apply ax-bg-danger-200 dark:ax-bg-danger-600 dark:ax-text-danger-100;
|
140
|
+
// }
|
141
|
+
// }
|
142
|
+
|
143
|
+
// &.ax-success-default {
|
144
|
+
// @apply ax-bg-transparent ax-text-success-500 ax-border-transparent;
|
145
|
+
|
146
|
+
// &:hover,
|
147
|
+
// &:focus {
|
148
|
+
// @apply ax-bg-success-50 ax-text-success-600 dark:ax-bg-success-500 dark:ax-text-success-100;
|
149
|
+
// }
|
150
|
+
|
151
|
+
// &:active {
|
152
|
+
// @apply ax-bg-success-100 ax-text-success-700 dark:ax-bg-success-600 dark:ax-text-success-100;
|
153
|
+
// }
|
154
|
+
|
155
|
+
// &.ax-state-selected {
|
156
|
+
// @apply ax-bg-success-200 dark:ax-bg-success-600 dark:ax-text-success-100;
|
157
|
+
// }
|
158
|
+
// }
|
159
|
+
// }
|
160
|
+
// }
|
161
|
+
// }
|
162
|
+
// }
|