@acorex/styles 7.0.5 → 7.0.7
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 +0 -1
- package/package.json +1 -1
- package/src/shared/_utils.scss +0 -1
- package/src/utility/_mixins.scss +0 -67
- package/src/components/_action-sheet.scss +0 -24
- package/src/components/_avatar.scss +0 -124
- package/src/components/_badge.scss +0 -184
- package/src/components/_breadcrumbs.scss +0 -30
- package/src/components/_button copy.scss +0 -924
- package/src/components/_button.scss +0 -0
- package/src/components/_calendar.scss +0 -182
- package/src/components/_carousel.scss +0 -44
- package/src/components/_checkbox.scss +0 -58
- package/src/components/_collapse.scss +0 -51
- package/src/components/_color-palette.scss +0 -126
- package/src/components/_color-picker.scss +0 -28
- package/src/components/_context-menu.scss +0 -3
- package/src/components/_data-table.scss +0 -41
- package/src/components/_datapager.scss +0 -49
- package/src/components/_datepicker.scss +0 -5
- package/src/components/_decoration.scss +0 -0
- package/src/components/_dialog.scss +0 -83
- package/src/components/_drawer.scss +0 -113
- package/src/components/_dropdown.scss +0 -162
- package/src/components/_editor-container.scss +0 -0
- package/src/components/_fieldset.scss +0 -3
- package/src/components/_form.scss +0 -8
- package/src/components/_image.scss +0 -24
- package/src/components/_input.scss +0 -14
- package/src/components/_label.scss +0 -7
- package/src/components/_list.scss +0 -0
- package/src/components/_loading.scss +0 -3
- package/src/components/_menu copy.scss +0 -96
- package/src/components/_menu.scss +0 -117
- package/src/components/_numberbox.scss +0 -15
- package/src/components/_popup.scss +0 -106
- package/src/components/_progress.scss +0 -60
- package/src/components/_radio.scss +0 -32
- package/src/components/_range-slider.scss +0 -232
- package/src/components/_rating.scss +0 -14
- package/src/components/_result.scss +0 -24
- package/src/components/_selectbox.scss +0 -16
- package/src/components/_selection-list.scss +0 -54
- package/src/components/_skeleton.scss +0 -22
- package/src/components/_switch.scss +0 -0
- package/src/components/_table.scss +0 -0
- package/src/components/_tabs copy.scss +0 -235
- package/src/components/_tabs.scss +0 -235
- package/src/components/_textarea.scss +0 -31
- package/src/components/_toast.scss +0 -8
- package/src/components/_tooltip.scss +0 -44
- package/src/components/_treeview.scss +0 -0
- package/src/components/_uploader.scss +0 -0
- package/src/components/index.scss +0 -1
@@ -1,235 +0,0 @@
|
|
1
|
-
@layer components {
|
2
|
-
.ax-tabs {
|
3
|
-
@apply ax-p-0 ax-overflow-y-hidden ax-overflow-x-auto ax-w-max ax-block;
|
4
|
-
|
5
|
-
.ax-items-wrapper {
|
6
|
-
@apply ax-flex;
|
7
|
-
}
|
8
|
-
|
9
|
-
&:not(.ax-look-custom) {
|
10
|
-
ax-tab-item {
|
11
|
-
@apply ax-text-center ax-px-5 ax-cursor-pointer ax-whitespace-nowrap ax-flex ax-items-center ax-justify-center ax-relative ax-text-sm ax-font-medium;
|
12
|
-
min-height: calc(var(--ax-base-size) * var(--ax-base-ratio));
|
13
|
-
line-height: calc((var(--ax-base-size) * var(--ax-base-ratio)) / 2);
|
14
|
-
|
15
|
-
&.ax-state-disabled {
|
16
|
-
// background-color: rgb(var(--ax-color-disabled)) !important;
|
17
|
-
// color: rgb(var(--ax-color-disabled-fore)) !important;
|
18
|
-
@apply ax-opacity-50 ax-cursor-not-allowed #{!important};
|
19
|
-
}
|
20
|
-
|
21
|
-
&.ax-state-active {
|
22
|
-
@apply ax-text-black;
|
23
|
-
}
|
24
|
-
|
25
|
-
.ax-prefix {
|
26
|
-
@apply ax-flex ax-flex-row ax-pe-2;
|
27
|
-
}
|
28
|
-
|
29
|
-
.ax-suffix {
|
30
|
-
@apply ax-flex ax-flex-row ax-ps-2;
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
34
|
-
|
35
|
-
&.ax-tabs-fit {
|
36
|
-
.ax-items-wrapper ax-tab-item {
|
37
|
-
@apply ax-flex-1;
|
38
|
-
}
|
39
|
-
}
|
40
|
-
|
41
|
-
& > .ax-tab-controll {
|
42
|
-
@apply ax-flex ax-items-center ax-justify-center ax-px-1 ax-cursor-pointer;
|
43
|
-
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
|
44
|
-
0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
45
|
-
}
|
46
|
-
|
47
|
-
&.ax-horizontal {
|
48
|
-
&.ax-look-default {
|
49
|
-
@apply ax-border ax-border-solid ax-border-neutral-300 ax-shadow-sm ax-overflow-hidden ax-rounded-default;
|
50
|
-
@include control-states("editor");
|
51
|
-
|
52
|
-
ax-tab-item {
|
53
|
-
@apply ax-bg-white ax-border-e ax-border-b-2 ax-border-solid ax-border-neutral-300 dark:ax-text-neutral-200;
|
54
|
-
@include control-states("editor");
|
55
|
-
|
56
|
-
border-bottom-color: transparent !important;
|
57
|
-
|
58
|
-
&:first-child {
|
59
|
-
}
|
60
|
-
|
61
|
-
&:last-child {
|
62
|
-
@apply ax-border-e-0;
|
63
|
-
}
|
64
|
-
|
65
|
-
&:hover,
|
66
|
-
&.ax-state-active {
|
67
|
-
&:not(.ax-state-disabled) {
|
68
|
-
border-bottom-color: rgb(var(--ax-color-primary-500)) !important;
|
69
|
-
}
|
70
|
-
}
|
71
|
-
}
|
72
|
-
}
|
73
|
-
|
74
|
-
&.ax-look-start-line {
|
75
|
-
@apply ax-border-t ax-border-solid ax-border-neutral-300 dark:ax-border-neutral-200/10 ax-w-full;
|
76
|
-
ax-tab-item {
|
77
|
-
&.ax-state-active {
|
78
|
-
@apply ax-text-primary-500;
|
79
|
-
&::after {
|
80
|
-
@apply ax-absolute ax-top-0 ax-w-full ax-h-0.5 ax-bg-primary-500 ax-block;
|
81
|
-
content: "";
|
82
|
-
}
|
83
|
-
}
|
84
|
-
&:hover {
|
85
|
-
&::after {
|
86
|
-
@apply ax-absolute ax-top-0 ax-w-full ax-h-0.5 ax-bg-primary-500 ax-block;
|
87
|
-
content: "";
|
88
|
-
}
|
89
|
-
}
|
90
|
-
}
|
91
|
-
}
|
92
|
-
|
93
|
-
&.ax-look-end-line {
|
94
|
-
@apply ax-border-b ax-border-solid ax-border-neutral-300 dark:ax-border-neutral-200/10 ax-w-full;
|
95
|
-
ax-tab-item {
|
96
|
-
&.ax-state-active {
|
97
|
-
@apply ax-text-primary-500;
|
98
|
-
&::after {
|
99
|
-
@apply ax-absolute ax-bottom-0 ax-w-full ax-h-0.5 ax-bg-primary-500 ax-block;
|
100
|
-
content: "";
|
101
|
-
}
|
102
|
-
}
|
103
|
-
&:hover {
|
104
|
-
&::after {
|
105
|
-
@apply ax-absolute ax-bottom-0 ax-w-full ax-h-0.5 ax-bg-primary-500 ax-block;
|
106
|
-
content: "";
|
107
|
-
}
|
108
|
-
}
|
109
|
-
}
|
110
|
-
}
|
111
|
-
|
112
|
-
&.ax-look-pills {
|
113
|
-
ax-tab-item {
|
114
|
-
@apply ax-text-neutral-fore ax-mr-1 ax-rounded dark:ax-text-neutral-200;
|
115
|
-
|
116
|
-
&:hover {
|
117
|
-
@apply ax-bg-neutral-300 ax-text-neutral-fore dark:ax-text-neutral-50 dark:ax-bg-neutral-600;
|
118
|
-
}
|
119
|
-
|
120
|
-
&.ax-state-active {
|
121
|
-
@apply ax-bg-neutral-200 ax-text-neutral-fore dark:ax-text-neutral-50 dark:ax-bg-neutral-600;
|
122
|
-
}
|
123
|
-
}
|
124
|
-
}
|
125
|
-
|
126
|
-
&.ax-look-pills-color {
|
127
|
-
ax-tab-item {
|
128
|
-
@apply ax-text-neutral-fore ax-mr-1 ax-rounded dark:ax-text-primary-200;
|
129
|
-
|
130
|
-
&:hover {
|
131
|
-
@apply ax-bg-primary-100 ax-text-primary-500 dark:ax-text-primary-50 dark:ax-bg-primary-500;
|
132
|
-
}
|
133
|
-
|
134
|
-
&.ax-state-active {
|
135
|
-
@apply ax-bg-primary-100 ax-text-primary-500 dark:ax-text-primary-50 dark:ax-bg-primary-500;
|
136
|
-
}
|
137
|
-
}
|
138
|
-
}
|
139
|
-
}
|
140
|
-
|
141
|
-
&.ax-vertical {
|
142
|
-
.ax-items-wrapper {
|
143
|
-
@apply ax-flex-col ax-h-full;
|
144
|
-
|
145
|
-
ax-tab-item {
|
146
|
-
@apply ax-text-center ax-justify-start ax-py-2;
|
147
|
-
}
|
148
|
-
}
|
149
|
-
|
150
|
-
&.ax-look-default {
|
151
|
-
@apply ax-border ax-border-solid ax-border-neutral-300 ax-shadow-sm ax-rounded ax-overflow-hidden;
|
152
|
-
@include control-states("editor");
|
153
|
-
|
154
|
-
ax-tab-item {
|
155
|
-
@apply ax-bg-white ax-border-s ax-border-solid ax-border-neutral-300 ax-border-b-0 dark:ax-text-neutral-200 ax-mb-1;
|
156
|
-
&:last-child {
|
157
|
-
@apply ax-mb-0;
|
158
|
-
}
|
159
|
-
&:hover,
|
160
|
-
&.ax-state-active {
|
161
|
-
border-inline-start-color: rgb(var(--ax-color-primary-500)) !important;
|
162
|
-
}
|
163
|
-
}
|
164
|
-
}
|
165
|
-
|
166
|
-
&.ax-look-start-line {
|
167
|
-
ax-tab-item {
|
168
|
-
@apply ax-border-s-2 ax-border-solid ax-border-neutral-300 dark:ax-border-neutral-200/10;
|
169
|
-
|
170
|
-
&.ax-state-active {
|
171
|
-
@apply ax-border-primary-500 ax-text-primary-500;
|
172
|
-
|
173
|
-
&:hover {
|
174
|
-
@apply ax-border-primary-500;
|
175
|
-
}
|
176
|
-
}
|
177
|
-
|
178
|
-
&:hover {
|
179
|
-
@apply ax-border-primary-500 ax-text-primary-500;
|
180
|
-
}
|
181
|
-
}
|
182
|
-
}
|
183
|
-
|
184
|
-
&.ax-look-end-line {
|
185
|
-
ax-tab-item {
|
186
|
-
@apply ax-border-e-2 ax-border-solid ax-border-neutral-300 dark:ax-border-neutral-200/10;
|
187
|
-
|
188
|
-
&.ax-state-active {
|
189
|
-
@apply ax-border-primary-500 ax-text-primary-500;
|
190
|
-
|
191
|
-
&:hover {
|
192
|
-
@apply ax-border-primary-500;
|
193
|
-
}
|
194
|
-
}
|
195
|
-
|
196
|
-
&:hover {
|
197
|
-
@apply ax-border-primary-500 ax-text-primary-500;
|
198
|
-
}
|
199
|
-
}
|
200
|
-
}
|
201
|
-
|
202
|
-
&.ax-look-pills {
|
203
|
-
ax-tab-item {
|
204
|
-
@apply ax-text-neutral-fore ax-mr-1 ax-rounded dark:ax-text-neutral-200 ax-mb-1;
|
205
|
-
&:last-child {
|
206
|
-
@apply ax-mb-0;
|
207
|
-
}
|
208
|
-
&:hover {
|
209
|
-
@apply ax-bg-neutral-300 ax-text-neutral-fore dark:ax-text-neutral-100;
|
210
|
-
}
|
211
|
-
|
212
|
-
&.ax-state-active {
|
213
|
-
@apply ax-bg-neutral-300 ax-text-neutral-fore dark:ax-text-neutral-50;
|
214
|
-
}
|
215
|
-
}
|
216
|
-
}
|
217
|
-
|
218
|
-
&.ax-look-pills-color {
|
219
|
-
ax-tab-item {
|
220
|
-
@apply ax-text-neutral-fore ax-mr-1 ax-rounded dark:ax-text-neutral-200 ax-mb-1;
|
221
|
-
&:last-child {
|
222
|
-
@apply ax-mb-0;
|
223
|
-
}
|
224
|
-
&:hover {
|
225
|
-
@apply ax-bg-primary-100 ax-text-primary-500 dark:ax-text-neutral-100;
|
226
|
-
}
|
227
|
-
|
228
|
-
&.ax-state-active {
|
229
|
-
@apply ax-bg-primary-100 ax-text-primary-500 dark:ax-text-neutral-50;
|
230
|
-
}
|
231
|
-
}
|
232
|
-
}
|
233
|
-
}
|
234
|
-
}
|
235
|
-
}
|
@@ -1,235 +0,0 @@
|
|
1
|
-
// @layer components {
|
2
|
-
// .ax-tabs {
|
3
|
-
// @apply ax-p-0 ax-overflow-y-hidden ax-overflow-x-auto ax-w-max ax-block;
|
4
|
-
|
5
|
-
// .ax-items-wrapper {
|
6
|
-
// @apply ax-flex;
|
7
|
-
// }
|
8
|
-
|
9
|
-
// &:not(.ax-look-custom) {
|
10
|
-
// ax-tab-item {
|
11
|
-
// @apply ax-text-center ax-px-5 ax-cursor-pointer ax-whitespace-nowrap ax-flex ax-items-center ax-justify-center ax-relative ax-text-sm ax-font-medium ax-select-none;
|
12
|
-
// min-height: calc(var(--ax-base-size) * var(--ax-base-ratio));
|
13
|
-
// line-height: calc((var(--ax-base-size) * var(--ax-base-ratio)) / 2);
|
14
|
-
|
15
|
-
// &.ax-state-disabled {
|
16
|
-
// // background-color: rgb(var(--ax-color-disabled)) !important;
|
17
|
-
// // color: rgb(var(--ax-color-disabled-fore)) !important;
|
18
|
-
// @apply ax-opacity-50 ax-cursor-not-allowed #{!important};
|
19
|
-
// }
|
20
|
-
|
21
|
-
// &.ax-state-active {
|
22
|
-
// @apply ax-text-black;
|
23
|
-
// }
|
24
|
-
|
25
|
-
// .ax-prefix {
|
26
|
-
// @apply ax-flex ax-flex-row ax-pe-2;
|
27
|
-
// }
|
28
|
-
|
29
|
-
// .ax-suffix {
|
30
|
-
// @apply ax-flex ax-flex-row ax-ps-2;
|
31
|
-
// }
|
32
|
-
// }
|
33
|
-
// }
|
34
|
-
|
35
|
-
// &.ax-tabs-fit {
|
36
|
-
// .ax-items-wrapper ax-tab-item {
|
37
|
-
// @apply ax-flex-1;
|
38
|
-
// }
|
39
|
-
// }
|
40
|
-
|
41
|
-
// & > .ax-tab-controll {
|
42
|
-
// @apply ax-flex ax-items-center ax-justify-center ax-px-1 ax-cursor-pointer;
|
43
|
-
// box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14),
|
44
|
-
// 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
45
|
-
// }
|
46
|
-
|
47
|
-
// &.ax-horizontal {
|
48
|
-
// &.ax-look-default {
|
49
|
-
// @apply ax-border ax-border-solid ax-border-neutral-300 ax-shadow-sm ax-overflow-hidden ax-rounded-default;
|
50
|
-
// @include control-states("editor");
|
51
|
-
|
52
|
-
// ax-tab-item {
|
53
|
-
// @apply ax-bg-white ax-border-e ax-border-b-2 ax-border-solid ax-border-neutral-300 dark:ax-text-neutral-200;
|
54
|
-
// @include control-states("editor");
|
55
|
-
|
56
|
-
// border-bottom-color: transparent !important;
|
57
|
-
|
58
|
-
// &:first-child {
|
59
|
-
// }
|
60
|
-
|
61
|
-
// &:last-child {
|
62
|
-
// @apply ax-border-e-0;
|
63
|
-
// }
|
64
|
-
|
65
|
-
// &:hover,
|
66
|
-
// &.ax-state-active {
|
67
|
-
// &:not(.ax-state-disabled) {
|
68
|
-
// border-bottom-color: rgb(var(--ax-color-primary-500)) !important;
|
69
|
-
// }
|
70
|
-
// }
|
71
|
-
// }
|
72
|
-
// }
|
73
|
-
|
74
|
-
// &.ax-look-start-line {
|
75
|
-
// @apply ax-border-t ax-border-solid ax-border-neutral-300 dark:ax-border-neutral-200/10 ax-w-full;
|
76
|
-
// ax-tab-item {
|
77
|
-
// &.ax-state-active {
|
78
|
-
// @apply ax-text-primary-500;
|
79
|
-
// &::after {
|
80
|
-
// @apply ax-absolute ax-top-0 ax-w-full ax-h-0.5 ax-bg-primary-500 ax-block;
|
81
|
-
// content: "";
|
82
|
-
// }
|
83
|
-
// }
|
84
|
-
// &:hover {
|
85
|
-
// &::after {
|
86
|
-
// @apply ax-absolute ax-top-0 ax-w-full ax-h-0.5 ax-bg-primary-500 ax-block;
|
87
|
-
// content: "";
|
88
|
-
// }
|
89
|
-
// }
|
90
|
-
// }
|
91
|
-
// }
|
92
|
-
|
93
|
-
// &.ax-look-end-line {
|
94
|
-
// @apply ax-border-b ax-border-solid ax-border-neutral-300 dark:ax-border-neutral-200/10 ax-w-full;
|
95
|
-
// ax-tab-item {
|
96
|
-
// &.ax-state-active {
|
97
|
-
// @apply ax-text-primary-500;
|
98
|
-
// &::after {
|
99
|
-
// @apply ax-absolute ax-bottom-0 ax-w-full ax-h-0.5 ax-bg-primary-500 ax-block;
|
100
|
-
// content: "";
|
101
|
-
// }
|
102
|
-
// }
|
103
|
-
// &:hover {
|
104
|
-
// &::after {
|
105
|
-
// @apply ax-absolute ax-bottom-0 ax-w-full ax-h-0.5 ax-bg-primary-500 ax-block;
|
106
|
-
// content: "";
|
107
|
-
// }
|
108
|
-
// }
|
109
|
-
// }
|
110
|
-
// }
|
111
|
-
|
112
|
-
// &.ax-look-pills {
|
113
|
-
// ax-tab-item {
|
114
|
-
// @apply ax-text-neutral-fore ax-mr-1 ax-rounded dark:ax-text-neutral-200;
|
115
|
-
|
116
|
-
// &:hover {
|
117
|
-
// @apply ax-bg-neutral-300 ax-text-neutral-fore dark:ax-text-neutral-50 dark:ax-bg-neutral-600;
|
118
|
-
// }
|
119
|
-
|
120
|
-
// &.ax-state-active {
|
121
|
-
// @apply ax-bg-neutral-200 ax-text-neutral-fore dark:ax-text-neutral-50 dark:ax-bg-neutral-600;
|
122
|
-
// }
|
123
|
-
// }
|
124
|
-
// }
|
125
|
-
|
126
|
-
// &.ax-look-pills-color {
|
127
|
-
// ax-tab-item {
|
128
|
-
// @apply ax-text-neutral-fore ax-mr-1 ax-rounded dark:ax-text-primary-200;
|
129
|
-
|
130
|
-
// &:hover {
|
131
|
-
// @apply ax-bg-primary-100 ax-text-primary-500 dark:ax-text-primary-50 dark:ax-bg-primary-500;
|
132
|
-
// }
|
133
|
-
|
134
|
-
// &.ax-state-active {
|
135
|
-
// @apply ax-bg-primary-100 ax-text-primary-500 dark:ax-text-primary-50 dark:ax-bg-primary-500;
|
136
|
-
// }
|
137
|
-
// }
|
138
|
-
// }
|
139
|
-
// }
|
140
|
-
|
141
|
-
// &.ax-vertical {
|
142
|
-
// .ax-items-wrapper {
|
143
|
-
// @apply ax-flex-col ax-h-full;
|
144
|
-
|
145
|
-
// ax-tab-item {
|
146
|
-
// @apply ax-text-center ax-justify-start ax-py-2;
|
147
|
-
// }
|
148
|
-
// }
|
149
|
-
|
150
|
-
// &.ax-look-default {
|
151
|
-
// @apply ax-border ax-border-solid ax-border-neutral-300 ax-shadow-sm ax-rounded ax-overflow-hidden;
|
152
|
-
// @include control-states("editor");
|
153
|
-
|
154
|
-
// ax-tab-item {
|
155
|
-
// @apply ax-bg-white ax-border-s ax-border-solid ax-border-neutral-300 ax-border-b-0 dark:ax-text-neutral-200 ax-mb-1;
|
156
|
-
// &:last-child {
|
157
|
-
// @apply ax-mb-0;
|
158
|
-
// }
|
159
|
-
// &:hover,
|
160
|
-
// &.ax-state-active {
|
161
|
-
// border-inline-start-color: rgb(var(--ax-color-primary-500)) !important;
|
162
|
-
// }
|
163
|
-
// }
|
164
|
-
// }
|
165
|
-
|
166
|
-
// &.ax-look-start-line {
|
167
|
-
// ax-tab-item {
|
168
|
-
// @apply ax-border-s-2 ax-border-solid ax-border-neutral-300 dark:ax-border-neutral-200/10;
|
169
|
-
|
170
|
-
// &.ax-state-active {
|
171
|
-
// @apply ax-border-primary-500 ax-text-primary-500;
|
172
|
-
|
173
|
-
// &:hover {
|
174
|
-
// @apply ax-border-primary-500;
|
175
|
-
// }
|
176
|
-
// }
|
177
|
-
|
178
|
-
// &:hover {
|
179
|
-
// @apply ax-border-primary-500 ax-text-primary-500;
|
180
|
-
// }
|
181
|
-
// }
|
182
|
-
// }
|
183
|
-
|
184
|
-
// &.ax-look-end-line {
|
185
|
-
// ax-tab-item {
|
186
|
-
// @apply ax-border-e-2 ax-border-solid ax-border-neutral-300 dark:ax-border-neutral-200/10;
|
187
|
-
|
188
|
-
// &.ax-state-active {
|
189
|
-
// @apply ax-border-primary-500 ax-text-primary-500;
|
190
|
-
|
191
|
-
// &:hover {
|
192
|
-
// @apply ax-border-primary-500;
|
193
|
-
// }
|
194
|
-
// }
|
195
|
-
|
196
|
-
// &:hover {
|
197
|
-
// @apply ax-border-primary-500 ax-text-primary-500;
|
198
|
-
// }
|
199
|
-
// }
|
200
|
-
// }
|
201
|
-
|
202
|
-
// &.ax-look-pills {
|
203
|
-
// ax-tab-item {
|
204
|
-
// @apply ax-text-neutral-fore ax-mr-1 ax-rounded dark:ax-text-neutral-200 ax-mb-1;
|
205
|
-
// &:last-child {
|
206
|
-
// @apply ax-mb-0;
|
207
|
-
// }
|
208
|
-
// &:hover {
|
209
|
-
// @apply ax-bg-neutral-300 ax-text-neutral-fore dark:ax-text-neutral-100;
|
210
|
-
// }
|
211
|
-
|
212
|
-
// &.ax-state-active {
|
213
|
-
// @apply ax-bg-neutral-300 ax-text-neutral-fore dark:ax-text-neutral-50;
|
214
|
-
// }
|
215
|
-
// }
|
216
|
-
// }
|
217
|
-
|
218
|
-
// &.ax-look-pills-color {
|
219
|
-
// ax-tab-item {
|
220
|
-
// @apply ax-text-neutral-fore ax-mr-1 ax-rounded dark:ax-text-neutral-200 ax-mb-1;
|
221
|
-
// &:last-child {
|
222
|
-
// @apply ax-mb-0;
|
223
|
-
// }
|
224
|
-
// &:hover {
|
225
|
-
// @apply ax-bg-primary-100 ax-text-primary-500 dark:ax-text-neutral-100;
|
226
|
-
// }
|
227
|
-
|
228
|
-
// &.ax-state-active {
|
229
|
-
// @apply ax-bg-primary-200 ax-text-primary-900 dark:ax-text-neutral-50;
|
230
|
-
// }
|
231
|
-
// }
|
232
|
-
// }
|
233
|
-
// }
|
234
|
-
// }
|
235
|
-
// }
|
@@ -1,31 +0,0 @@
|
|
1
|
-
ax-textarea {
|
2
|
-
position: relative;
|
3
|
-
width: 100%;
|
4
|
-
height: auto !important;
|
5
|
-
flex-direction: column;
|
6
|
-
background-color: var(--ax-color-surface);
|
7
|
-
border-radius: var(--ax-rounded-border-default);
|
8
|
-
border: 1px solid;
|
9
|
-
border: rgb(var(--ax-color-border-default));
|
10
|
-
overflow: hidden;
|
11
|
-
textarea {
|
12
|
-
height: fit-content;
|
13
|
-
line-height: 1.7;
|
14
|
-
width: 100%;
|
15
|
-
font-size: 0.875rem;
|
16
|
-
padding: 0.625rem;
|
17
|
-
&:focus {
|
18
|
-
outline-color: transparent;
|
19
|
-
}
|
20
|
-
}
|
21
|
-
> ax-prefix,
|
22
|
-
> ax-suffix {
|
23
|
-
margin-bottom: 0.5rem;
|
24
|
-
padding: 0.375rem;
|
25
|
-
}
|
26
|
-
|
27
|
-
&.ax-state-disabled {
|
28
|
-
cursor: not-allowed;
|
29
|
-
opacity: 0.5;
|
30
|
-
}
|
31
|
-
}
|
@@ -1,44 +0,0 @@
|
|
1
|
-
@layer components {
|
2
|
-
.ax-tooltip-container {
|
3
|
-
@apply ax-relative;
|
4
|
-
.ax-tooltip {
|
5
|
-
@apply ax-block ax-p-1 ax-bg-black ax-text-white ax-rounded;
|
6
|
-
}
|
7
|
-
.ax-tooltip-tringle {
|
8
|
-
width: 0;
|
9
|
-
height: 0;
|
10
|
-
border-left: 5px solid transparent;
|
11
|
-
border-right: 5px solid transparent;
|
12
|
-
border-top: 5px solid #000;
|
13
|
-
position: absolute;
|
14
|
-
|
15
|
-
&.ax-tooltip-tringle-bottom {
|
16
|
-
transform: rotate(180deg);
|
17
|
-
left: 0;
|
18
|
-
right: 0;
|
19
|
-
margin: auto;
|
20
|
-
top: -5px;
|
21
|
-
}
|
22
|
-
&.ax-tooltip-tringle-right {
|
23
|
-
transform: rotate(90deg);
|
24
|
-
top: 0;
|
25
|
-
bottom: 0;
|
26
|
-
margin: auto;
|
27
|
-
left: -7px;
|
28
|
-
}
|
29
|
-
&.ax-tooltip-tringle-top {
|
30
|
-
transform: rotate(0deg);
|
31
|
-
left: 0;
|
32
|
-
right: 0;
|
33
|
-
margin: auto;
|
34
|
-
}
|
35
|
-
&.ax-tooltip-tringle-left {
|
36
|
-
transform: rotate(270deg);
|
37
|
-
top: 0;
|
38
|
-
bottom: 0;
|
39
|
-
margin: auto;
|
40
|
-
right: -7px;
|
41
|
-
}
|
42
|
-
}
|
43
|
-
}
|
44
|
-
}
|
File without changes
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
@import "./action-sheet";
|