@shuriken-ui/tailwind 4.0.0-alpha.6 → 4.0.0-alpha.8
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/lib/css/focus.css +2 -9
- package/lib/css/mark.css +0 -2
- package/lib/css/mask.css +0 -2
- package/lib/css/slimscroll.css +4 -2
- package/lib/index.css +5 -53
- package/lib/theme.css +37 -28
- package/package.json +2 -2
- package/lib/css/accordion.css +0 -175
- package/lib/css/autocomplete.css +0 -520
- package/lib/css/avatar-group.css +0 -137
- package/lib/css/avatar.css +0 -737
- package/lib/css/breadcrumb.css +0 -62
- package/lib/css/button-action.css +0 -107
- package/lib/css/button-close.css +0 -116
- package/lib/css/button-group.css +0 -235
- package/lib/css/button-icon.css +0 -96
- package/lib/css/button.css +0 -564
- package/lib/css/card.css +0 -68
- package/lib/css/checkbox.css +0 -98
- package/lib/css/dropdown-divider.css +0 -5
- package/lib/css/dropdown-item.css +0 -61
- package/lib/css/dropdown.css +0 -101
- package/lib/css/fullscreen-dropfile.css +0 -62
- package/lib/css/heading.css +0 -77
- package/lib/css/icon-box.css +0 -304
- package/lib/css/input-file-regular.css +0 -254
- package/lib/css/input-file.css +0 -223
- package/lib/css/input-help-text.css +0 -6
- package/lib/css/input-number.css +0 -479
- package/lib/css/input.css +0 -408
- package/lib/css/kbd.css +0 -93
- package/lib/css/label.css +0 -5
- package/lib/css/link.css +0 -7
- package/lib/css/list.css +0 -23
- package/lib/css/listbox.css +0 -528
- package/lib/css/message-text.css +0 -71
- package/lib/css/message.css +0 -243
- package/lib/css/modal.css +0 -50
- package/lib/css/pagination.css +0 -92
- package/lib/css/paragraph.css +0 -77
- package/lib/css/placeholder-page.css +0 -43
- package/lib/css/placeload.css +0 -11
- package/lib/css/progress-circle.css +0 -17
- package/lib/css/progress.css +0 -89
- package/lib/css/prose.css +0 -22
- package/lib/css/radio.css +0 -72
- package/lib/css/select.css +0 -407
- package/lib/css/snack.css +0 -100
- package/lib/css/switch-ball.css +0 -93
- package/lib/css/switch-thin.css +0 -75
- package/lib/css/tab-slider.css +0 -189
- package/lib/css/tabs.css +0 -173
- package/lib/css/tag.css +0 -311
- package/lib/css/text.css +0 -77
- package/lib/css/textarea.css +0 -239
- package/lib/css/theme-switch.css +0 -64
- package/lib/css/theme-toggle.css +0 -61
- package/lib/css/toast.css +0 -131
- package/lib/css/tooltip.css +0 -98
package/lib/css/input.css
DELETED
@@ -1,408 +0,0 @@
|
|
1
|
-
/* @utility nui-input */
|
2
|
-
|
3
|
-
@utility nui-input-wrapper {
|
4
|
-
@apply relative;
|
5
|
-
|
6
|
-
.nui-input-label, .nui-input-label-float-label {
|
7
|
-
@apply nui-label;
|
8
|
-
}
|
9
|
-
|
10
|
-
&:not(.nui-input-loading) {
|
11
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
12
|
-
@apply text-muted-300 dark:text-muted-600;
|
13
|
-
}
|
14
|
-
}
|
15
|
-
|
16
|
-
&:not(.nui-input-has-icon).nui-input-sm {
|
17
|
-
.nui-input {
|
18
|
-
@apply h-8 py-1 text-xs leading-4 px-2;
|
19
|
-
}
|
20
|
-
}
|
21
|
-
|
22
|
-
&.nui-input-has-icon.nui-input-sm {
|
23
|
-
.nui-input {
|
24
|
-
@apply h-8 py-1 text-xs leading-4 pe-3 ps-8;
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
&:not(.nui-input-has-icon).nui-input-md {
|
29
|
-
.nui-input {
|
30
|
-
@apply h-10 py-2 text-sm leading-5 px-3;
|
31
|
-
}
|
32
|
-
}
|
33
|
-
&.nui-input-has-icon.nui-input-md {
|
34
|
-
.nui-input {
|
35
|
-
@apply h-10 py-2 text-sm leading-5 pe-4 ps-10;
|
36
|
-
}
|
37
|
-
}
|
38
|
-
|
39
|
-
&:not(.nui-input-has-icon).nui-input-lg {
|
40
|
-
.nui-input {
|
41
|
-
@apply h-12 py-2 text-sm leading-5 px-4;
|
42
|
-
}
|
43
|
-
}
|
44
|
-
&.nui-input-has-icon.nui-input-lg {
|
45
|
-
.nui-input {
|
46
|
-
@apply h-12 py-2 text-sm leading-5 pe-4 ps-11;
|
47
|
-
}
|
48
|
-
}
|
49
|
-
|
50
|
-
&:not(.nui-input-has-icon).nui-input-xl {
|
51
|
-
.nui-input {
|
52
|
-
@apply h-14 py-2 text-base leading-5 px-4;
|
53
|
-
}
|
54
|
-
}
|
55
|
-
&.nui-input-has-icon.nui-input-xl {
|
56
|
-
.nui-input {
|
57
|
-
@apply h-14 py-2 text-base leading-5 pe-4 ps-[3.25rem];
|
58
|
-
}
|
59
|
-
}
|
60
|
-
}
|
61
|
-
@utility nui-input-label-float-label {
|
62
|
-
@apply h-5 absolute inline-flex items-center select-none pointer-events-none;
|
63
|
-
@apply font-sans text-primary-500 leading-none;
|
64
|
-
@apply transition-all duration-300;
|
65
|
-
}
|
66
|
-
@utility nui-input-outer {
|
67
|
-
@apply relative;
|
68
|
-
}
|
69
|
-
@utility nui-input-icon {
|
70
|
-
@apply absolute start-0 top-0 z-10 flex items-center justify-center;
|
71
|
-
@apply text-muted-400 dark:text-muted-400;
|
72
|
-
@apply transition-colors duration-300;
|
73
|
-
}
|
74
|
-
@utility nui-input {
|
75
|
-
@apply nui-focus w-full font-sans disabled:cursor-not-allowed disabled:opacity-75;
|
76
|
-
@apply transition-all duration-300 text-ellipsis;
|
77
|
-
|
78
|
-
&:focus-visible ~ .nui-input-label-float-label {
|
79
|
-
@apply !text-primary-500 dark:!text-primary-500;
|
80
|
-
}
|
81
|
-
|
82
|
-
&:focus-visible ~ .nui-input-icon {
|
83
|
-
@apply !text-primary-500 dark:!text-primary-500;
|
84
|
-
}
|
85
|
-
|
86
|
-
&:disabled ~ .nui-input-icon {
|
87
|
-
@apply cursor-not-allowed opacity-75;
|
88
|
-
}
|
89
|
-
}
|
90
|
-
@utility nui-input-placeload-wrapper {
|
91
|
-
@apply absolute start-0 top-0 flex w-full items-center px-4;
|
92
|
-
|
93
|
-
.nui-input-placeload {
|
94
|
-
@apply h-3 w-full max-w-[75%] rounded;
|
95
|
-
}
|
96
|
-
}
|
97
|
-
@utility nui-input-action {
|
98
|
-
@apply absolute end-0 top-0 flex items-center justify-center;
|
99
|
-
@apply text-muted-400 dark:text-muted-400;
|
100
|
-
@apply transition-colors duration-300;
|
101
|
-
}
|
102
|
-
@utility nui-input-rounded-sm {
|
103
|
-
.nui-input {
|
104
|
-
@apply rounded-md;
|
105
|
-
}
|
106
|
-
}
|
107
|
-
@utility nui-input-rounded-md {
|
108
|
-
.nui-input {
|
109
|
-
@apply rounded-lg;
|
110
|
-
}
|
111
|
-
}
|
112
|
-
@utility nui-input-rounded-lg {
|
113
|
-
.nui-input {
|
114
|
-
@apply rounded-xl;
|
115
|
-
}
|
116
|
-
}
|
117
|
-
@utility nui-input-rounded-full {
|
118
|
-
.nui-input {
|
119
|
-
@apply rounded-full;
|
120
|
-
}
|
121
|
-
}
|
122
|
-
@utility nui-input-sm {
|
123
|
-
.nui-input-label {
|
124
|
-
@apply pb-1 text-xs;
|
125
|
-
}
|
126
|
-
|
127
|
-
.nui-input-label-float-label {
|
128
|
-
@apply top-1.5;
|
129
|
-
}
|
130
|
-
|
131
|
-
.nui-input-icon, .nui-input-action {
|
132
|
-
@apply h-8 w-8;
|
133
|
-
|
134
|
-
.nui-input-icon-inner, .nui-input-action-inner {
|
135
|
-
@apply h-4 w-4;
|
136
|
-
}
|
137
|
-
}
|
138
|
-
|
139
|
-
.nui-input-placeload-wrapper {
|
140
|
-
@apply h-8;
|
141
|
-
}
|
142
|
-
}
|
143
|
-
@utility nui-input-md {
|
144
|
-
.nui-input-label {
|
145
|
-
@apply pb-1 text-[0.825rem];
|
146
|
-
}
|
147
|
-
|
148
|
-
.nui-input-label-float-label {
|
149
|
-
@apply top-2.5;
|
150
|
-
}
|
151
|
-
|
152
|
-
.nui-input-icon, .nui-input-action {
|
153
|
-
@apply h-10 w-10;
|
154
|
-
|
155
|
-
.nui-input-icon-inner, .nui-input-action-inner {
|
156
|
-
@apply h-[1.15rem] w-[1.15rem];
|
157
|
-
}
|
158
|
-
}
|
159
|
-
|
160
|
-
.nui-input-placeload-wrapper {
|
161
|
-
@apply h-10;
|
162
|
-
}
|
163
|
-
}
|
164
|
-
@utility nui-input-lg {
|
165
|
-
.nui-input-label {
|
166
|
-
@apply pb-1 text-sm;
|
167
|
-
}
|
168
|
-
|
169
|
-
.nui-input-label-float-label {
|
170
|
-
@apply top-3.5;
|
171
|
-
}
|
172
|
-
|
173
|
-
.nui-input-icon, .nui-input-action {
|
174
|
-
@apply h-12 w-12;
|
175
|
-
|
176
|
-
.nui-input-icon-inner, .nui-input-action-inner {
|
177
|
-
@apply h-5 w-5;
|
178
|
-
}
|
179
|
-
}
|
180
|
-
|
181
|
-
.nui-input-placeload-wrapper {
|
182
|
-
@apply h-12;
|
183
|
-
}
|
184
|
-
}
|
185
|
-
@utility nui-input-xl {
|
186
|
-
.nui-input-label {
|
187
|
-
@apply pb-1 text-sm;
|
188
|
-
}
|
189
|
-
|
190
|
-
.nui-input-label-float-label {
|
191
|
-
@apply top-[1.1rem];
|
192
|
-
}
|
193
|
-
|
194
|
-
.nui-input-icon, .nui-input-action {
|
195
|
-
@apply h-14 w-14;
|
196
|
-
|
197
|
-
.nui-input-icon-inner, .nui-input-action-inner {
|
198
|
-
@apply h-5 w-5;
|
199
|
-
}
|
200
|
-
}
|
201
|
-
|
202
|
-
.nui-input-placeload-wrapper {
|
203
|
-
@apply h-14;
|
204
|
-
}
|
205
|
-
}
|
206
|
-
@utility nui-input-default {
|
207
|
-
.nui-input {
|
208
|
-
@apply text-muted-600 dark:text-muted-200;
|
209
|
-
@apply placeholder:text-muted-300 dark:placeholder:text-muted-500;
|
210
|
-
@apply bg-white dark:bg-muted-900;
|
211
|
-
@apply border border-muted-300 dark:border-muted-700;
|
212
|
-
@apply hover:border-muted-300 dark:hover:border-muted-700;
|
213
|
-
}
|
214
|
-
}
|
215
|
-
@utility nui-input-default-contrast {
|
216
|
-
.nui-input {
|
217
|
-
@apply text-muted-600 dark:text-muted-200;
|
218
|
-
@apply placeholder:text-muted-300 dark:placeholder:text-muted-600;
|
219
|
-
@apply bg-white dark:bg-muted-950;
|
220
|
-
@apply border border-muted-300 dark:border-muted-800;
|
221
|
-
@apply hover:border-muted-300 dark:hover:border-muted-800;
|
222
|
-
}
|
223
|
-
}
|
224
|
-
@utility nui-input-muted {
|
225
|
-
.nui-input {
|
226
|
-
@apply text-muted-600 dark:text-muted-200;
|
227
|
-
@apply placeholder:text-muted-300 dark:placeholder:text-muted-500;
|
228
|
-
@apply bg-muted-100 dark:bg-muted-900;
|
229
|
-
@apply border border-muted-100 dark:border-muted-700;
|
230
|
-
@apply hover:border-muted-100 dark:hover:border-muted-700;
|
231
|
-
}
|
232
|
-
}
|
233
|
-
@utility nui-input-muted-contrast {
|
234
|
-
.nui-input {
|
235
|
-
@apply text-muted-600 dark:text-muted-200;
|
236
|
-
@apply placeholder:text-muted-300 dark:placeholder:text-muted-600;
|
237
|
-
@apply bg-muted-100 dark:bg-muted-950;
|
238
|
-
@apply border border-muted-100 dark:border-muted-800;
|
239
|
-
@apply hover:border-muted-100 dark:hover:border-muted-800;
|
240
|
-
}
|
241
|
-
}
|
242
|
-
@utility nui-input-focus {
|
243
|
-
.nui-input {
|
244
|
-
@apply focus:!border-primary-500 dark:focus:!border-primary-500;
|
245
|
-
@apply focus:hover:!border-primary-500 dark:focus:hover:!border-primary-500;
|
246
|
-
}
|
247
|
-
}
|
248
|
-
@utility nui-input-loading {
|
249
|
-
.nui-input {
|
250
|
-
@apply !text-transparent placeholder:!text-transparent dark:placeholder:!text-transparent;
|
251
|
-
}
|
252
|
-
|
253
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
254
|
-
@apply text-transparent;
|
255
|
-
}
|
256
|
-
|
257
|
-
.nui-input-icon {
|
258
|
-
@apply opacity-0;
|
259
|
-
}
|
260
|
-
}
|
261
|
-
@utility nui-input-label-float {
|
262
|
-
.nui-input {
|
263
|
-
@apply placeholder:text-transparent dark:placeholder:text-transparent;
|
264
|
-
}
|
265
|
-
}
|
266
|
-
@utility nui-input-error {
|
267
|
-
.nui-input {
|
268
|
-
@apply !border-danger-500 dark:!border-danger-500;
|
269
|
-
}
|
270
|
-
|
271
|
-
.nui-input-icon {
|
272
|
-
@apply !text-danger-500 dark:!text-danger-500;
|
273
|
-
}
|
274
|
-
}
|
275
|
-
@utility nui-input-has-action {
|
276
|
-
&.nui-input-sm {
|
277
|
-
.nui-input {
|
278
|
-
@apply pe-8!;
|
279
|
-
}
|
280
|
-
}
|
281
|
-
&.nui-input-md {
|
282
|
-
.nui-input {
|
283
|
-
@apply pe-10!;
|
284
|
-
}
|
285
|
-
}
|
286
|
-
&.nui-input-lg {
|
287
|
-
.nui-input {
|
288
|
-
@apply pe-12!;
|
289
|
-
}
|
290
|
-
}
|
291
|
-
&.nui-input-xl {
|
292
|
-
.nui-input {
|
293
|
-
@apply pe-14!;
|
294
|
-
}
|
295
|
-
}
|
296
|
-
}
|
297
|
-
@utility nui-input-label-float {
|
298
|
-
&.nui-input-has-icon.nui-input-sm {
|
299
|
-
.nui-input-label-float-label {
|
300
|
-
@apply start-8 -ms-8 -mt-6 text-xs;
|
301
|
-
}
|
302
|
-
|
303
|
-
.nui-input:focus-visible ~ .nui-input-label-float-label {
|
304
|
-
@apply !-ms-8 !-mt-6;
|
305
|
-
}
|
306
|
-
|
307
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
308
|
-
@apply ms-0 mt-1;
|
309
|
-
}
|
310
|
-
}
|
311
|
-
&.nui-input-has-icon.nui-input-md {
|
312
|
-
.nui-input-label-float-label {
|
313
|
-
@apply start-10 -ms-10 -mt-7 text-xs;
|
314
|
-
}
|
315
|
-
|
316
|
-
.nui-input:focus-visible ~ .nui-input-label-float-label {
|
317
|
-
@apply !-ms-10 !-mt-7 !text-xs;
|
318
|
-
}
|
319
|
-
|
320
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
321
|
-
@apply ms-0 mt-1 text-[0.825rem];
|
322
|
-
}
|
323
|
-
}
|
324
|
-
&.nui-input-has-icon.nui-input-lg {
|
325
|
-
.nui-input-label-float-label {
|
326
|
-
@apply start-11 -ms-9 -mt-8 text-xs;
|
327
|
-
}
|
328
|
-
|
329
|
-
.nui-input:focus-visible ~ .nui-input-label-float-label {
|
330
|
-
@apply !-ms-11 !-mt-8 !text-xs;
|
331
|
-
}
|
332
|
-
|
333
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
334
|
-
@apply ms-0 mt-1 text-[0.825rem];
|
335
|
-
}
|
336
|
-
}
|
337
|
-
&.nui-input-has-icon.nui-input-xl {
|
338
|
-
.nui-input-label-float-label {
|
339
|
-
@apply start-[3.25rem] ms-[-3.25rem] -mt-9 text-xs;
|
340
|
-
}
|
341
|
-
|
342
|
-
.nui-input:focus-visible ~ .nui-input-label-float-label {
|
343
|
-
@apply !ms-[-3.25rem] !-mt-9 !text-xs;
|
344
|
-
}
|
345
|
-
|
346
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
347
|
-
@apply ms-0 mt-1 text-[0.825rem];
|
348
|
-
}
|
349
|
-
}
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
&:not(.nui-input-has-icon).nui-input-sm {
|
354
|
-
.nui-input-label-float-label {
|
355
|
-
@apply start-3 -ms-3 -mt-6 text-xs;
|
356
|
-
}
|
357
|
-
|
358
|
-
.nui-input:focus-visible ~ .nui-input-label-float-label {
|
359
|
-
@apply !-ms-3 !-mt-6;
|
360
|
-
}
|
361
|
-
|
362
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
363
|
-
@apply ms-0 mt-1;
|
364
|
-
}
|
365
|
-
}
|
366
|
-
|
367
|
-
&:not(.nui-input-has-icon).nui-input-md {
|
368
|
-
.nui-input-label-float-label {
|
369
|
-
@apply start-3 -ms-3 -mt-7 text-xs;
|
370
|
-
}
|
371
|
-
|
372
|
-
.nui-input:focus-visible ~ .nui-input-label-float-label {
|
373
|
-
@apply !-ms-3 !-mt-7 !text-xs;
|
374
|
-
}
|
375
|
-
|
376
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
377
|
-
@apply ms-0 mt-1 text-[0.825rem];
|
378
|
-
}
|
379
|
-
}
|
380
|
-
|
381
|
-
&:not(.nui-input-has-icon).nui-input-lg {
|
382
|
-
.nui-input-label-float-label {
|
383
|
-
@apply start-3 -ms-3 -mt-8 text-xs;
|
384
|
-
}
|
385
|
-
|
386
|
-
.nui-input:focus-visible ~ .nui-input-label-float-label {
|
387
|
-
@apply !-ms-3 !-mt-8 !text-xs;
|
388
|
-
}
|
389
|
-
|
390
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
391
|
-
@apply ms-0 mt-1 text-[0.825rem];
|
392
|
-
}
|
393
|
-
}
|
394
|
-
|
395
|
-
&:not(.nui-input-has-icon).nui-input-xl {
|
396
|
-
.nui-input-label-float-label {
|
397
|
-
@apply start-3 -ms-3 -mt-9 text-xs;
|
398
|
-
}
|
399
|
-
|
400
|
-
.nui-input:focus-visible ~ .nui-input-label-float-label {
|
401
|
-
@apply !-ms-3 !-mt-9 !text-xs;
|
402
|
-
}
|
403
|
-
|
404
|
-
.nui-input:placeholder-shown ~ .nui-input-label-float-label {
|
405
|
-
@apply ms-0 mt-1 text-[0.825rem];
|
406
|
-
}
|
407
|
-
}
|
408
|
-
}
|
package/lib/css/kbd.css
DELETED
@@ -1,93 +0,0 @@
|
|
1
|
-
/* @utility nui-kbd */
|
2
|
-
|
3
|
-
@utility nui-kbd {
|
4
|
-
@apply inline-flex items-center justify-center;
|
5
|
-
@apply font-mono leading-none text-muted-700 dark:text-muted-200;
|
6
|
-
}
|
7
|
-
@utility nui-kbd-icon-outer {
|
8
|
-
@apply inline-flex items-center justify-center;
|
9
|
-
}
|
10
|
-
@utility nui-kbd-icon {
|
11
|
-
@apply shrink-0;
|
12
|
-
}
|
13
|
-
@utility nui-kbd-rounded-sm {
|
14
|
-
@apply rounded-xs;
|
15
|
-
}
|
16
|
-
@utility nui-kbd-rounded-md {
|
17
|
-
@apply rounded-md;
|
18
|
-
}
|
19
|
-
@utility nui-kbd-rounded-lg {
|
20
|
-
@apply rounded-lg;
|
21
|
-
}
|
22
|
-
@utility nui-kbd-rounded-full {
|
23
|
-
@apply rounded-full;
|
24
|
-
}
|
25
|
-
@utility nui-kbd-xs {
|
26
|
-
@apply font-medium;
|
27
|
-
@apply min-h-[1.2em] min-w-[1.2em];
|
28
|
-
@apply px-1 py-0.5;
|
29
|
-
@apply leading-4 text-xs;
|
30
|
-
|
31
|
-
.nui-kbd-icon-outer {
|
32
|
-
@apply w-4 h-4;
|
33
|
-
}
|
34
|
-
|
35
|
-
.nui-kbd-icon-inner {
|
36
|
-
@apply w-3.5 h-3.5;
|
37
|
-
}
|
38
|
-
}
|
39
|
-
@utility nui-kbd-sm {
|
40
|
-
@apply min-h-[1.6em] min-w-[1.6em];
|
41
|
-
@apply px-1 py-0.5;
|
42
|
-
@apply leading-5 text-sm;
|
43
|
-
|
44
|
-
.nui-kbd-icon-outer {
|
45
|
-
@apply w-5 h-5;
|
46
|
-
}
|
47
|
-
|
48
|
-
.nui-kbd-icon-inner {
|
49
|
-
@apply w-3.5 h-3.5;
|
50
|
-
}
|
51
|
-
}
|
52
|
-
@utility nui-kbd-md {
|
53
|
-
@apply min-h-[2.2em] min-w-[2.2em];
|
54
|
-
@apply px-2 py-1;
|
55
|
-
@apply leading-6 text-base;
|
56
|
-
|
57
|
-
.nui-kbd-icon-outer {
|
58
|
-
@apply w-5 h-5;
|
59
|
-
}
|
60
|
-
|
61
|
-
.nui-kbd-icon-inner {
|
62
|
-
@apply w-4 h-4;
|
63
|
-
}
|
64
|
-
}
|
65
|
-
@utility nui-kbd-lg {
|
66
|
-
@apply min-h-[2.5em] min-w-[2.5em];
|
67
|
-
@apply px-4 py-1;
|
68
|
-
@apply leading-7 text-lg;
|
69
|
-
|
70
|
-
.nui-kbd-icon-outer {
|
71
|
-
@apply w-6 h-6;
|
72
|
-
}
|
73
|
-
|
74
|
-
.nui-kbd-icon-inner {
|
75
|
-
@apply w-5 h-5;
|
76
|
-
}
|
77
|
-
}
|
78
|
-
@utility nui-kbd-default {
|
79
|
-
@apply bg-white dark:bg-muted-800 border border-b-2;
|
80
|
-
@apply border-muted-500/20 dark:border-muted-300/20;
|
81
|
-
}
|
82
|
-
@utility nui-kbd-default-contrast {
|
83
|
-
@apply bg-white dark:bg-muted-950 border border-b-2;
|
84
|
-
@apply border-muted-500/20 dark:border-muted-400/20;
|
85
|
-
}
|
86
|
-
@utility nui-kbd-muted {
|
87
|
-
@apply bg-muted-50 dark:bg-muted-800 border border-b-2;
|
88
|
-
@apply border-muted-600/20 dark:border-muted-300/20;
|
89
|
-
}
|
90
|
-
@utility nui-kbd-muted-contrast {
|
91
|
-
@apply bg-muted-50 dark:bg-muted-950 border border-b-2;
|
92
|
-
@apply border-muted-600/20 dark:border-muted-400/20;
|
93
|
-
}
|
package/lib/css/label.css
DELETED
package/lib/css/link.css
DELETED
package/lib/css/list.css
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
/* @utility nui-list */
|
2
|
-
|
3
|
-
@utility nui-list {
|
4
|
-
@apply relative;
|
5
|
-
}
|
6
|
-
@utility nui-list-ul {
|
7
|
-
@apply list-disc;
|
8
|
-
}
|
9
|
-
@utility nui-list-ol {
|
10
|
-
@apply list-decimal;
|
11
|
-
}
|
12
|
-
@utility nui-list-base {
|
13
|
-
@apply space-y-1 font-sans;
|
14
|
-
@apply text-muted-700 dark:text-muted-300;
|
15
|
-
@apply marker:text-muted-500 dark:marker:text-muted-400;
|
16
|
-
}
|
17
|
-
@utility nui-list-media {
|
18
|
-
@apply space-y-4 marker:text-muted-500 dark:marker:text-muted-400;
|
19
|
-
|
20
|
-
.nui-list-item {
|
21
|
-
@apply flex gap-2;
|
22
|
-
}
|
23
|
-
}
|