@yanolja-next/ncp-ui 0.0.1 → 0.0.2
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/css/index.css +761 -993
- package/dist/index.js +1 -1
- package/dist/index.mjs +806 -806
- package/package.json +1 -1
package/css/index.css
CHANGED
|
@@ -3,45 +3,45 @@
|
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
5
5
|
:root, :host {
|
|
6
|
-
--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
6
|
+
--ncp-font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
|
|
7
7
|
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
|
-
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
8
|
+
--ncp-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
9
|
"Courier New", monospace;
|
|
10
|
-
--color-black: #000;
|
|
11
|
-
--color-white: #fff;
|
|
12
|
-
--spacing: 0.25rem;
|
|
13
|
-
--container-sm: 24rem;
|
|
14
|
-
--container-lg: 32rem;
|
|
15
|
-
--text-xs: 0.75rem;
|
|
16
|
-
--text-xs--line-height: calc(1 / 0.75);
|
|
17
|
-
--text-sm: 0.875rem;
|
|
18
|
-
--text-sm--line-height: calc(1.25 / 0.875);
|
|
19
|
-
--text-base: 1rem;
|
|
20
|
-
--text-base--line-height: calc(1.5 / 1);
|
|
21
|
-
--text-lg: 1.125rem;
|
|
22
|
-
--text-lg--line-height: calc(1.75 / 1.125);
|
|
23
|
-
--text-xl: 1.25rem;
|
|
24
|
-
--text-xl--line-height: calc(1.75 / 1.25);
|
|
25
|
-
--text-2xl: 1.5rem;
|
|
26
|
-
--text-2xl--line-height: calc(2 / 1.5);
|
|
27
|
-
--text-3xl: 1.875rem;
|
|
28
|
-
--text-3xl--line-height: calc(2.25 / 1.875);
|
|
29
|
-
--font-weight-normal: 400;
|
|
30
|
-
--font-weight-medium: 500;
|
|
31
|
-
--font-weight-semibold: 600;
|
|
32
|
-
--font-weight-extrabold: 800;
|
|
33
|
-
--tracking-tight: -0.025em;
|
|
34
|
-
--tracking-widest: 0.1em;
|
|
35
|
-
--leading-snug: 1.375;
|
|
36
|
-
--leading-normal: 1.5;
|
|
37
|
-
--leading-relaxed: 1.625;
|
|
38
|
-
--radius-xs: 0.125rem;
|
|
39
|
-
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
40
|
-
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
41
|
-
--default-transition-duration: 150ms;
|
|
42
|
-
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
43
|
-
--default-font-family: var(--font-sans);
|
|
44
|
-
--default-mono-font-family: var(--font-mono);
|
|
10
|
+
--ncp-color-black: #000;
|
|
11
|
+
--ncp-color-white: #fff;
|
|
12
|
+
--ncp-spacing: 0.25rem;
|
|
13
|
+
--ncp-container-sm: 24rem;
|
|
14
|
+
--ncp-container-lg: 32rem;
|
|
15
|
+
--ncp-text-xs: 0.75rem;
|
|
16
|
+
--ncp-text-xs--line-height: calc(1 / 0.75);
|
|
17
|
+
--ncp-text-sm: 0.875rem;
|
|
18
|
+
--ncp-text-sm--line-height: calc(1.25 / 0.875);
|
|
19
|
+
--ncp-text-base: 1rem;
|
|
20
|
+
--ncp-text-base--line-height: calc(1.5 / 1);
|
|
21
|
+
--ncp-text-lg: 1.125rem;
|
|
22
|
+
--ncp-text-lg--line-height: calc(1.75 / 1.125);
|
|
23
|
+
--ncp-text-xl: 1.25rem;
|
|
24
|
+
--ncp-text-xl--line-height: calc(1.75 / 1.25);
|
|
25
|
+
--ncp-text-2xl: 1.5rem;
|
|
26
|
+
--ncp-text-2xl--line-height: calc(2 / 1.5);
|
|
27
|
+
--ncp-text-3xl: 1.875rem;
|
|
28
|
+
--ncp-text-3xl--line-height: calc(2.25 / 1.875);
|
|
29
|
+
--ncp-font-weight-normal: 400;
|
|
30
|
+
--ncp-font-weight-medium: 500;
|
|
31
|
+
--ncp-font-weight-semibold: 600;
|
|
32
|
+
--ncp-font-weight-extrabold: 800;
|
|
33
|
+
--ncp-tracking-tight: -0.025em;
|
|
34
|
+
--ncp-tracking-widest: 0.1em;
|
|
35
|
+
--ncp-leading-snug: 1.375;
|
|
36
|
+
--ncp-leading-normal: 1.5;
|
|
37
|
+
--ncp-leading-relaxed: 1.625;
|
|
38
|
+
--ncp-radius-xs: 0.125rem;
|
|
39
|
+
--ncp-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
40
|
+
--ncp-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
41
|
+
--ncp-default-transition-duration: 150ms;
|
|
42
|
+
--ncp-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
43
|
+
--ncp-default-font-family: var(--ncp-font-sans);
|
|
44
|
+
--ncp-default-mono-font-family: var(--ncp-font-mono);
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
@layer base {
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
line-height: 1.5;
|
|
56
56
|
-webkit-text-size-adjust: 100%;
|
|
57
57
|
tab-size: 4;
|
|
58
|
-
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
59
|
-
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
60
|
-
font-variation-settings: var(--default-font-variation-settings, normal);
|
|
58
|
+
font-family: var(--ncp-default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
59
|
+
font-feature-settings: var(--ncp-default-font-feature-settings, normal);
|
|
60
|
+
font-variation-settings: var(--ncp-default-font-variation-settings, normal);
|
|
61
61
|
-webkit-tap-highlight-color: transparent;
|
|
62
62
|
}
|
|
63
63
|
hr {
|
|
@@ -82,9 +82,9 @@
|
|
|
82
82
|
font-weight: bolder;
|
|
83
83
|
}
|
|
84
84
|
code, kbd, samp, pre {
|
|
85
|
-
font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
86
|
-
font-feature-settings: var(--default-mono-font-feature-settings, normal);
|
|
87
|
-
font-variation-settings: var(--default-mono-font-variation-settings, normal);
|
|
85
|
+
font-family: var(--ncp-default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
|
|
86
|
+
font-feature-settings: var(--ncp-default-mono-font-feature-settings, normal);
|
|
87
|
+
font-variation-settings: var(--ncp-default-mono-font-variation-settings, normal);
|
|
88
88
|
font-size: 1em;
|
|
89
89
|
}
|
|
90
90
|
small {
|
|
@@ -193,18 +193,14 @@
|
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
195
|
@layer utilities {
|
|
196
|
-
|
|
196
|
+
.ncp\:\@container\/card-header {
|
|
197
197
|
container-type: inline-size;
|
|
198
198
|
container-name: card-header;
|
|
199
199
|
}
|
|
200
|
-
|
|
201
|
-
container-type: inline-size;
|
|
202
|
-
container-name: field-group;
|
|
203
|
-
}
|
|
204
|
-
.pointer-events-none {
|
|
200
|
+
.ncp\:pointer-events-none {
|
|
205
201
|
pointer-events: none;
|
|
206
202
|
}
|
|
207
|
-
.sr-only {
|
|
203
|
+
.ncp\:sr-only {
|
|
208
204
|
position: absolute;
|
|
209
205
|
width: 1px;
|
|
210
206
|
height: 1px;
|
|
@@ -215,792 +211,777 @@
|
|
|
215
211
|
white-space: nowrap;
|
|
216
212
|
border-width: 0;
|
|
217
213
|
}
|
|
218
|
-
.absolute {
|
|
214
|
+
.ncp\:absolute {
|
|
219
215
|
position: absolute;
|
|
220
216
|
}
|
|
221
|
-
.fixed {
|
|
217
|
+
.ncp\:fixed {
|
|
222
218
|
position: fixed;
|
|
223
219
|
}
|
|
224
|
-
.relative {
|
|
220
|
+
.ncp\:relative {
|
|
225
221
|
position: relative;
|
|
226
222
|
}
|
|
227
|
-
.inset-0 {
|
|
228
|
-
inset: calc(var(--spacing) * 0);
|
|
223
|
+
.ncp\:inset-0 {
|
|
224
|
+
inset: calc(var(--ncp-spacing) * 0);
|
|
229
225
|
}
|
|
230
|
-
.inset-x-0 {
|
|
231
|
-
inset-inline: calc(var(--spacing) * 0);
|
|
226
|
+
.ncp\:inset-x-0 {
|
|
227
|
+
inset-inline: calc(var(--ncp-spacing) * 0);
|
|
232
228
|
}
|
|
233
|
-
.inset-y-0 {
|
|
234
|
-
inset-block: calc(var(--spacing) * 0);
|
|
229
|
+
.ncp\:inset-y-0 {
|
|
230
|
+
inset-block: calc(var(--ncp-spacing) * 0);
|
|
235
231
|
}
|
|
236
|
-
.top-0 {
|
|
237
|
-
top: calc(var(--spacing) * 0);
|
|
232
|
+
.ncp\:top-0 {
|
|
233
|
+
top: calc(var(--ncp-spacing) * 0);
|
|
238
234
|
}
|
|
239
|
-
.top-1\.5 {
|
|
240
|
-
top: calc(var(--spacing) * 1.5);
|
|
235
|
+
.ncp\:top-1\.5 {
|
|
236
|
+
top: calc(var(--ncp-spacing) * 1.5);
|
|
241
237
|
}
|
|
242
|
-
.top-1\/2 {
|
|
238
|
+
.ncp\:top-1\/2 {
|
|
243
239
|
top: calc(1/2 * 100%);
|
|
244
240
|
}
|
|
245
|
-
.top-3\.5 {
|
|
246
|
-
top: calc(var(--spacing) * 3.5);
|
|
241
|
+
.ncp\:top-3\.5 {
|
|
242
|
+
top: calc(var(--ncp-spacing) * 3.5);
|
|
247
243
|
}
|
|
248
|
-
.top-4 {
|
|
249
|
-
top: calc(var(--spacing) * 4);
|
|
244
|
+
.ncp\:top-4 {
|
|
245
|
+
top: calc(var(--ncp-spacing) * 4);
|
|
250
246
|
}
|
|
251
|
-
.top-\[50\%\] {
|
|
247
|
+
.ncp\:top-\[50\%\] {
|
|
252
248
|
top: 50%;
|
|
253
249
|
}
|
|
254
|
-
.right-0 {
|
|
255
|
-
right: calc(var(--spacing) * 0);
|
|
250
|
+
.ncp\:right-0 {
|
|
251
|
+
right: calc(var(--ncp-spacing) * 0);
|
|
256
252
|
}
|
|
257
|
-
.right-1 {
|
|
258
|
-
right: calc(var(--spacing) * 1);
|
|
253
|
+
.ncp\:right-1 {
|
|
254
|
+
right: calc(var(--ncp-spacing) * 1);
|
|
259
255
|
}
|
|
260
|
-
.right-2 {
|
|
261
|
-
right: calc(var(--spacing) * 2);
|
|
256
|
+
.ncp\:right-2 {
|
|
257
|
+
right: calc(var(--ncp-spacing) * 2);
|
|
262
258
|
}
|
|
263
|
-
.right-3 {
|
|
264
|
-
right: calc(var(--spacing) * 3);
|
|
259
|
+
.ncp\:right-3 {
|
|
260
|
+
right: calc(var(--ncp-spacing) * 3);
|
|
265
261
|
}
|
|
266
|
-
.right-4 {
|
|
267
|
-
right: calc(var(--spacing) * 4);
|
|
262
|
+
.ncp\:right-4 {
|
|
263
|
+
right: calc(var(--ncp-spacing) * 4);
|
|
268
264
|
}
|
|
269
|
-
.bottom-0 {
|
|
270
|
-
bottom: calc(var(--spacing) * 0);
|
|
265
|
+
.ncp\:bottom-0 {
|
|
266
|
+
bottom: calc(var(--ncp-spacing) * 0);
|
|
271
267
|
}
|
|
272
|
-
.left-0 {
|
|
273
|
-
left: calc(var(--spacing) * 0);
|
|
268
|
+
.ncp\:left-0 {
|
|
269
|
+
left: calc(var(--ncp-spacing) * 0);
|
|
274
270
|
}
|
|
275
|
-
.left-2 {
|
|
276
|
-
left: calc(var(--spacing) * 2);
|
|
271
|
+
.ncp\:left-2 {
|
|
272
|
+
left: calc(var(--ncp-spacing) * 2);
|
|
277
273
|
}
|
|
278
|
-
.left-\[50\%\] {
|
|
274
|
+
.ncp\:left-\[50\%\] {
|
|
279
275
|
left: 50%;
|
|
280
276
|
}
|
|
281
|
-
.z-10 {
|
|
277
|
+
.ncp\:z-10 {
|
|
282
278
|
z-index: 10;
|
|
283
279
|
}
|
|
284
|
-
.z-20 {
|
|
280
|
+
.ncp\:z-20 {
|
|
285
281
|
z-index: 20;
|
|
286
282
|
}
|
|
287
|
-
.z-50 {
|
|
283
|
+
.ncp\:z-50 {
|
|
288
284
|
z-index: 50;
|
|
289
285
|
}
|
|
290
|
-
.col-start-2 {
|
|
286
|
+
.ncp\:col-start-2 {
|
|
291
287
|
grid-column-start: 2;
|
|
292
288
|
}
|
|
293
|
-
.row-span-2 {
|
|
289
|
+
.ncp\:row-span-2 {
|
|
294
290
|
grid-row: span 2 / span 2;
|
|
295
291
|
}
|
|
296
|
-
.row-start-1 {
|
|
292
|
+
.ncp\:row-start-1 {
|
|
297
293
|
grid-row-start: 1;
|
|
298
294
|
}
|
|
299
|
-
|
|
300
|
-
margin-inline: calc(var(--spacing) * -1);
|
|
295
|
+
.ncp\:-mx-1 {
|
|
296
|
+
margin-inline: calc(var(--ncp-spacing) * -1);
|
|
301
297
|
}
|
|
302
|
-
.mx-2 {
|
|
303
|
-
margin-inline: calc(var(--spacing) * 2);
|
|
298
|
+
.ncp\:mx-2 {
|
|
299
|
+
margin-inline: calc(var(--ncp-spacing) * 2);
|
|
304
300
|
}
|
|
305
|
-
.mx-3\.5 {
|
|
306
|
-
margin-inline: calc(var(--spacing) * 3.5);
|
|
301
|
+
.ncp\:mx-3\.5 {
|
|
302
|
+
margin-inline: calc(var(--ncp-spacing) * 3.5);
|
|
307
303
|
}
|
|
308
|
-
.mx-auto {
|
|
304
|
+
.ncp\:mx-auto {
|
|
309
305
|
margin-inline: auto;
|
|
310
306
|
}
|
|
311
|
-
|
|
312
|
-
margin-block: calc(var(--spacing) * -2);
|
|
307
|
+
.ncp\:-my-2 {
|
|
308
|
+
margin-block: calc(var(--ncp-spacing) * -2);
|
|
313
309
|
}
|
|
314
|
-
.my-1 {
|
|
315
|
-
margin-block: calc(var(--spacing) * 1);
|
|
310
|
+
.ncp\:my-1 {
|
|
311
|
+
margin-block: calc(var(--ncp-spacing) * 1);
|
|
316
312
|
}
|
|
317
|
-
.mt-4 {
|
|
318
|
-
margin-top: calc(var(--spacing) * 4);
|
|
313
|
+
.ncp\:mt-4 {
|
|
314
|
+
margin-top: calc(var(--ncp-spacing) * 4);
|
|
319
315
|
}
|
|
320
|
-
.mt-auto {
|
|
316
|
+
.ncp\:mt-auto {
|
|
321
317
|
margin-top: auto;
|
|
322
318
|
}
|
|
323
|
-
.mb-3 {
|
|
324
|
-
margin-bottom: calc(var(--spacing) * 3);
|
|
319
|
+
.ncp\:mb-3 {
|
|
320
|
+
margin-bottom: calc(var(--ncp-spacing) * 3);
|
|
325
321
|
}
|
|
326
|
-
.ml-4 {
|
|
327
|
-
margin-left: calc(var(--spacing) * 4);
|
|
322
|
+
.ncp\:ml-4 {
|
|
323
|
+
margin-left: calc(var(--ncp-spacing) * 4);
|
|
328
324
|
}
|
|
329
|
-
.ml-auto {
|
|
325
|
+
.ncp\:ml-auto {
|
|
330
326
|
margin-left: auto;
|
|
331
327
|
}
|
|
332
|
-
.line-clamp-1 {
|
|
328
|
+
.ncp\:line-clamp-1 {
|
|
333
329
|
overflow: hidden;
|
|
334
330
|
display: -webkit-box;
|
|
335
331
|
-webkit-box-orient: vertical;
|
|
336
332
|
-webkit-line-clamp: 1;
|
|
337
333
|
}
|
|
338
|
-
.block {
|
|
334
|
+
.ncp\:block {
|
|
339
335
|
display: block;
|
|
340
336
|
}
|
|
341
|
-
.flex {
|
|
337
|
+
.ncp\:flex {
|
|
342
338
|
display: flex;
|
|
343
339
|
}
|
|
344
|
-
.grid {
|
|
340
|
+
.ncp\:grid {
|
|
345
341
|
display: grid;
|
|
346
342
|
}
|
|
347
|
-
.hidden {
|
|
343
|
+
.ncp\:hidden {
|
|
348
344
|
display: none;
|
|
349
345
|
}
|
|
350
|
-
.inline {
|
|
351
|
-
display: inline;
|
|
352
|
-
}
|
|
353
|
-
.inline-flex {
|
|
346
|
+
.ncp\:inline-flex {
|
|
354
347
|
display: inline-flex;
|
|
355
348
|
}
|
|
356
|
-
.
|
|
357
|
-
display: table;
|
|
358
|
-
}
|
|
359
|
-
.table-caption {
|
|
360
|
-
display: table-caption;
|
|
361
|
-
}
|
|
362
|
-
.table-cell {
|
|
363
|
-
display: table-cell;
|
|
364
|
-
}
|
|
365
|
-
.table-row {
|
|
366
|
-
display: table-row;
|
|
367
|
-
}
|
|
368
|
-
.field-sizing-content {
|
|
349
|
+
.ncp\:field-sizing-content {
|
|
369
350
|
field-sizing: content;
|
|
370
351
|
}
|
|
371
|
-
.aspect-square {
|
|
352
|
+
.ncp\:aspect-square {
|
|
372
353
|
aspect-ratio: 1 / 1;
|
|
373
354
|
}
|
|
374
|
-
.size-2 {
|
|
375
|
-
width: calc(var(--spacing) * 2);
|
|
376
|
-
height: calc(var(--spacing) * 2);
|
|
355
|
+
.ncp\:size-2 {
|
|
356
|
+
width: calc(var(--ncp-spacing) * 2);
|
|
357
|
+
height: calc(var(--ncp-spacing) * 2);
|
|
377
358
|
}
|
|
378
|
-
.size-2\.5 {
|
|
379
|
-
width: calc(var(--spacing) * 2.5);
|
|
380
|
-
height: calc(var(--spacing) * 2.5);
|
|
359
|
+
.ncp\:size-2\.5 {
|
|
360
|
+
width: calc(var(--ncp-spacing) * 2.5);
|
|
361
|
+
height: calc(var(--ncp-spacing) * 2.5);
|
|
381
362
|
}
|
|
382
|
-
.size-3\.5 {
|
|
383
|
-
width: calc(var(--spacing) * 3.5);
|
|
384
|
-
height: calc(var(--spacing) * 3.5);
|
|
363
|
+
.ncp\:size-3\.5 {
|
|
364
|
+
width: calc(var(--ncp-spacing) * 3.5);
|
|
365
|
+
height: calc(var(--ncp-spacing) * 3.5);
|
|
385
366
|
}
|
|
386
|
-
.size-4 {
|
|
387
|
-
width: calc(var(--spacing) * 4);
|
|
388
|
-
height: calc(var(--spacing) * 4);
|
|
367
|
+
.ncp\:size-4 {
|
|
368
|
+
width: calc(var(--ncp-spacing) * 4);
|
|
369
|
+
height: calc(var(--ncp-spacing) * 4);
|
|
389
370
|
}
|
|
390
|
-
.size-7 {
|
|
391
|
-
width: calc(var(--spacing) * 7);
|
|
392
|
-
height: calc(var(--spacing) * 7);
|
|
371
|
+
.ncp\:size-7 {
|
|
372
|
+
width: calc(var(--ncp-spacing) * 7);
|
|
373
|
+
height: calc(var(--ncp-spacing) * 7);
|
|
393
374
|
}
|
|
394
|
-
.size-8 {
|
|
395
|
-
width: calc(var(--spacing) * 8);
|
|
396
|
-
height: calc(var(--spacing) * 8);
|
|
375
|
+
.ncp\:size-8 {
|
|
376
|
+
width: calc(var(--ncp-spacing) * 8);
|
|
377
|
+
height: calc(var(--ncp-spacing) * 8);
|
|
397
378
|
}
|
|
398
|
-
.size-9 {
|
|
399
|
-
width: calc(var(--spacing) * 9);
|
|
400
|
-
height: calc(var(--spacing) * 9);
|
|
379
|
+
.ncp\:size-9 {
|
|
380
|
+
width: calc(var(--ncp-spacing) * 9);
|
|
381
|
+
height: calc(var(--ncp-spacing) * 9);
|
|
401
382
|
}
|
|
402
|
-
.size-10 {
|
|
403
|
-
width: calc(var(--spacing) * 10);
|
|
404
|
-
height: calc(var(--spacing) * 10);
|
|
383
|
+
.ncp\:size-10 {
|
|
384
|
+
width: calc(var(--ncp-spacing) * 10);
|
|
385
|
+
height: calc(var(--ncp-spacing) * 10);
|
|
405
386
|
}
|
|
406
|
-
.h-4 {
|
|
407
|
-
height: calc(var(--spacing) * 4);
|
|
387
|
+
.ncp\:h-4 {
|
|
388
|
+
height: calc(var(--ncp-spacing) * 4);
|
|
408
389
|
}
|
|
409
|
-
.h-5 {
|
|
410
|
-
height: calc(var(--spacing) * 5);
|
|
390
|
+
.ncp\:h-5 {
|
|
391
|
+
height: calc(var(--ncp-spacing) * 5);
|
|
411
392
|
}
|
|
412
|
-
.h-7 {
|
|
413
|
-
height: calc(var(--spacing) * 7);
|
|
393
|
+
.ncp\:h-7 {
|
|
394
|
+
height: calc(var(--ncp-spacing) * 7);
|
|
414
395
|
}
|
|
415
|
-
.h-8 {
|
|
416
|
-
height: calc(var(--spacing) * 8);
|
|
396
|
+
.ncp\:h-8 {
|
|
397
|
+
height: calc(var(--ncp-spacing) * 8);
|
|
417
398
|
}
|
|
418
|
-
.h-9 {
|
|
419
|
-
height: calc(var(--spacing) * 9);
|
|
399
|
+
.ncp\:h-9 {
|
|
400
|
+
height: calc(var(--ncp-spacing) * 9);
|
|
420
401
|
}
|
|
421
|
-
.h-10 {
|
|
422
|
-
height: calc(var(--spacing) * 10);
|
|
402
|
+
.ncp\:h-10 {
|
|
403
|
+
height: calc(var(--ncp-spacing) * 10);
|
|
423
404
|
}
|
|
424
|
-
.h-12 {
|
|
425
|
-
height: calc(var(--spacing) * 12);
|
|
405
|
+
.ncp\:h-12 {
|
|
406
|
+
height: calc(var(--ncp-spacing) * 12);
|
|
426
407
|
}
|
|
427
|
-
.h-\[1\.15rem\] {
|
|
408
|
+
.ncp\:h-\[1\.15rem\] {
|
|
428
409
|
height: 1.15rem;
|
|
429
410
|
}
|
|
430
|
-
.h-\[var\(--radix-select-trigger-height\)\] {
|
|
411
|
+
.ncp\:h-\[var\(--radix-select-trigger-height\)\] {
|
|
431
412
|
height: var(--radix-select-trigger-height);
|
|
432
413
|
}
|
|
433
|
-
.h-auto {
|
|
414
|
+
.ncp\:h-auto {
|
|
434
415
|
height: auto;
|
|
435
416
|
}
|
|
436
|
-
.h-full {
|
|
417
|
+
.ncp\:h-full {
|
|
437
418
|
height: 100%;
|
|
438
419
|
}
|
|
439
|
-
.h-px {
|
|
420
|
+
.ncp\:h-px {
|
|
440
421
|
height: 1px;
|
|
441
422
|
}
|
|
442
|
-
.h-svh {
|
|
423
|
+
.ncp\:h-svh {
|
|
443
424
|
height: 100svh;
|
|
444
425
|
}
|
|
445
|
-
.max-h-\(--radix-dropdown-menu-content-available-height\) {
|
|
426
|
+
.ncp\:max-h-\(--radix-dropdown-menu-content-available-height\) {
|
|
446
427
|
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
447
428
|
}
|
|
448
|
-
.max-h-\(--radix-select-content-available-height\) {
|
|
429
|
+
.ncp\:max-h-\(--radix-select-content-available-height\) {
|
|
449
430
|
max-height: var(--radix-select-content-available-height);
|
|
450
431
|
}
|
|
451
|
-
.min-h-0 {
|
|
452
|
-
min-height: calc(var(--spacing) * 0);
|
|
432
|
+
.ncp\:min-h-0 {
|
|
433
|
+
min-height: calc(var(--ncp-spacing) * 0);
|
|
453
434
|
}
|
|
454
|
-
.min-h-4 {
|
|
455
|
-
min-height: calc(var(--spacing) * 4);
|
|
435
|
+
.ncp\:min-h-4 {
|
|
436
|
+
min-height: calc(var(--ncp-spacing) * 4);
|
|
456
437
|
}
|
|
457
|
-
.min-h-16 {
|
|
458
|
-
min-height: calc(var(--spacing) * 16);
|
|
438
|
+
.ncp\:min-h-16 {
|
|
439
|
+
min-height: calc(var(--ncp-spacing) * 16);
|
|
459
440
|
}
|
|
460
|
-
.min-h-svh {
|
|
441
|
+
.ncp\:min-h-svh {
|
|
461
442
|
min-height: 100svh;
|
|
462
443
|
}
|
|
463
|
-
.w-\(--sidebar-width\) {
|
|
444
|
+
.ncp\:w-\(--sidebar-width\) {
|
|
464
445
|
width: var(--sidebar-width);
|
|
465
446
|
}
|
|
466
|
-
.w-3\/4 {
|
|
447
|
+
.ncp\:w-3\/4 {
|
|
467
448
|
width: calc(3/4 * 100%);
|
|
468
449
|
}
|
|
469
|
-
.w-4 {
|
|
470
|
-
width: calc(var(--spacing) * 4);
|
|
450
|
+
.ncp\:w-4 {
|
|
451
|
+
width: calc(var(--ncp-spacing) * 4);
|
|
471
452
|
}
|
|
472
|
-
.w-5 {
|
|
473
|
-
width: calc(var(--spacing) * 5);
|
|
453
|
+
.ncp\:w-5 {
|
|
454
|
+
width: calc(var(--ncp-spacing) * 5);
|
|
474
455
|
}
|
|
475
|
-
.w-8 {
|
|
476
|
-
width: calc(var(--spacing) * 8);
|
|
456
|
+
.ncp\:w-8 {
|
|
457
|
+
width: calc(var(--ncp-spacing) * 8);
|
|
477
458
|
}
|
|
478
|
-
.w-auto {
|
|
459
|
+
.ncp\:w-auto {
|
|
479
460
|
width: auto;
|
|
480
461
|
}
|
|
481
|
-
.w-fit {
|
|
462
|
+
.ncp\:w-fit {
|
|
482
463
|
width: fit-content;
|
|
483
464
|
}
|
|
484
|
-
.w-full {
|
|
465
|
+
.ncp\:w-full {
|
|
485
466
|
width: 100%;
|
|
486
467
|
}
|
|
487
|
-
.max-w-\(--skeleton-width\) {
|
|
468
|
+
.ncp\:max-w-\(--skeleton-width\) {
|
|
488
469
|
max-width: var(--skeleton-width);
|
|
489
470
|
}
|
|
490
|
-
.max-w-\[calc\(100\%-2rem\)\] {
|
|
471
|
+
.ncp\:max-w-\[calc\(100\%-2rem\)\] {
|
|
491
472
|
max-width: calc(100% - 2rem);
|
|
492
473
|
}
|
|
493
|
-
.min-w-0 {
|
|
494
|
-
min-width: calc(var(--spacing) * 0);
|
|
474
|
+
.ncp\:min-w-0 {
|
|
475
|
+
min-width: calc(var(--ncp-spacing) * 0);
|
|
495
476
|
}
|
|
496
|
-
.min-w-5 {
|
|
497
|
-
min-width: calc(var(--spacing) * 5);
|
|
477
|
+
.ncp\:min-w-5 {
|
|
478
|
+
min-width: calc(var(--ncp-spacing) * 5);
|
|
498
479
|
}
|
|
499
|
-
.min-w-\[8rem\] {
|
|
480
|
+
.ncp\:min-w-\[8rem\] {
|
|
500
481
|
min-width: 8rem;
|
|
501
482
|
}
|
|
502
|
-
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
483
|
+
.ncp\:min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
503
484
|
min-width: var(--radix-select-trigger-width);
|
|
504
485
|
}
|
|
505
|
-
.flex-1 {
|
|
486
|
+
.ncp\:flex-1 {
|
|
506
487
|
flex: 1;
|
|
507
488
|
}
|
|
508
|
-
.shrink-0 {
|
|
489
|
+
.ncp\:shrink-0 {
|
|
509
490
|
flex-shrink: 0;
|
|
510
491
|
}
|
|
511
|
-
.caption-bottom {
|
|
492
|
+
.ncp\:caption-bottom {
|
|
512
493
|
caption-side: bottom;
|
|
513
494
|
}
|
|
514
|
-
.origin-\(--radix-dropdown-menu-content-transform-origin\) {
|
|
495
|
+
.ncp\:origin-\(--radix-dropdown-menu-content-transform-origin\) {
|
|
515
496
|
transform-origin: var(--radix-dropdown-menu-content-transform-origin);
|
|
516
497
|
}
|
|
517
|
-
.origin-\(--radix-select-content-transform-origin\) {
|
|
498
|
+
.ncp\:origin-\(--radix-select-content-transform-origin\) {
|
|
518
499
|
transform-origin: var(--radix-select-content-transform-origin);
|
|
519
500
|
}
|
|
520
|
-
.origin-\(--radix-tooltip-content-transform-origin\) {
|
|
501
|
+
.ncp\:origin-\(--radix-tooltip-content-transform-origin\) {
|
|
521
502
|
transform-origin: var(--radix-tooltip-content-transform-origin);
|
|
522
503
|
}
|
|
523
|
-
|
|
504
|
+
.ncp\:-translate-x-1\/2 {
|
|
524
505
|
--tw-translate-x: calc(calc(1/2 * 100%) * -1);
|
|
525
506
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
526
507
|
}
|
|
527
|
-
|
|
508
|
+
.ncp\:-translate-x-px {
|
|
528
509
|
--tw-translate-x: -1px;
|
|
529
510
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
530
511
|
}
|
|
531
|
-
.translate-x-\[-50\%\] {
|
|
512
|
+
.ncp\:translate-x-\[-50\%\] {
|
|
532
513
|
--tw-translate-x: -50%;
|
|
533
514
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
534
515
|
}
|
|
535
|
-
.translate-x-px {
|
|
516
|
+
.ncp\:translate-x-px {
|
|
536
517
|
--tw-translate-x: 1px;
|
|
537
518
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
538
519
|
}
|
|
539
|
-
.translate-y-\[-50\%\] {
|
|
520
|
+
.ncp\:translate-y-\[-50\%\] {
|
|
540
521
|
--tw-translate-y: -50%;
|
|
541
522
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
542
523
|
}
|
|
543
|
-
.translate-y-\[calc\(-50\%_-_2px\)\] {
|
|
524
|
+
.ncp\:translate-y-\[calc\(-50\%_-_2px\)\] {
|
|
544
525
|
--tw-translate-y: calc(-50% - 2px);
|
|
545
526
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
546
527
|
}
|
|
547
|
-
.rotate-45 {
|
|
528
|
+
.ncp\:rotate-45 {
|
|
548
529
|
rotate: 45deg;
|
|
549
530
|
}
|
|
550
|
-
.animate-in {
|
|
531
|
+
.ncp\:animate-in {
|
|
551
532
|
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,forwards);
|
|
552
533
|
}
|
|
553
|
-
.animate-pulse {
|
|
554
|
-
animation: var(--animate-pulse);
|
|
534
|
+
.ncp\:animate-pulse {
|
|
535
|
+
animation: var(--ncp-animate-pulse);
|
|
555
536
|
}
|
|
556
|
-
.cursor-default {
|
|
537
|
+
.ncp\:cursor-default {
|
|
557
538
|
cursor: default;
|
|
558
539
|
}
|
|
559
|
-
.scroll-m-20 {
|
|
560
|
-
scroll-margin: calc(var(--spacing) * 20);
|
|
540
|
+
.ncp\:scroll-m-20 {
|
|
541
|
+
scroll-margin: calc(var(--ncp-spacing) * 20);
|
|
561
542
|
}
|
|
562
|
-
.scroll-my-1 {
|
|
563
|
-
scroll-margin-block: calc(var(--spacing) * 1);
|
|
543
|
+
.ncp\:scroll-my-1 {
|
|
544
|
+
scroll-margin-block: calc(var(--ncp-spacing) * 1);
|
|
564
545
|
}
|
|
565
|
-
.list-disc {
|
|
546
|
+
.ncp\:list-disc {
|
|
566
547
|
list-style-type: disc;
|
|
567
548
|
}
|
|
568
|
-
.auto-rows-min {
|
|
549
|
+
.ncp\:auto-rows-min {
|
|
569
550
|
grid-auto-rows: min-content;
|
|
570
551
|
}
|
|
571
|
-
.grid-cols-\[0_1fr\] {
|
|
552
|
+
.ncp\:grid-cols-\[0_1fr\] {
|
|
572
553
|
grid-template-columns: 0 1fr;
|
|
573
554
|
}
|
|
574
|
-
.grid-rows-\[auto_auto\] {
|
|
555
|
+
.ncp\:grid-rows-\[auto_auto\] {
|
|
575
556
|
grid-template-rows: auto auto;
|
|
576
557
|
}
|
|
577
|
-
.flex-col {
|
|
558
|
+
.ncp\:flex-col {
|
|
578
559
|
flex-direction: column;
|
|
579
560
|
}
|
|
580
|
-
.flex-col-reverse {
|
|
561
|
+
.ncp\:flex-col-reverse {
|
|
581
562
|
flex-direction: column-reverse;
|
|
582
563
|
}
|
|
583
|
-
.flex-row {
|
|
564
|
+
.ncp\:flex-row {
|
|
584
565
|
flex-direction: row;
|
|
585
566
|
}
|
|
586
|
-
.flex-wrap {
|
|
567
|
+
.ncp\:flex-wrap {
|
|
587
568
|
flex-wrap: wrap;
|
|
588
569
|
}
|
|
589
|
-
.items-center {
|
|
570
|
+
.ncp\:items-center {
|
|
590
571
|
align-items: center;
|
|
591
572
|
}
|
|
592
|
-
.items-start {
|
|
573
|
+
.ncp\:items-start {
|
|
593
574
|
align-items: flex-start;
|
|
594
575
|
}
|
|
595
|
-
.justify-between {
|
|
576
|
+
.ncp\:justify-between {
|
|
596
577
|
justify-content: space-between;
|
|
597
578
|
}
|
|
598
|
-
.justify-center {
|
|
579
|
+
.ncp\:justify-center {
|
|
599
580
|
justify-content: center;
|
|
600
581
|
}
|
|
601
|
-
.justify-items-start {
|
|
582
|
+
.ncp\:justify-items-start {
|
|
602
583
|
justify-items: start;
|
|
603
584
|
}
|
|
604
|
-
.gap-1 {
|
|
605
|
-
gap: calc(var(--spacing) * 1);
|
|
585
|
+
.ncp\:gap-1 {
|
|
586
|
+
gap: calc(var(--ncp-spacing) * 1);
|
|
606
587
|
}
|
|
607
|
-
.gap-1\.5 {
|
|
608
|
-
gap: calc(var(--spacing) * 1.5);
|
|
588
|
+
.ncp\:gap-1\.5 {
|
|
589
|
+
gap: calc(var(--ncp-spacing) * 1.5);
|
|
609
590
|
}
|
|
610
|
-
.gap-2 {
|
|
611
|
-
gap: calc(var(--spacing) * 2);
|
|
591
|
+
.ncp\:gap-2 {
|
|
592
|
+
gap: calc(var(--ncp-spacing) * 2);
|
|
612
593
|
}
|
|
613
|
-
.gap-3 {
|
|
614
|
-
gap: calc(var(--spacing) * 3);
|
|
594
|
+
.ncp\:gap-3 {
|
|
595
|
+
gap: calc(var(--ncp-spacing) * 3);
|
|
615
596
|
}
|
|
616
|
-
.gap-4 {
|
|
617
|
-
gap: calc(var(--spacing) * 4);
|
|
597
|
+
.ncp\:gap-4 {
|
|
598
|
+
gap: calc(var(--ncp-spacing) * 4);
|
|
618
599
|
}
|
|
619
|
-
.gap-6 {
|
|
620
|
-
gap: calc(var(--spacing) * 6);
|
|
600
|
+
.ncp\:gap-6 {
|
|
601
|
+
gap: calc(var(--ncp-spacing) * 6);
|
|
621
602
|
}
|
|
622
|
-
.gap-7 {
|
|
623
|
-
gap: calc(var(--spacing) * 7);
|
|
603
|
+
.ncp\:gap-7 {
|
|
604
|
+
gap: calc(var(--ncp-spacing) * 7);
|
|
624
605
|
}
|
|
625
|
-
.gap-y-0\.5 {
|
|
626
|
-
row-gap: calc(var(--spacing) * 0.5);
|
|
606
|
+
.ncp\:gap-y-0\.5 {
|
|
607
|
+
row-gap: calc(var(--ncp-spacing) * 0.5);
|
|
627
608
|
}
|
|
628
|
-
.self-start {
|
|
609
|
+
.ncp\:self-start {
|
|
629
610
|
align-self: flex-start;
|
|
630
611
|
}
|
|
631
|
-
.justify-self-end {
|
|
612
|
+
.ncp\:justify-self-end {
|
|
632
613
|
justify-self: flex-end;
|
|
633
614
|
}
|
|
634
|
-
.overflow-auto {
|
|
615
|
+
.ncp\:overflow-auto {
|
|
635
616
|
overflow: auto;
|
|
636
617
|
}
|
|
637
|
-
.overflow-hidden {
|
|
618
|
+
.ncp\:overflow-hidden {
|
|
638
619
|
overflow: hidden;
|
|
639
620
|
}
|
|
640
|
-
.overflow-x-auto {
|
|
621
|
+
.ncp\:overflow-x-auto {
|
|
641
622
|
overflow-x: auto;
|
|
642
623
|
}
|
|
643
|
-
.overflow-x-hidden {
|
|
624
|
+
.ncp\:overflow-x-hidden {
|
|
644
625
|
overflow-x: hidden;
|
|
645
626
|
}
|
|
646
|
-
.overflow-y-auto {
|
|
627
|
+
.ncp\:overflow-y-auto {
|
|
647
628
|
overflow-y: auto;
|
|
648
629
|
}
|
|
649
|
-
.rounded-\[2px\] {
|
|
630
|
+
.ncp\:rounded-\[2px\] {
|
|
650
631
|
border-radius: 2px;
|
|
651
632
|
}
|
|
652
|
-
.rounded-full {
|
|
633
|
+
.ncp\:rounded-full {
|
|
653
634
|
border-radius: calc(infinity * 1px);
|
|
654
635
|
}
|
|
655
|
-
.rounded-lg {
|
|
636
|
+
.ncp\:rounded-lg {
|
|
656
637
|
border-radius: var(--radius);
|
|
657
638
|
}
|
|
658
|
-
.rounded-md {
|
|
639
|
+
.ncp\:rounded-md {
|
|
659
640
|
border-radius: calc(var(--radius) - 2px);
|
|
660
641
|
}
|
|
661
|
-
.rounded-sm {
|
|
642
|
+
.ncp\:rounded-sm {
|
|
662
643
|
border-radius: calc(var(--radius) - 4px);
|
|
663
644
|
}
|
|
664
|
-
.rounded-xl {
|
|
645
|
+
.ncp\:rounded-xl {
|
|
665
646
|
border-radius: calc(var(--radius) + 4px);
|
|
666
647
|
}
|
|
667
|
-
.rounded-xs {
|
|
668
|
-
border-radius: var(--radius-xs);
|
|
648
|
+
.ncp\:rounded-xs {
|
|
649
|
+
border-radius: var(--ncp-radius-xs);
|
|
669
650
|
}
|
|
670
|
-
.border {
|
|
651
|
+
.ncp\:border {
|
|
671
652
|
border-style: var(--tw-border-style);
|
|
672
653
|
border-width: 1px;
|
|
673
654
|
}
|
|
674
|
-
.border-t {
|
|
655
|
+
.ncp\:border-t {
|
|
675
656
|
border-top-style: var(--tw-border-style);
|
|
676
657
|
border-top-width: 1px;
|
|
677
658
|
}
|
|
678
|
-
.border-r {
|
|
659
|
+
.ncp\:border-r {
|
|
679
660
|
border-right-style: var(--tw-border-style);
|
|
680
661
|
border-right-width: 1px;
|
|
681
662
|
}
|
|
682
|
-
.border-b {
|
|
663
|
+
.ncp\:border-b {
|
|
683
664
|
border-bottom-style: var(--tw-border-style);
|
|
684
665
|
border-bottom-width: 1px;
|
|
685
666
|
}
|
|
686
|
-
.border-l {
|
|
667
|
+
.ncp\:border-l {
|
|
687
668
|
border-left-style: var(--tw-border-style);
|
|
688
669
|
border-left-width: 1px;
|
|
689
670
|
}
|
|
690
|
-
.border-\[\#ececec\] {
|
|
671
|
+
.ncp\:border-\[\#ececec\] {
|
|
691
672
|
border-color: #ececec;
|
|
692
673
|
}
|
|
693
|
-
.border-input {
|
|
674
|
+
.ncp\:border-input {
|
|
694
675
|
border-color: var(--input);
|
|
695
676
|
}
|
|
696
|
-
.border-sidebar-border {
|
|
677
|
+
.ncp\:border-sidebar-border {
|
|
697
678
|
border-color: var(--sidebar-border);
|
|
698
679
|
}
|
|
699
|
-
.border-transparent {
|
|
680
|
+
.ncp\:border-transparent {
|
|
700
681
|
border-color: transparent;
|
|
701
682
|
}
|
|
702
|
-
.bg-\[\#f9f9f9\] {
|
|
683
|
+
.ncp\:bg-\[\#f9f9f9\] {
|
|
703
684
|
background-color: #f9f9f9;
|
|
704
685
|
}
|
|
705
|
-
.bg-accent {
|
|
686
|
+
.ncp\:bg-accent {
|
|
706
687
|
background-color: var(--accent);
|
|
707
688
|
}
|
|
708
|
-
.bg-background {
|
|
689
|
+
.ncp\:bg-background {
|
|
709
690
|
background-color: var(--background);
|
|
710
691
|
}
|
|
711
|
-
.bg-black\/50 {
|
|
712
|
-
background-color: color-
|
|
692
|
+
.ncp\:bg-black\/50 {
|
|
693
|
+
background-color: var(--ncp-color-black);
|
|
713
694
|
@supports (color: color-mix(in lab, red, red)) {
|
|
714
|
-
background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
|
|
695
|
+
background-color: color-mix(in oklab, var(--ncp-color-black) 50%, transparent);
|
|
715
696
|
}
|
|
716
697
|
}
|
|
717
|
-
.bg-border {
|
|
698
|
+
.ncp\:bg-border {
|
|
718
699
|
background-color: var(--border);
|
|
719
700
|
}
|
|
720
|
-
.bg-card {
|
|
701
|
+
.ncp\:bg-card {
|
|
721
702
|
background-color: var(--card);
|
|
722
703
|
}
|
|
723
|
-
.bg-destructive {
|
|
704
|
+
.ncp\:bg-destructive {
|
|
724
705
|
background-color: var(--destructive);
|
|
725
706
|
}
|
|
726
|
-
.bg-foreground {
|
|
707
|
+
.ncp\:bg-foreground {
|
|
727
708
|
background-color: var(--foreground);
|
|
728
709
|
}
|
|
729
|
-
.bg-muted\/50 {
|
|
710
|
+
.ncp\:bg-muted\/50 {
|
|
730
711
|
background-color: var(--muted);
|
|
731
712
|
@supports (color: color-mix(in lab, red, red)) {
|
|
732
713
|
background-color: color-mix(in oklab, var(--muted) 50%, transparent);
|
|
733
714
|
}
|
|
734
715
|
}
|
|
735
|
-
.bg-popover {
|
|
716
|
+
.ncp\:bg-popover {
|
|
736
717
|
background-color: var(--popover);
|
|
737
718
|
}
|
|
738
|
-
.bg-primary {
|
|
719
|
+
.ncp\:bg-primary {
|
|
739
720
|
background-color: var(--primary);
|
|
740
721
|
}
|
|
741
|
-
.bg-secondary {
|
|
722
|
+
.ncp\:bg-secondary {
|
|
742
723
|
background-color: var(--secondary);
|
|
743
724
|
}
|
|
744
|
-
.bg-sidebar {
|
|
725
|
+
.ncp\:bg-sidebar {
|
|
745
726
|
background-color: var(--sidebar);
|
|
746
727
|
}
|
|
747
|
-
.bg-sidebar-border {
|
|
728
|
+
.ncp\:bg-sidebar-border {
|
|
748
729
|
background-color: var(--sidebar-border);
|
|
749
730
|
}
|
|
750
|
-
.bg-transparent {
|
|
731
|
+
.ncp\:bg-transparent {
|
|
751
732
|
background-color: transparent;
|
|
752
733
|
}
|
|
753
|
-
.bg-white {
|
|
754
|
-
background-color: var(--color-white);
|
|
734
|
+
.ncp\:bg-white {
|
|
735
|
+
background-color: var(--ncp-color-white);
|
|
755
736
|
}
|
|
756
|
-
.fill-current {
|
|
737
|
+
.ncp\:fill-current {
|
|
757
738
|
fill: currentcolor;
|
|
758
739
|
}
|
|
759
|
-
.fill-foreground {
|
|
740
|
+
.ncp\:fill-foreground {
|
|
760
741
|
fill: var(--foreground);
|
|
761
742
|
}
|
|
762
|
-
.p-0 {
|
|
763
|
-
padding: calc(var(--spacing) * 0);
|
|
743
|
+
.ncp\:p-0 {
|
|
744
|
+
padding: calc(var(--ncp-spacing) * 0);
|
|
764
745
|
}
|
|
765
|
-
.p-1 {
|
|
766
|
-
padding: calc(var(--spacing) * 1);
|
|
746
|
+
.ncp\:p-1 {
|
|
747
|
+
padding: calc(var(--ncp-spacing) * 1);
|
|
767
748
|
}
|
|
768
|
-
.p-2 {
|
|
769
|
-
padding: calc(var(--spacing) * 2);
|
|
749
|
+
.ncp\:p-2 {
|
|
750
|
+
padding: calc(var(--ncp-spacing) * 2);
|
|
770
751
|
}
|
|
771
|
-
.p-4 {
|
|
772
|
-
padding: calc(var(--spacing) * 4);
|
|
752
|
+
.ncp\:p-4 {
|
|
753
|
+
padding: calc(var(--ncp-spacing) * 4);
|
|
773
754
|
}
|
|
774
|
-
.p-6 {
|
|
775
|
-
padding: calc(var(--spacing) * 6);
|
|
755
|
+
.ncp\:p-6 {
|
|
756
|
+
padding: calc(var(--ncp-spacing) * 6);
|
|
776
757
|
}
|
|
777
|
-
.px-1 {
|
|
778
|
-
padding-inline: calc(var(--spacing) * 1);
|
|
758
|
+
.ncp\:px-1 {
|
|
759
|
+
padding-inline: calc(var(--ncp-spacing) * 1);
|
|
779
760
|
}
|
|
780
|
-
.px-2 {
|
|
781
|
-
padding-inline: calc(var(--spacing) * 2);
|
|
761
|
+
.ncp\:px-2 {
|
|
762
|
+
padding-inline: calc(var(--ncp-spacing) * 2);
|
|
782
763
|
}
|
|
783
|
-
.px-2\.5 {
|
|
784
|
-
padding-inline: calc(var(--spacing) * 2.5);
|
|
764
|
+
.ncp\:px-2\.5 {
|
|
765
|
+
padding-inline: calc(var(--ncp-spacing) * 2.5);
|
|
785
766
|
}
|
|
786
|
-
.px-3 {
|
|
787
|
-
padding-inline: calc(var(--spacing) * 3);
|
|
767
|
+
.ncp\:px-3 {
|
|
768
|
+
padding-inline: calc(var(--ncp-spacing) * 3);
|
|
788
769
|
}
|
|
789
|
-
.px-4 {
|
|
790
|
-
padding-inline: calc(var(--spacing) * 4);
|
|
770
|
+
.ncp\:px-4 {
|
|
771
|
+
padding-inline: calc(var(--ncp-spacing) * 4);
|
|
791
772
|
}
|
|
792
|
-
.px-6 {
|
|
793
|
-
padding-inline: calc(var(--spacing) * 6);
|
|
773
|
+
.ncp\:px-6 {
|
|
774
|
+
padding-inline: calc(var(--ncp-spacing) * 6);
|
|
794
775
|
}
|
|
795
|
-
.py-0\.5 {
|
|
796
|
-
padding-block: calc(var(--spacing) * 0.5);
|
|
776
|
+
.ncp\:py-0\.5 {
|
|
777
|
+
padding-block: calc(var(--ncp-spacing) * 0.5);
|
|
797
778
|
}
|
|
798
|
-
.py-1 {
|
|
799
|
-
padding-block: calc(var(--spacing) * 1);
|
|
779
|
+
.ncp\:py-1 {
|
|
780
|
+
padding-block: calc(var(--ncp-spacing) * 1);
|
|
800
781
|
}
|
|
801
|
-
.py-1\.5 {
|
|
802
|
-
padding-block: calc(var(--spacing) * 1.5);
|
|
782
|
+
.ncp\:py-1\.5 {
|
|
783
|
+
padding-block: calc(var(--ncp-spacing) * 1.5);
|
|
803
784
|
}
|
|
804
|
-
.py-2 {
|
|
805
|
-
padding-block: calc(var(--spacing) * 2);
|
|
785
|
+
.ncp\:py-2 {
|
|
786
|
+
padding-block: calc(var(--ncp-spacing) * 2);
|
|
806
787
|
}
|
|
807
|
-
.py-3 {
|
|
808
|
-
padding-block: calc(var(--spacing) * 3);
|
|
788
|
+
.ncp\:py-3 {
|
|
789
|
+
padding-block: calc(var(--ncp-spacing) * 3);
|
|
809
790
|
}
|
|
810
|
-
.py-6 {
|
|
811
|
-
padding-block: calc(var(--spacing) * 6);
|
|
791
|
+
.ncp\:py-6 {
|
|
792
|
+
padding-block: calc(var(--ncp-spacing) * 6);
|
|
812
793
|
}
|
|
813
|
-
.pr-2 {
|
|
814
|
-
padding-right: calc(var(--spacing) * 2);
|
|
794
|
+
.ncp\:pr-2 {
|
|
795
|
+
padding-right: calc(var(--ncp-spacing) * 2);
|
|
815
796
|
}
|
|
816
|
-
.pr-8 {
|
|
817
|
-
padding-right: calc(var(--spacing) * 8);
|
|
797
|
+
.ncp\:pr-8 {
|
|
798
|
+
padding-right: calc(var(--ncp-spacing) * 8);
|
|
818
799
|
}
|
|
819
|
-
.pl-2 {
|
|
820
|
-
padding-left: calc(var(--spacing) * 2);
|
|
800
|
+
.ncp\:pl-2 {
|
|
801
|
+
padding-left: calc(var(--ncp-spacing) * 2);
|
|
821
802
|
}
|
|
822
|
-
.pl-8 {
|
|
823
|
-
padding-left: calc(var(--spacing) * 8);
|
|
803
|
+
.ncp\:pl-8 {
|
|
804
|
+
padding-left: calc(var(--ncp-spacing) * 8);
|
|
824
805
|
}
|
|
825
|
-
.text-center {
|
|
806
|
+
.ncp\:text-center {
|
|
826
807
|
text-align: center;
|
|
827
808
|
}
|
|
828
|
-
.text-left {
|
|
809
|
+
.ncp\:text-left {
|
|
829
810
|
text-align: left;
|
|
830
811
|
}
|
|
831
|
-
.align-middle {
|
|
812
|
+
.ncp\:align-middle {
|
|
832
813
|
vertical-align: middle;
|
|
833
814
|
}
|
|
834
|
-
.text-2xl {
|
|
835
|
-
font-size: var(--text-2xl);
|
|
836
|
-
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
815
|
+
.ncp\:text-2xl {
|
|
816
|
+
font-size: var(--ncp-text-2xl);
|
|
817
|
+
line-height: var(--tw-leading, var(--ncp-text-2xl--line-height));
|
|
837
818
|
}
|
|
838
|
-
.text-3xl {
|
|
839
|
-
font-size: var(--text-3xl);
|
|
840
|
-
line-height: var(--tw-leading, var(--text-3xl--line-height));
|
|
819
|
+
.ncp\:text-3xl {
|
|
820
|
+
font-size: var(--ncp-text-3xl);
|
|
821
|
+
line-height: var(--tw-leading, var(--ncp-text-3xl--line-height));
|
|
841
822
|
}
|
|
842
|
-
.text-base {
|
|
843
|
-
font-size: var(--text-base);
|
|
844
|
-
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
823
|
+
.ncp\:text-base {
|
|
824
|
+
font-size: var(--ncp-text-base);
|
|
825
|
+
line-height: var(--tw-leading, var(--ncp-text-base--line-height));
|
|
845
826
|
}
|
|
846
|
-
.text-lg {
|
|
847
|
-
font-size: var(--text-lg);
|
|
848
|
-
line-height: var(--tw-leading, var(--text-lg--line-height));
|
|
827
|
+
.ncp\:text-lg {
|
|
828
|
+
font-size: var(--ncp-text-lg);
|
|
829
|
+
line-height: var(--tw-leading, var(--ncp-text-lg--line-height));
|
|
849
830
|
}
|
|
850
|
-
.text-sm {
|
|
851
|
-
font-size: var(--text-sm);
|
|
852
|
-
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
831
|
+
.ncp\:text-sm {
|
|
832
|
+
font-size: var(--ncp-text-sm);
|
|
833
|
+
line-height: var(--tw-leading, var(--ncp-text-sm--line-height));
|
|
853
834
|
}
|
|
854
|
-
.text-xl {
|
|
855
|
-
font-size: var(--text-xl);
|
|
856
|
-
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
835
|
+
.ncp\:text-xl {
|
|
836
|
+
font-size: var(--ncp-text-xl);
|
|
837
|
+
line-height: var(--tw-leading, var(--ncp-text-xl--line-height));
|
|
857
838
|
}
|
|
858
|
-
.text-xs {
|
|
859
|
-
font-size: var(--text-xs);
|
|
860
|
-
line-height: var(--tw-leading, var(--text-xs--line-height));
|
|
839
|
+
.ncp\:text-xs {
|
|
840
|
+
font-size: var(--ncp-text-xs);
|
|
841
|
+
line-height: var(--tw-leading, var(--ncp-text-xs--line-height));
|
|
861
842
|
}
|
|
862
|
-
.leading-7 {
|
|
863
|
-
--tw-leading: calc(var(--spacing) * 7);
|
|
864
|
-
line-height: calc(var(--spacing) * 7);
|
|
843
|
+
.ncp\:leading-7 {
|
|
844
|
+
--tw-leading: calc(var(--ncp-spacing) * 7);
|
|
845
|
+
line-height: calc(var(--ncp-spacing) * 7);
|
|
865
846
|
}
|
|
866
|
-
.leading-none {
|
|
847
|
+
.ncp\:leading-none {
|
|
867
848
|
--tw-leading: 1;
|
|
868
849
|
line-height: 1;
|
|
869
850
|
}
|
|
870
|
-
.leading-normal {
|
|
871
|
-
--tw-leading: var(--leading-normal);
|
|
872
|
-
line-height: var(--leading-normal);
|
|
851
|
+
.ncp\:leading-normal {
|
|
852
|
+
--tw-leading: var(--ncp-leading-normal);
|
|
853
|
+
line-height: var(--ncp-leading-normal);
|
|
873
854
|
}
|
|
874
|
-
.leading-snug {
|
|
875
|
-
--tw-leading: var(--leading-snug);
|
|
876
|
-
line-height: var(--leading-snug);
|
|
855
|
+
.ncp\:leading-snug {
|
|
856
|
+
--tw-leading: var(--ncp-leading-snug);
|
|
857
|
+
line-height: var(--ncp-leading-snug);
|
|
877
858
|
}
|
|
878
|
-
.font-extrabold {
|
|
879
|
-
--tw-font-weight: var(--font-weight-extrabold);
|
|
880
|
-
font-weight: var(--font-weight-extrabold);
|
|
859
|
+
.ncp\:font-extrabold {
|
|
860
|
+
--tw-font-weight: var(--ncp-font-weight-extrabold);
|
|
861
|
+
font-weight: var(--ncp-font-weight-extrabold);
|
|
881
862
|
}
|
|
882
|
-
.font-medium {
|
|
883
|
-
--tw-font-weight: var(--font-weight-medium);
|
|
884
|
-
font-weight: var(--font-weight-medium);
|
|
863
|
+
.ncp\:font-medium {
|
|
864
|
+
--tw-font-weight: var(--ncp-font-weight-medium);
|
|
865
|
+
font-weight: var(--ncp-font-weight-medium);
|
|
885
866
|
}
|
|
886
|
-
.font-normal {
|
|
887
|
-
--tw-font-weight: var(--font-weight-normal);
|
|
888
|
-
font-weight: var(--font-weight-normal);
|
|
867
|
+
.ncp\:font-normal {
|
|
868
|
+
--tw-font-weight: var(--ncp-font-weight-normal);
|
|
869
|
+
font-weight: var(--ncp-font-weight-normal);
|
|
889
870
|
}
|
|
890
|
-
.font-semibold {
|
|
891
|
-
--tw-font-weight: var(--font-weight-semibold);
|
|
892
|
-
font-weight: var(--font-weight-semibold);
|
|
871
|
+
.ncp\:font-semibold {
|
|
872
|
+
--tw-font-weight: var(--ncp-font-weight-semibold);
|
|
873
|
+
font-weight: var(--ncp-font-weight-semibold);
|
|
893
874
|
}
|
|
894
|
-
.tracking-tight {
|
|
895
|
-
--tw-tracking: var(--tracking-tight);
|
|
896
|
-
letter-spacing: var(--tracking-tight);
|
|
875
|
+
.ncp\:tracking-tight {
|
|
876
|
+
--tw-tracking: var(--ncp-tracking-tight);
|
|
877
|
+
letter-spacing: var(--ncp-tracking-tight);
|
|
897
878
|
}
|
|
898
|
-
.tracking-widest {
|
|
899
|
-
--tw-tracking: var(--tracking-widest);
|
|
900
|
-
letter-spacing: var(--tracking-widest);
|
|
879
|
+
.ncp\:tracking-widest {
|
|
880
|
+
--tw-tracking: var(--ncp-tracking-widest);
|
|
881
|
+
letter-spacing: var(--ncp-tracking-widest);
|
|
901
882
|
}
|
|
902
|
-
.text-balance {
|
|
883
|
+
.ncp\:text-balance {
|
|
903
884
|
text-wrap: balance;
|
|
904
885
|
}
|
|
905
|
-
.break-words {
|
|
886
|
+
.ncp\:break-words {
|
|
906
887
|
overflow-wrap: break-word;
|
|
907
888
|
}
|
|
908
|
-
.whitespace-nowrap {
|
|
889
|
+
.ncp\:whitespace-nowrap {
|
|
909
890
|
white-space: nowrap;
|
|
910
891
|
}
|
|
911
|
-
.whitespace-pre-wrap {
|
|
892
|
+
.ncp\:whitespace-pre-wrap {
|
|
912
893
|
white-space: pre-wrap;
|
|
913
894
|
}
|
|
914
|
-
.text-\[\#000000\] {
|
|
895
|
+
.ncp\:text-\[\#000000\] {
|
|
915
896
|
color: #000000;
|
|
916
897
|
}
|
|
917
|
-
.text-background {
|
|
898
|
+
.ncp\:text-background {
|
|
918
899
|
color: var(--background);
|
|
919
900
|
}
|
|
920
|
-
.text-card-foreground {
|
|
901
|
+
.ncp\:text-card-foreground {
|
|
921
902
|
color: var(--card-foreground);
|
|
922
903
|
}
|
|
923
|
-
.text-destructive {
|
|
904
|
+
.ncp\:text-destructive {
|
|
924
905
|
color: var(--destructive);
|
|
925
906
|
}
|
|
926
|
-
.text-foreground {
|
|
907
|
+
.ncp\:text-foreground {
|
|
927
908
|
color: var(--foreground);
|
|
928
909
|
}
|
|
929
|
-
.text-muted-foreground {
|
|
910
|
+
.ncp\:text-muted-foreground {
|
|
930
911
|
color: var(--muted-foreground);
|
|
931
912
|
}
|
|
932
|
-
.text-popover-foreground {
|
|
913
|
+
.ncp\:text-popover-foreground {
|
|
933
914
|
color: var(--popover-foreground);
|
|
934
915
|
}
|
|
935
|
-
.text-primary {
|
|
916
|
+
.ncp\:text-primary {
|
|
936
917
|
color: var(--primary);
|
|
937
918
|
}
|
|
938
|
-
.text-primary-foreground {
|
|
919
|
+
.ncp\:text-primary-foreground {
|
|
939
920
|
color: var(--primary-foreground);
|
|
940
921
|
}
|
|
941
|
-
.text-secondary-foreground {
|
|
922
|
+
.ncp\:text-secondary-foreground {
|
|
942
923
|
color: var(--secondary-foreground);
|
|
943
924
|
}
|
|
944
|
-
.text-sidebar-foreground {
|
|
925
|
+
.ncp\:text-sidebar-foreground {
|
|
945
926
|
color: var(--sidebar-foreground);
|
|
946
927
|
}
|
|
947
|
-
.text-sidebar-foreground\/70 {
|
|
928
|
+
.ncp\:text-sidebar-foreground\/70 {
|
|
948
929
|
color: var(--sidebar-foreground);
|
|
949
930
|
@supports (color: color-mix(in lab, red, red)) {
|
|
950
931
|
color: color-mix(in oklab, var(--sidebar-foreground) 70%, transparent);
|
|
951
932
|
}
|
|
952
933
|
}
|
|
953
|
-
.text-white {
|
|
954
|
-
color: var(--color-white);
|
|
934
|
+
.ncp\:text-white {
|
|
935
|
+
color: var(--ncp-color-white);
|
|
955
936
|
}
|
|
956
|
-
.tabular-nums {
|
|
937
|
+
.ncp\:tabular-nums {
|
|
957
938
|
--tw-numeric-spacing: tabular-nums;
|
|
958
939
|
font-variant-numeric: var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,);
|
|
959
940
|
}
|
|
960
|
-
.underline-offset-4 {
|
|
941
|
+
.ncp\:underline-offset-4 {
|
|
961
942
|
text-underline-offset: 4px;
|
|
962
943
|
}
|
|
963
|
-
.opacity-50 {
|
|
944
|
+
.ncp\:opacity-50 {
|
|
964
945
|
opacity: 50%;
|
|
965
946
|
}
|
|
966
|
-
.opacity-70 {
|
|
947
|
+
.ncp\:opacity-70 {
|
|
967
948
|
opacity: 70%;
|
|
968
949
|
}
|
|
969
|
-
.shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\] {
|
|
950
|
+
.ncp\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\] {
|
|
970
951
|
--tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-border)));
|
|
971
952
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
972
953
|
}
|
|
973
|
-
.shadow-lg {
|
|
954
|
+
.ncp\:shadow-lg {
|
|
974
955
|
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
975
956
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
976
957
|
}
|
|
977
|
-
.shadow-md {
|
|
958
|
+
.ncp\:shadow-md {
|
|
978
959
|
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
979
960
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
980
961
|
}
|
|
981
|
-
.shadow-none {
|
|
962
|
+
.ncp\:shadow-none {
|
|
982
963
|
--tw-shadow: 0 0 #0000;
|
|
983
964
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
984
965
|
}
|
|
985
|
-
.shadow-sm {
|
|
966
|
+
.ncp\:shadow-sm {
|
|
986
967
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
987
968
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
988
969
|
}
|
|
989
|
-
.shadow-xs {
|
|
970
|
+
.ncp\:shadow-xs {
|
|
990
971
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
991
972
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
992
973
|
}
|
|
993
|
-
.ring-0 {
|
|
974
|
+
.ncp\:ring-0 {
|
|
994
975
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
995
976
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
996
977
|
}
|
|
997
|
-
.ring-sidebar-ring {
|
|
978
|
+
.ncp\:ring-sidebar-ring {
|
|
998
979
|
--tw-ring-color: var(--sidebar-ring);
|
|
999
980
|
}
|
|
1000
|
-
.ring-offset-background {
|
|
981
|
+
.ncp\:ring-offset-background {
|
|
1001
982
|
--tw-ring-offset-color: var(--background);
|
|
1002
983
|
}
|
|
1003
|
-
.outline-hidden {
|
|
984
|
+
.ncp\:outline-hidden {
|
|
1004
985
|
--tw-outline-style: none;
|
|
1005
986
|
outline-style: none;
|
|
1006
987
|
@media (forced-colors: active) {
|
|
@@ -1008,292 +989,270 @@
|
|
|
1008
989
|
outline-offset: 2px;
|
|
1009
990
|
}
|
|
1010
991
|
}
|
|
1011
|
-
.
|
|
1012
|
-
outline-style: var(--tw-outline-style);
|
|
1013
|
-
outline-width: 1px;
|
|
1014
|
-
}
|
|
1015
|
-
.transition {
|
|
992
|
+
.ncp\:transition {
|
|
1016
993
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
1017
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1018
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
994
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
995
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1019
996
|
}
|
|
1020
|
-
.transition-\[color\,box-shadow\] {
|
|
997
|
+
.ncp\:transition-\[color\,box-shadow\] {
|
|
1021
998
|
transition-property: color,box-shadow;
|
|
1022
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1023
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
999
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
1000
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1024
1001
|
}
|
|
1025
|
-
.transition-\[left\,right\,width\] {
|
|
1002
|
+
.ncp\:transition-\[left\,right\,width\] {
|
|
1026
1003
|
transition-property: left,right,width;
|
|
1027
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1028
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1004
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
1005
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1029
1006
|
}
|
|
1030
|
-
.transition-\[margin\,opacity\] {
|
|
1007
|
+
.ncp\:transition-\[margin\,opacity\] {
|
|
1031
1008
|
transition-property: margin,opacity;
|
|
1032
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1033
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1009
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
1010
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1034
1011
|
}
|
|
1035
|
-
.transition-\[width\,height\,padding\] {
|
|
1012
|
+
.ncp\:transition-\[width\,height\,padding\] {
|
|
1036
1013
|
transition-property: width,height,padding;
|
|
1037
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1038
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1014
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
1015
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1039
1016
|
}
|
|
1040
|
-
.transition-\[width\] {
|
|
1017
|
+
.ncp\:transition-\[width\] {
|
|
1041
1018
|
transition-property: width;
|
|
1042
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1043
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1019
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
1020
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1044
1021
|
}
|
|
1045
|
-
.transition-all {
|
|
1022
|
+
.ncp\:transition-all {
|
|
1046
1023
|
transition-property: all;
|
|
1047
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1048
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1024
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
1025
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1049
1026
|
}
|
|
1050
|
-
.transition-colors {
|
|
1027
|
+
.ncp\:transition-colors {
|
|
1051
1028
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
|
|
1052
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1053
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1029
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
1030
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1054
1031
|
}
|
|
1055
|
-
.transition-opacity {
|
|
1032
|
+
.ncp\:transition-opacity {
|
|
1056
1033
|
transition-property: opacity;
|
|
1057
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1058
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1034
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
1035
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1059
1036
|
}
|
|
1060
|
-
.transition-transform {
|
|
1037
|
+
.ncp\:transition-transform {
|
|
1061
1038
|
transition-property: transform, translate, scale, rotate;
|
|
1062
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
1063
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
1039
|
+
transition-timing-function: var(--tw-ease, var(--ncp-default-transition-timing-function));
|
|
1040
|
+
transition-duration: var(--tw-duration, var(--ncp-default-transition-duration));
|
|
1064
1041
|
}
|
|
1065
|
-
.duration-200 {
|
|
1042
|
+
.ncp\:duration-200 {
|
|
1066
1043
|
--tw-duration: 200ms;
|
|
1067
1044
|
transition-duration: 200ms;
|
|
1068
1045
|
}
|
|
1069
|
-
.ease-in-out {
|
|
1070
|
-
--tw-ease: var(--ease-in-out);
|
|
1071
|
-
transition-timing-function: var(--ease-in-out);
|
|
1046
|
+
.ncp\:ease-in-out {
|
|
1047
|
+
--tw-ease: var(--ncp-ease-in-out);
|
|
1048
|
+
transition-timing-function: var(--ncp-ease-in-out);
|
|
1072
1049
|
}
|
|
1073
|
-
.ease-linear {
|
|
1050
|
+
.ncp\:ease-linear {
|
|
1074
1051
|
--tw-ease: linear;
|
|
1075
1052
|
transition-timing-function: linear;
|
|
1076
1053
|
}
|
|
1077
|
-
.fade-in-0 {
|
|
1054
|
+
.ncp\:fade-in-0 {
|
|
1078
1055
|
--tw-enter-opacity: calc(0/100);
|
|
1079
1056
|
--tw-enter-opacity: 0;
|
|
1080
1057
|
}
|
|
1081
|
-
.outline-none {
|
|
1058
|
+
.ncp\:outline-none {
|
|
1082
1059
|
--tw-outline-style: none;
|
|
1083
1060
|
outline-style: none;
|
|
1084
1061
|
}
|
|
1085
|
-
.select-none {
|
|
1062
|
+
.ncp\:select-none {
|
|
1086
1063
|
-webkit-user-select: none;
|
|
1087
1064
|
user-select: none;
|
|
1088
1065
|
}
|
|
1089
|
-
.zoom-in-95 {
|
|
1066
|
+
.ncp\:zoom-in-95 {
|
|
1090
1067
|
--tw-enter-scale: calc(95*1%);
|
|
1091
1068
|
--tw-enter-scale: .95;
|
|
1092
1069
|
}
|
|
1093
|
-
.
|
|
1094
|
-
|
|
1095
|
-
}
|
|
1096
|
-
.group-focus-within\/menu-item\:opacity-100 {
|
|
1097
|
-
&:is(:where(.group\/menu-item):focus-within *) {
|
|
1070
|
+
.ncp\:group-focus-within\/menu-item\:opacity-100 {
|
|
1071
|
+
&:is(:where(.ncp\:group\/menu-item):focus-within *) {
|
|
1098
1072
|
opacity: 100%;
|
|
1099
1073
|
}
|
|
1100
1074
|
}
|
|
1101
|
-
.group-hover\/menu-item\:opacity-100 {
|
|
1102
|
-
&:is(:where(.group\/menu-item):hover *) {
|
|
1075
|
+
.ncp\:group-hover\/menu-item\:opacity-100 {
|
|
1076
|
+
&:is(:where(.ncp\:group\/menu-item):hover *) {
|
|
1103
1077
|
@media (hover: hover) {
|
|
1104
1078
|
opacity: 100%;
|
|
1105
1079
|
}
|
|
1106
1080
|
}
|
|
1107
1081
|
}
|
|
1108
|
-
.group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8 {
|
|
1109
|
-
&:is(:where(.group\/menu-item):has(*[data-sidebar="menu-action"]) *) {
|
|
1110
|
-
padding-right: calc(var(--spacing) * 8);
|
|
1111
|
-
}
|
|
1112
|
-
}
|
|
1113
|
-
.group-has-\[\[data-orientation\=horizontal\]\]\/field\:text-balance {
|
|
1114
|
-
&:is(:where(.group\/field):has(*:is([data-orientation=horizontal])) *) {
|
|
1115
|
-
text-wrap: balance;
|
|
1082
|
+
.ncp\:group-has-data-\[sidebar\=menu-action\]\/menu-item\:pr-8 {
|
|
1083
|
+
&:is(:where(.ncp\:group\/menu-item):has(*[data-sidebar="menu-action"]) *) {
|
|
1084
|
+
padding-right: calc(var(--ncp-spacing) * 8);
|
|
1116
1085
|
}
|
|
1117
1086
|
}
|
|
1118
|
-
.group-data-\[collapsible\=icon\]\:-mt-8 {
|
|
1119
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1120
|
-
margin-top: calc(var(--spacing) * -8);
|
|
1087
|
+
.ncp\:group-data-\[collapsible\=icon\]\:-mt-8 {
|
|
1088
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1089
|
+
margin-top: calc(var(--ncp-spacing) * -8);
|
|
1121
1090
|
}
|
|
1122
1091
|
}
|
|
1123
|
-
.group-data-\[collapsible\=icon\]\:hidden {
|
|
1124
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1092
|
+
.ncp\:group-data-\[collapsible\=icon\]\:hidden {
|
|
1093
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1125
1094
|
display: none;
|
|
1126
1095
|
}
|
|
1127
1096
|
}
|
|
1128
|
-
.group-data-\[collapsible\=icon\]\:size-8\! {
|
|
1129
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1130
|
-
width: calc(var(--spacing) * 8) !important;
|
|
1131
|
-
height: calc(var(--spacing) * 8) !important;
|
|
1097
|
+
.ncp\:group-data-\[collapsible\=icon\]\:size-8\! {
|
|
1098
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1099
|
+
width: calc(var(--ncp-spacing) * 8) !important;
|
|
1100
|
+
height: calc(var(--ncp-spacing) * 8) !important;
|
|
1132
1101
|
}
|
|
1133
1102
|
}
|
|
1134
|
-
.group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\) {
|
|
1135
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1103
|
+
.ncp\:group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\) {
|
|
1104
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1136
1105
|
width: var(--sidebar-width-icon);
|
|
1137
1106
|
}
|
|
1138
1107
|
}
|
|
1139
|
-
.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\] {
|
|
1140
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1141
|
-
width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)));
|
|
1108
|
+
.ncp\:group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\] {
|
|
1109
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1110
|
+
width: calc(var(--sidebar-width-icon) + (calc(var(--ncp-spacing) * 4)));
|
|
1142
1111
|
}
|
|
1143
1112
|
}
|
|
1144
|
-
.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\] {
|
|
1145
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1146
|
-
width: calc(var(--sidebar-width-icon) + (calc(var(--spacing) * 4)) + 2px);
|
|
1113
|
+
.ncp\:group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\] {
|
|
1114
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1115
|
+
width: calc(var(--sidebar-width-icon) + (calc(var(--ncp-spacing) * 4)) + 2px);
|
|
1147
1116
|
}
|
|
1148
1117
|
}
|
|
1149
|
-
.group-data-\[collapsible\=icon\]\:overflow-hidden {
|
|
1150
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1118
|
+
.ncp\:group-data-\[collapsible\=icon\]\:overflow-hidden {
|
|
1119
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1151
1120
|
overflow: hidden;
|
|
1152
1121
|
}
|
|
1153
1122
|
}
|
|
1154
|
-
.group-data-\[collapsible\=icon\]\:p-0\! {
|
|
1155
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1156
|
-
padding: calc(var(--spacing) * 0) !important;
|
|
1123
|
+
.ncp\:group-data-\[collapsible\=icon\]\:p-0\! {
|
|
1124
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1125
|
+
padding: calc(var(--ncp-spacing) * 0) !important;
|
|
1157
1126
|
}
|
|
1158
1127
|
}
|
|
1159
|
-
.group-data-\[collapsible\=icon\]\:p-2\! {
|
|
1160
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1161
|
-
padding: calc(var(--spacing) * 2) !important;
|
|
1128
|
+
.ncp\:group-data-\[collapsible\=icon\]\:p-2\! {
|
|
1129
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1130
|
+
padding: calc(var(--ncp-spacing) * 2) !important;
|
|
1162
1131
|
}
|
|
1163
1132
|
}
|
|
1164
|
-
.group-data-\[collapsible\=icon\]\:opacity-0 {
|
|
1165
|
-
&:is(:where(.group)[data-collapsible="icon"] *) {
|
|
1133
|
+
.ncp\:group-data-\[collapsible\=icon\]\:opacity-0 {
|
|
1134
|
+
&:is(:where(.ncp\:group)[data-collapsible="icon"] *) {
|
|
1166
1135
|
opacity: 0%;
|
|
1167
1136
|
}
|
|
1168
1137
|
}
|
|
1169
|
-
.group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\] {
|
|
1170
|
-
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1138
|
+
.ncp\:group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\] {
|
|
1139
|
+
&:is(:where(.ncp\:group)[data-collapsible="offcanvas"] *) {
|
|
1171
1140
|
right: calc(var(--sidebar-width) * -1);
|
|
1172
1141
|
}
|
|
1173
1142
|
}
|
|
1174
|
-
.group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\] {
|
|
1175
|
-
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1143
|
+
.ncp\:group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\] {
|
|
1144
|
+
&:is(:where(.ncp\:group)[data-collapsible="offcanvas"] *) {
|
|
1176
1145
|
left: calc(var(--sidebar-width) * -1);
|
|
1177
1146
|
}
|
|
1178
1147
|
}
|
|
1179
|
-
.group-data-\[collapsible\=offcanvas\]\:w-0 {
|
|
1180
|
-
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1181
|
-
width: calc(var(--spacing) * 0);
|
|
1148
|
+
.ncp\:group-data-\[collapsible\=offcanvas\]\:w-0 {
|
|
1149
|
+
&:is(:where(.ncp\:group)[data-collapsible="offcanvas"] *) {
|
|
1150
|
+
width: calc(var(--ncp-spacing) * 0);
|
|
1182
1151
|
}
|
|
1183
1152
|
}
|
|
1184
|
-
.group-data-\[collapsible\=offcanvas\]\:translate-x-0 {
|
|
1185
|
-
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1186
|
-
--tw-translate-x: calc(var(--spacing) * 0);
|
|
1153
|
+
.ncp\:group-data-\[collapsible\=offcanvas\]\:translate-x-0 {
|
|
1154
|
+
&:is(:where(.ncp\:group)[data-collapsible="offcanvas"] *) {
|
|
1155
|
+
--tw-translate-x: calc(var(--ncp-spacing) * 0);
|
|
1187
1156
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1188
1157
|
}
|
|
1189
1158
|
}
|
|
1190
|
-
.group-data-\[disabled\=true\]\:pointer-events-none {
|
|
1191
|
-
&:is(:where(.group)[data-disabled="true"] *) {
|
|
1159
|
+
.ncp\:group-data-\[disabled\=true\]\:pointer-events-none {
|
|
1160
|
+
&:is(:where(.ncp\:group)[data-disabled="true"] *) {
|
|
1192
1161
|
pointer-events: none;
|
|
1193
1162
|
}
|
|
1194
1163
|
}
|
|
1195
|
-
.group-data-\[disabled\=true\]\:opacity-50 {
|
|
1196
|
-
&:is(:where(.group)[data-disabled="true"] *) {
|
|
1197
|
-
opacity: 50%;
|
|
1198
|
-
}
|
|
1199
|
-
}
|
|
1200
|
-
.group-data-\[disabled\=true\]\/field\:opacity-50 {
|
|
1201
|
-
&:is(:where(.group\/field)[data-disabled="true"] *) {
|
|
1164
|
+
.ncp\:group-data-\[disabled\=true\]\:opacity-50 {
|
|
1165
|
+
&:is(:where(.ncp\:group)[data-disabled="true"] *) {
|
|
1202
1166
|
opacity: 50%;
|
|
1203
1167
|
}
|
|
1204
1168
|
}
|
|
1205
|
-
.group-data-\[side\=left\]\:-right-4 {
|
|
1206
|
-
&:is(:where(.group)[data-side="left"] *) {
|
|
1207
|
-
right: calc(var(--spacing) * -4);
|
|
1169
|
+
.ncp\:group-data-\[side\=left\]\:-right-4 {
|
|
1170
|
+
&:is(:where(.ncp\:group)[data-side="left"] *) {
|
|
1171
|
+
right: calc(var(--ncp-spacing) * -4);
|
|
1208
1172
|
}
|
|
1209
1173
|
}
|
|
1210
|
-
.group-data-\[side\=left\]\:border-r {
|
|
1211
|
-
&:is(:where(.group)[data-side="left"] *) {
|
|
1174
|
+
.ncp\:group-data-\[side\=left\]\:border-r {
|
|
1175
|
+
&:is(:where(.ncp\:group)[data-side="left"] *) {
|
|
1212
1176
|
border-right-style: var(--tw-border-style);
|
|
1213
1177
|
border-right-width: 1px;
|
|
1214
1178
|
}
|
|
1215
1179
|
}
|
|
1216
|
-
.group-data-\[side\=right\]\:left-0 {
|
|
1217
|
-
&:is(:where(.group)[data-side="right"] *) {
|
|
1218
|
-
left: calc(var(--spacing) * 0);
|
|
1180
|
+
.ncp\:group-data-\[side\=right\]\:left-0 {
|
|
1181
|
+
&:is(:where(.ncp\:group)[data-side="right"] *) {
|
|
1182
|
+
left: calc(var(--ncp-spacing) * 0);
|
|
1219
1183
|
}
|
|
1220
1184
|
}
|
|
1221
|
-
.group-data-\[side\=right\]\:rotate-180 {
|
|
1222
|
-
&:is(:where(.group)[data-side="right"] *) {
|
|
1185
|
+
.ncp\:group-data-\[side\=right\]\:rotate-180 {
|
|
1186
|
+
&:is(:where(.ncp\:group)[data-side="right"] *) {
|
|
1223
1187
|
rotate: 180deg;
|
|
1224
1188
|
}
|
|
1225
1189
|
}
|
|
1226
|
-
.group-data-\[side\=right\]\:border-l {
|
|
1227
|
-
&:is(:where(.group)[data-side="right"] *) {
|
|
1190
|
+
.ncp\:group-data-\[side\=right\]\:border-l {
|
|
1191
|
+
&:is(:where(.ncp\:group)[data-side="right"] *) {
|
|
1228
1192
|
border-left-style: var(--tw-border-style);
|
|
1229
1193
|
border-left-width: 1px;
|
|
1230
1194
|
}
|
|
1231
1195
|
}
|
|
1232
|
-
.group-data-\[variant\=floating\]\:rounded-lg {
|
|
1233
|
-
&:is(:where(.group)[data-variant="floating"] *) {
|
|
1196
|
+
.ncp\:group-data-\[variant\=floating\]\:rounded-lg {
|
|
1197
|
+
&:is(:where(.ncp\:group)[data-variant="floating"] *) {
|
|
1234
1198
|
border-radius: var(--radius);
|
|
1235
1199
|
}
|
|
1236
1200
|
}
|
|
1237
|
-
.group-data-\[variant\=floating\]\:border {
|
|
1238
|
-
&:is(:where(.group)[data-variant="floating"] *) {
|
|
1201
|
+
.ncp\:group-data-\[variant\=floating\]\:border {
|
|
1202
|
+
&:is(:where(.ncp\:group)[data-variant="floating"] *) {
|
|
1239
1203
|
border-style: var(--tw-border-style);
|
|
1240
1204
|
border-width: 1px;
|
|
1241
1205
|
}
|
|
1242
1206
|
}
|
|
1243
|
-
.group-data-\[variant\=floating\]\:border-sidebar-border {
|
|
1244
|
-
&:is(:where(.group)[data-variant="floating"] *) {
|
|
1207
|
+
.ncp\:group-data-\[variant\=floating\]\:border-sidebar-border {
|
|
1208
|
+
&:is(:where(.ncp\:group)[data-variant="floating"] *) {
|
|
1245
1209
|
border-color: var(--sidebar-border);
|
|
1246
1210
|
}
|
|
1247
1211
|
}
|
|
1248
|
-
.group-data-\[variant\=floating\]\:shadow-sm {
|
|
1249
|
-
&:is(:where(.group)[data-variant="floating"] *) {
|
|
1212
|
+
.ncp\:group-data-\[variant\=floating\]\:shadow-sm {
|
|
1213
|
+
&:is(:where(.ncp\:group)[data-variant="floating"] *) {
|
|
1250
1214
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1251
1215
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1252
1216
|
}
|
|
1253
1217
|
}
|
|
1254
|
-
.
|
|
1255
|
-
&:is(:where(.
|
|
1256
|
-
margin-bottom: calc(var(--spacing) * -2);
|
|
1257
|
-
}
|
|
1258
|
-
}
|
|
1259
|
-
.peer-hover\/menu-button\:text-sidebar-accent-foreground {
|
|
1260
|
-
&:is(:where(.peer\/menu-button):hover ~ *) {
|
|
1218
|
+
.ncp\:peer-hover\/menu-button\:text-sidebar-accent-foreground {
|
|
1219
|
+
&:is(:where(.ncp\:peer\/menu-button):hover ~ *) {
|
|
1261
1220
|
@media (hover: hover) {
|
|
1262
1221
|
color: var(--sidebar-accent-foreground);
|
|
1263
1222
|
}
|
|
1264
1223
|
}
|
|
1265
1224
|
}
|
|
1266
|
-
.peer-disabled\:cursor-not-allowed {
|
|
1267
|
-
&:is(:where(.peer):disabled ~ *) {
|
|
1225
|
+
.ncp\:peer-disabled\:cursor-not-allowed {
|
|
1226
|
+
&:is(:where(.ncp\:peer):disabled ~ *) {
|
|
1268
1227
|
cursor: not-allowed;
|
|
1269
1228
|
}
|
|
1270
1229
|
}
|
|
1271
|
-
.peer-disabled\:opacity-50 {
|
|
1272
|
-
&:is(:where(.peer):disabled ~ *) {
|
|
1230
|
+
.ncp\:peer-disabled\:opacity-50 {
|
|
1231
|
+
&:is(:where(.ncp\:peer):disabled ~ *) {
|
|
1273
1232
|
opacity: 50%;
|
|
1274
1233
|
}
|
|
1275
1234
|
}
|
|
1276
|
-
.peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground {
|
|
1277
|
-
&:is(:where(.peer\/menu-button)[data-active="true"] ~ *) {
|
|
1235
|
+
.ncp\:peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground {
|
|
1236
|
+
&:is(:where(.ncp\:peer\/menu-button)[data-active="true"] ~ *) {
|
|
1278
1237
|
color: var(--sidebar-accent-foreground);
|
|
1279
1238
|
}
|
|
1280
1239
|
}
|
|
1281
|
-
.peer-data-\[size\=default\]\/menu-button\:top-1\.5 {
|
|
1282
|
-
&:is(:where(.peer\/menu-button)[data-size="default"] ~ *) {
|
|
1283
|
-
top: calc(var(--spacing) * 1.5);
|
|
1240
|
+
.ncp\:peer-data-\[size\=default\]\/menu-button\:top-1\.5 {
|
|
1241
|
+
&:is(:where(.ncp\:peer\/menu-button)[data-size="default"] ~ *) {
|
|
1242
|
+
top: calc(var(--ncp-spacing) * 1.5);
|
|
1284
1243
|
}
|
|
1285
1244
|
}
|
|
1286
|
-
.peer-data-\[size\=lg\]\/menu-button\:top-2\.5 {
|
|
1287
|
-
&:is(:where(.peer\/menu-button)[data-size="lg"] ~ *) {
|
|
1288
|
-
top: calc(var(--spacing) * 2.5);
|
|
1245
|
+
.ncp\:peer-data-\[size\=lg\]\/menu-button\:top-2\.5 {
|
|
1246
|
+
&:is(:where(.ncp\:peer\/menu-button)[data-size="lg"] ~ *) {
|
|
1247
|
+
top: calc(var(--ncp-spacing) * 2.5);
|
|
1289
1248
|
}
|
|
1290
1249
|
}
|
|
1291
|
-
.peer-data-\[size\=sm\]\/menu-button\:top-1 {
|
|
1292
|
-
&:is(:where(.peer\/menu-button)[data-size="sm"] ~ *) {
|
|
1293
|
-
top: calc(var(--spacing) * 1);
|
|
1250
|
+
.ncp\:peer-data-\[size\=sm\]\/menu-button\:top-1 {
|
|
1251
|
+
&:is(:where(.ncp\:peer\/menu-button)[data-size="sm"] ~ *) {
|
|
1252
|
+
top: calc(var(--ncp-spacing) * 1);
|
|
1294
1253
|
}
|
|
1295
1254
|
}
|
|
1296
|
-
.selection\:bg-primary {
|
|
1255
|
+
.ncp\:selection\:bg-primary {
|
|
1297
1256
|
& *::selection {
|
|
1298
1257
|
background-color: var(--primary);
|
|
1299
1258
|
}
|
|
@@ -1301,7 +1260,7 @@
|
|
|
1301
1260
|
background-color: var(--primary);
|
|
1302
1261
|
}
|
|
1303
1262
|
}
|
|
1304
|
-
.selection\:text-primary-foreground {
|
|
1263
|
+
.ncp\:selection\:text-primary-foreground {
|
|
1305
1264
|
& *::selection {
|
|
1306
1265
|
color: var(--primary-foreground);
|
|
1307
1266
|
}
|
|
@@ -1309,107 +1268,102 @@
|
|
|
1309
1268
|
color: var(--primary-foreground);
|
|
1310
1269
|
}
|
|
1311
1270
|
}
|
|
1312
|
-
.file\:inline-flex {
|
|
1271
|
+
.ncp\:file\:inline-flex {
|
|
1313
1272
|
&::file-selector-button {
|
|
1314
1273
|
display: inline-flex;
|
|
1315
1274
|
}
|
|
1316
1275
|
}
|
|
1317
|
-
.file\:h-7 {
|
|
1276
|
+
.ncp\:file\:h-7 {
|
|
1318
1277
|
&::file-selector-button {
|
|
1319
|
-
height: calc(var(--spacing) * 7);
|
|
1278
|
+
height: calc(var(--ncp-spacing) * 7);
|
|
1320
1279
|
}
|
|
1321
1280
|
}
|
|
1322
|
-
.file\:border-0 {
|
|
1281
|
+
.ncp\:file\:border-0 {
|
|
1323
1282
|
&::file-selector-button {
|
|
1324
1283
|
border-style: var(--tw-border-style);
|
|
1325
1284
|
border-width: 0px;
|
|
1326
1285
|
}
|
|
1327
1286
|
}
|
|
1328
|
-
.file\:bg-transparent {
|
|
1287
|
+
.ncp\:file\:bg-transparent {
|
|
1329
1288
|
&::file-selector-button {
|
|
1330
1289
|
background-color: transparent;
|
|
1331
1290
|
}
|
|
1332
1291
|
}
|
|
1333
|
-
.file\:text-sm {
|
|
1292
|
+
.ncp\:file\:text-sm {
|
|
1334
1293
|
&::file-selector-button {
|
|
1335
|
-
font-size: var(--text-sm);
|
|
1336
|
-
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
1294
|
+
font-size: var(--ncp-text-sm);
|
|
1295
|
+
line-height: var(--tw-leading, var(--ncp-text-sm--line-height));
|
|
1337
1296
|
}
|
|
1338
1297
|
}
|
|
1339
|
-
.file\:font-medium {
|
|
1298
|
+
.ncp\:file\:font-medium {
|
|
1340
1299
|
&::file-selector-button {
|
|
1341
|
-
--tw-font-weight: var(--font-weight-medium);
|
|
1342
|
-
font-weight: var(--font-weight-medium);
|
|
1300
|
+
--tw-font-weight: var(--ncp-font-weight-medium);
|
|
1301
|
+
font-weight: var(--ncp-font-weight-medium);
|
|
1343
1302
|
}
|
|
1344
1303
|
}
|
|
1345
|
-
.file\:text-foreground {
|
|
1304
|
+
.ncp\:file\:text-foreground {
|
|
1346
1305
|
&::file-selector-button {
|
|
1347
1306
|
color: var(--foreground);
|
|
1348
1307
|
}
|
|
1349
1308
|
}
|
|
1350
|
-
.placeholder\:text-muted-foreground {
|
|
1309
|
+
.ncp\:placeholder\:text-muted-foreground {
|
|
1351
1310
|
&::placeholder {
|
|
1352
1311
|
color: var(--muted-foreground);
|
|
1353
1312
|
}
|
|
1354
1313
|
}
|
|
1355
|
-
.after\:absolute {
|
|
1314
|
+
.ncp\:after\:absolute {
|
|
1356
1315
|
&::after {
|
|
1357
1316
|
content: var(--tw-content);
|
|
1358
1317
|
position: absolute;
|
|
1359
1318
|
}
|
|
1360
1319
|
}
|
|
1361
|
-
.after\:-inset-2 {
|
|
1320
|
+
.ncp\:after\:-inset-2 {
|
|
1362
1321
|
&::after {
|
|
1363
1322
|
content: var(--tw-content);
|
|
1364
|
-
inset: calc(var(--spacing) * -2);
|
|
1323
|
+
inset: calc(var(--ncp-spacing) * -2);
|
|
1365
1324
|
}
|
|
1366
1325
|
}
|
|
1367
|
-
.after\:inset-y-0 {
|
|
1326
|
+
.ncp\:after\:inset-y-0 {
|
|
1368
1327
|
&::after {
|
|
1369
1328
|
content: var(--tw-content);
|
|
1370
|
-
inset-block: calc(var(--spacing) * 0);
|
|
1329
|
+
inset-block: calc(var(--ncp-spacing) * 0);
|
|
1371
1330
|
}
|
|
1372
1331
|
}
|
|
1373
|
-
.after\:left-1\/2 {
|
|
1332
|
+
.ncp\:after\:left-1\/2 {
|
|
1374
1333
|
&::after {
|
|
1375
1334
|
content: var(--tw-content);
|
|
1376
1335
|
left: calc(1/2 * 100%);
|
|
1377
1336
|
}
|
|
1378
1337
|
}
|
|
1379
|
-
.after\:w-\[2px\] {
|
|
1338
|
+
.ncp\:after\:w-\[2px\] {
|
|
1380
1339
|
&::after {
|
|
1381
1340
|
content: var(--tw-content);
|
|
1382
1341
|
width: 2px;
|
|
1383
1342
|
}
|
|
1384
1343
|
}
|
|
1385
|
-
.group-data-\[collapsible\=offcanvas\]\:after\:left-full {
|
|
1386
|
-
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1344
|
+
.ncp\:group-data-\[collapsible\=offcanvas\]\:after\:left-full {
|
|
1345
|
+
&:is(:where(.ncp\:group)[data-collapsible="offcanvas"] *) {
|
|
1387
1346
|
&::after {
|
|
1388
1347
|
content: var(--tw-content);
|
|
1389
1348
|
left: 100%;
|
|
1390
1349
|
}
|
|
1391
1350
|
}
|
|
1392
1351
|
}
|
|
1393
|
-
.
|
|
1394
|
-
&:last-child {
|
|
1395
|
-
margin-top: calc(var(--spacing) * 0);
|
|
1396
|
-
}
|
|
1397
|
-
}
|
|
1398
|
-
.hover\:bg-\[\#f9f9f9\] {
|
|
1352
|
+
.ncp\:hover\:bg-\[\#f9f9f9\] {
|
|
1399
1353
|
&:hover {
|
|
1400
1354
|
@media (hover: hover) {
|
|
1401
1355
|
background-color: #f9f9f9;
|
|
1402
1356
|
}
|
|
1403
1357
|
}
|
|
1404
1358
|
}
|
|
1405
|
-
.hover\:bg-accent {
|
|
1359
|
+
.ncp\:hover\:bg-accent {
|
|
1406
1360
|
&:hover {
|
|
1407
1361
|
@media (hover: hover) {
|
|
1408
1362
|
background-color: var(--accent);
|
|
1409
1363
|
}
|
|
1410
1364
|
}
|
|
1411
1365
|
}
|
|
1412
|
-
.hover\:bg-destructive\/90 {
|
|
1366
|
+
.ncp\:hover\:bg-destructive\/90 {
|
|
1413
1367
|
&:hover {
|
|
1414
1368
|
@media (hover: hover) {
|
|
1415
1369
|
background-color: var(--destructive);
|
|
@@ -1419,7 +1373,7 @@
|
|
|
1419
1373
|
}
|
|
1420
1374
|
}
|
|
1421
1375
|
}
|
|
1422
|
-
.hover\:bg-muted\/50 {
|
|
1376
|
+
.ncp\:hover\:bg-muted\/50 {
|
|
1423
1377
|
&:hover {
|
|
1424
1378
|
@media (hover: hover) {
|
|
1425
1379
|
background-color: var(--muted);
|
|
@@ -1429,7 +1383,7 @@
|
|
|
1429
1383
|
}
|
|
1430
1384
|
}
|
|
1431
1385
|
}
|
|
1432
|
-
.hover\:bg-primary\/90 {
|
|
1386
|
+
.ncp\:hover\:bg-primary\/90 {
|
|
1433
1387
|
&:hover {
|
|
1434
1388
|
@media (hover: hover) {
|
|
1435
1389
|
background-color: var(--primary);
|
|
@@ -1439,7 +1393,7 @@
|
|
|
1439
1393
|
}
|
|
1440
1394
|
}
|
|
1441
1395
|
}
|
|
1442
|
-
.hover\:bg-secondary\/80 {
|
|
1396
|
+
.ncp\:hover\:bg-secondary\/80 {
|
|
1443
1397
|
&:hover {
|
|
1444
1398
|
@media (hover: hover) {
|
|
1445
1399
|
background-color: var(--secondary);
|
|
@@ -1449,49 +1403,49 @@
|
|
|
1449
1403
|
}
|
|
1450
1404
|
}
|
|
1451
1405
|
}
|
|
1452
|
-
.hover\:bg-sidebar-accent {
|
|
1406
|
+
.ncp\:hover\:bg-sidebar-accent {
|
|
1453
1407
|
&:hover {
|
|
1454
1408
|
@media (hover: hover) {
|
|
1455
1409
|
background-color: var(--sidebar-accent);
|
|
1456
1410
|
}
|
|
1457
1411
|
}
|
|
1458
1412
|
}
|
|
1459
|
-
.hover\:text-accent-foreground {
|
|
1413
|
+
.ncp\:hover\:text-accent-foreground {
|
|
1460
1414
|
&:hover {
|
|
1461
1415
|
@media (hover: hover) {
|
|
1462
1416
|
color: var(--accent-foreground);
|
|
1463
1417
|
}
|
|
1464
1418
|
}
|
|
1465
1419
|
}
|
|
1466
|
-
.hover\:text-foreground {
|
|
1420
|
+
.ncp\:hover\:text-foreground {
|
|
1467
1421
|
&:hover {
|
|
1468
1422
|
@media (hover: hover) {
|
|
1469
1423
|
color: var(--foreground);
|
|
1470
1424
|
}
|
|
1471
1425
|
}
|
|
1472
1426
|
}
|
|
1473
|
-
.hover\:text-sidebar-accent-foreground {
|
|
1427
|
+
.ncp\:hover\:text-sidebar-accent-foreground {
|
|
1474
1428
|
&:hover {
|
|
1475
1429
|
@media (hover: hover) {
|
|
1476
1430
|
color: var(--sidebar-accent-foreground);
|
|
1477
1431
|
}
|
|
1478
1432
|
}
|
|
1479
1433
|
}
|
|
1480
|
-
.hover\:underline {
|
|
1434
|
+
.ncp\:hover\:underline {
|
|
1481
1435
|
&:hover {
|
|
1482
1436
|
@media (hover: hover) {
|
|
1483
1437
|
text-decoration-line: underline;
|
|
1484
1438
|
}
|
|
1485
1439
|
}
|
|
1486
1440
|
}
|
|
1487
|
-
.hover\:opacity-100 {
|
|
1441
|
+
.ncp\:hover\:opacity-100 {
|
|
1488
1442
|
&:hover {
|
|
1489
1443
|
@media (hover: hover) {
|
|
1490
1444
|
opacity: 100%;
|
|
1491
1445
|
}
|
|
1492
1446
|
}
|
|
1493
1447
|
}
|
|
1494
|
-
.hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\] {
|
|
1448
|
+
.ncp\:hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\] {
|
|
1495
1449
|
&:hover {
|
|
1496
1450
|
@media (hover: hover) {
|
|
1497
1451
|
--tw-shadow: 0 0 0 1px var(--tw-shadow-color, hsl(var(--sidebar-accent)));
|
|
@@ -1499,16 +1453,16 @@
|
|
|
1499
1453
|
}
|
|
1500
1454
|
}
|
|
1501
1455
|
}
|
|
1502
|
-
.hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar {
|
|
1456
|
+
.ncp\:hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar {
|
|
1503
1457
|
&:hover {
|
|
1504
1458
|
@media (hover: hover) {
|
|
1505
|
-
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
1459
|
+
&:is(:where(.ncp\:group)[data-collapsible="offcanvas"] *) {
|
|
1506
1460
|
background-color: var(--sidebar);
|
|
1507
1461
|
}
|
|
1508
1462
|
}
|
|
1509
1463
|
}
|
|
1510
1464
|
}
|
|
1511
|
-
.hover\:after\:bg-sidebar-border {
|
|
1465
|
+
.ncp\:hover\:after\:bg-sidebar-border {
|
|
1512
1466
|
&:hover {
|
|
1513
1467
|
@media (hover: hover) {
|
|
1514
1468
|
&::after {
|
|
@@ -1518,34 +1472,34 @@
|
|
|
1518
1472
|
}
|
|
1519
1473
|
}
|
|
1520
1474
|
}
|
|
1521
|
-
.focus\:bg-accent {
|
|
1475
|
+
.ncp\:focus\:bg-accent {
|
|
1522
1476
|
&:focus {
|
|
1523
1477
|
background-color: var(--accent);
|
|
1524
1478
|
}
|
|
1525
1479
|
}
|
|
1526
|
-
.focus\:text-accent-foreground {
|
|
1480
|
+
.ncp\:focus\:text-accent-foreground {
|
|
1527
1481
|
&:focus {
|
|
1528
1482
|
color: var(--accent-foreground);
|
|
1529
1483
|
}
|
|
1530
1484
|
}
|
|
1531
|
-
.focus\:ring-2 {
|
|
1485
|
+
.ncp\:focus\:ring-2 {
|
|
1532
1486
|
&:focus {
|
|
1533
1487
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1534
1488
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1535
1489
|
}
|
|
1536
1490
|
}
|
|
1537
|
-
.focus\:ring-ring {
|
|
1491
|
+
.ncp\:focus\:ring-ring {
|
|
1538
1492
|
&:focus {
|
|
1539
1493
|
--tw-ring-color: var(--ring);
|
|
1540
1494
|
}
|
|
1541
1495
|
}
|
|
1542
|
-
.focus\:ring-offset-2 {
|
|
1496
|
+
.ncp\:focus\:ring-offset-2 {
|
|
1543
1497
|
&:focus {
|
|
1544
1498
|
--tw-ring-offset-width: 2px;
|
|
1545
1499
|
--tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1546
1500
|
}
|
|
1547
1501
|
}
|
|
1548
|
-
.focus\:outline-hidden {
|
|
1502
|
+
.ncp\:focus\:outline-hidden {
|
|
1549
1503
|
&:focus {
|
|
1550
1504
|
--tw-outline-style: none;
|
|
1551
1505
|
outline-style: none;
|
|
@@ -1555,24 +1509,24 @@
|
|
|
1555
1509
|
}
|
|
1556
1510
|
}
|
|
1557
1511
|
}
|
|
1558
|
-
.focus-visible\:border-ring {
|
|
1512
|
+
.ncp\:focus-visible\:border-ring {
|
|
1559
1513
|
&:focus-visible {
|
|
1560
1514
|
border-color: var(--ring);
|
|
1561
1515
|
}
|
|
1562
1516
|
}
|
|
1563
|
-
.focus-visible\:ring-2 {
|
|
1517
|
+
.ncp\:focus-visible\:ring-2 {
|
|
1564
1518
|
&:focus-visible {
|
|
1565
1519
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1566
1520
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1567
1521
|
}
|
|
1568
1522
|
}
|
|
1569
|
-
.focus-visible\:ring-\[3px\] {
|
|
1523
|
+
.ncp\:focus-visible\:ring-\[3px\] {
|
|
1570
1524
|
&:focus-visible {
|
|
1571
1525
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
|
|
1572
1526
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1573
1527
|
}
|
|
1574
1528
|
}
|
|
1575
|
-
.focus-visible\:ring-destructive\/20 {
|
|
1529
|
+
.ncp\:focus-visible\:ring-destructive\/20 {
|
|
1576
1530
|
&:focus-visible {
|
|
1577
1531
|
--tw-ring-color: var(--destructive);
|
|
1578
1532
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1580,7 +1534,7 @@
|
|
|
1580
1534
|
}
|
|
1581
1535
|
}
|
|
1582
1536
|
}
|
|
1583
|
-
.focus-visible\:ring-ring\/50 {
|
|
1537
|
+
.ncp\:focus-visible\:ring-ring\/50 {
|
|
1584
1538
|
&:focus-visible {
|
|
1585
1539
|
--tw-ring-color: var(--ring);
|
|
1586
1540
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1588,141 +1542,92 @@
|
|
|
1588
1542
|
}
|
|
1589
1543
|
}
|
|
1590
1544
|
}
|
|
1591
|
-
.active\:bg-sidebar-accent {
|
|
1545
|
+
.ncp\:active\:bg-sidebar-accent {
|
|
1592
1546
|
&:active {
|
|
1593
1547
|
background-color: var(--sidebar-accent);
|
|
1594
1548
|
}
|
|
1595
1549
|
}
|
|
1596
|
-
.active\:text-sidebar-accent-foreground {
|
|
1550
|
+
.ncp\:active\:text-sidebar-accent-foreground {
|
|
1597
1551
|
&:active {
|
|
1598
1552
|
color: var(--sidebar-accent-foreground);
|
|
1599
1553
|
}
|
|
1600
1554
|
}
|
|
1601
|
-
.disabled\:pointer-events-none {
|
|
1555
|
+
.ncp\:disabled\:pointer-events-none {
|
|
1602
1556
|
&:disabled {
|
|
1603
1557
|
pointer-events: none;
|
|
1604
1558
|
}
|
|
1605
1559
|
}
|
|
1606
|
-
.disabled\:cursor-not-allowed {
|
|
1560
|
+
.ncp\:disabled\:cursor-not-allowed {
|
|
1607
1561
|
&:disabled {
|
|
1608
1562
|
cursor: not-allowed;
|
|
1609
1563
|
}
|
|
1610
1564
|
}
|
|
1611
|
-
.disabled\:opacity-50 {
|
|
1565
|
+
.ncp\:disabled\:opacity-50 {
|
|
1612
1566
|
&:disabled {
|
|
1613
1567
|
opacity: 50%;
|
|
1614
1568
|
}
|
|
1615
1569
|
}
|
|
1616
|
-
.in-data-\[side\=left\]\:cursor-w-resize {
|
|
1570
|
+
.ncp\:in-data-\[side\=left\]\:cursor-w-resize {
|
|
1617
1571
|
:where(*[data-side="left"]) & {
|
|
1618
1572
|
cursor: w-resize;
|
|
1619
1573
|
}
|
|
1620
1574
|
}
|
|
1621
|
-
.in-data-\[side\=right\]\:cursor-e-resize {
|
|
1575
|
+
.ncp\:in-data-\[side\=right\]\:cursor-e-resize {
|
|
1622
1576
|
:where(*[data-side="right"]) & {
|
|
1623
1577
|
cursor: e-resize;
|
|
1624
1578
|
}
|
|
1625
1579
|
}
|
|
1626
|
-
.has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
|
|
1580
|
+
.ncp\:has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
|
|
1627
1581
|
&:has(*[data-slot="card-action"]) {
|
|
1628
1582
|
grid-template-columns: 1fr auto;
|
|
1629
1583
|
}
|
|
1630
1584
|
}
|
|
1631
|
-
.has-data-\[
|
|
1632
|
-
&:has(*[data-state="checked"]) {
|
|
1633
|
-
border-color: var(--primary);
|
|
1634
|
-
}
|
|
1635
|
-
}
|
|
1636
|
-
.has-data-\[state\=checked\]\:bg-primary\/5 {
|
|
1637
|
-
&:has(*[data-state="checked"]) {
|
|
1638
|
-
background-color: var(--primary);
|
|
1639
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1640
|
-
background-color: color-mix(in oklab, var(--primary) 5%, transparent);
|
|
1641
|
-
}
|
|
1642
|
-
}
|
|
1643
|
-
}
|
|
1644
|
-
.has-data-\[variant\=inset\]\:bg-sidebar {
|
|
1585
|
+
.ncp\:has-data-\[variant\=inset\]\:bg-sidebar {
|
|
1645
1586
|
&:has(*[data-variant="inset"]) {
|
|
1646
1587
|
background-color: var(--sidebar);
|
|
1647
1588
|
}
|
|
1648
1589
|
}
|
|
1649
|
-
.has-\[
|
|
1650
|
-
&:has(>[data-slot=checkbox-group]) {
|
|
1651
|
-
gap: calc(var(--spacing) * 3);
|
|
1652
|
-
}
|
|
1653
|
-
}
|
|
1654
|
-
.has-\[\>\[data-slot\=field-content\]\]\:items-start {
|
|
1655
|
-
&:has(>[data-slot=field-content]) {
|
|
1656
|
-
align-items: flex-start;
|
|
1657
|
-
}
|
|
1658
|
-
}
|
|
1659
|
-
.has-\[\>\[data-slot\=field\]\]\:w-full {
|
|
1660
|
-
&:has(>[data-slot=field]) {
|
|
1661
|
-
width: 100%;
|
|
1662
|
-
}
|
|
1663
|
-
}
|
|
1664
|
-
.has-\[\>\[data-slot\=field\]\]\:flex-col {
|
|
1665
|
-
&:has(>[data-slot=field]) {
|
|
1666
|
-
flex-direction: column;
|
|
1667
|
-
}
|
|
1668
|
-
}
|
|
1669
|
-
.has-\[\>\[data-slot\=field\]\]\:rounded-md {
|
|
1670
|
-
&:has(>[data-slot=field]) {
|
|
1671
|
-
border-radius: calc(var(--radius) - 2px);
|
|
1672
|
-
}
|
|
1673
|
-
}
|
|
1674
|
-
.has-\[\>\[data-slot\=field\]\]\:border {
|
|
1675
|
-
&:has(>[data-slot=field]) {
|
|
1676
|
-
border-style: var(--tw-border-style);
|
|
1677
|
-
border-width: 1px;
|
|
1678
|
-
}
|
|
1679
|
-
}
|
|
1680
|
-
.has-\[\>\[data-slot\=radio-group\]\]\:gap-3 {
|
|
1681
|
-
&:has(>[data-slot=radio-group]) {
|
|
1682
|
-
gap: calc(var(--spacing) * 3);
|
|
1683
|
-
}
|
|
1684
|
-
}
|
|
1685
|
-
.has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\] {
|
|
1590
|
+
.ncp\:has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\] {
|
|
1686
1591
|
&:has(>svg) {
|
|
1687
1592
|
grid-template-columns: calc(var(--spacing) * 4) 1fr;
|
|
1688
1593
|
}
|
|
1689
1594
|
}
|
|
1690
|
-
.has-\[\>svg\]\:gap-x-3 {
|
|
1595
|
+
.ncp\:has-\[\>svg\]\:gap-x-3 {
|
|
1691
1596
|
&:has(>svg) {
|
|
1692
|
-
column-gap: calc(var(--spacing) * 3);
|
|
1597
|
+
column-gap: calc(var(--ncp-spacing) * 3);
|
|
1693
1598
|
}
|
|
1694
1599
|
}
|
|
1695
|
-
.has-\[\>svg\]\:px-2\.5 {
|
|
1600
|
+
.ncp\:has-\[\>svg\]\:px-2\.5 {
|
|
1696
1601
|
&:has(>svg) {
|
|
1697
|
-
padding-inline: calc(var(--spacing) * 2.5);
|
|
1602
|
+
padding-inline: calc(var(--ncp-spacing) * 2.5);
|
|
1698
1603
|
}
|
|
1699
1604
|
}
|
|
1700
|
-
.has-\[\>svg\]\:px-3 {
|
|
1605
|
+
.ncp\:has-\[\>svg\]\:px-3 {
|
|
1701
1606
|
&:has(>svg) {
|
|
1702
|
-
padding-inline: calc(var(--spacing) * 3);
|
|
1607
|
+
padding-inline: calc(var(--ncp-spacing) * 3);
|
|
1703
1608
|
}
|
|
1704
1609
|
}
|
|
1705
|
-
.has-\[\>svg\]\:px-4 {
|
|
1610
|
+
.ncp\:has-\[\>svg\]\:px-4 {
|
|
1706
1611
|
&:has(>svg) {
|
|
1707
|
-
padding-inline: calc(var(--spacing) * 4);
|
|
1612
|
+
padding-inline: calc(var(--ncp-spacing) * 4);
|
|
1708
1613
|
}
|
|
1709
1614
|
}
|
|
1710
|
-
.aria-disabled\:pointer-events-none {
|
|
1615
|
+
.ncp\:aria-disabled\:pointer-events-none {
|
|
1711
1616
|
&[aria-disabled="true"] {
|
|
1712
1617
|
pointer-events: none;
|
|
1713
1618
|
}
|
|
1714
1619
|
}
|
|
1715
|
-
.aria-disabled\:opacity-50 {
|
|
1620
|
+
.ncp\:aria-disabled\:opacity-50 {
|
|
1716
1621
|
&[aria-disabled="true"] {
|
|
1717
1622
|
opacity: 50%;
|
|
1718
1623
|
}
|
|
1719
1624
|
}
|
|
1720
|
-
.aria-invalid\:border-destructive {
|
|
1625
|
+
.ncp\:aria-invalid\:border-destructive {
|
|
1721
1626
|
&[aria-invalid="true"] {
|
|
1722
1627
|
border-color: var(--destructive);
|
|
1723
1628
|
}
|
|
1724
1629
|
}
|
|
1725
|
-
.aria-invalid\:ring-destructive\/20 {
|
|
1630
|
+
.ncp\:aria-invalid\:ring-destructive\/20 {
|
|
1726
1631
|
&[aria-invalid="true"] {
|
|
1727
1632
|
--tw-ring-color: var(--destructive);
|
|
1728
1633
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1730,122 +1635,117 @@
|
|
|
1730
1635
|
}
|
|
1731
1636
|
}
|
|
1732
1637
|
}
|
|
1733
|
-
.data-\[active\=true\]\:bg-sidebar-accent {
|
|
1638
|
+
.ncp\:data-\[active\=true\]\:bg-sidebar-accent {
|
|
1734
1639
|
&[data-active="true"] {
|
|
1735
1640
|
background-color: var(--sidebar-accent);
|
|
1736
1641
|
}
|
|
1737
1642
|
}
|
|
1738
|
-
.data-\[active\=true\]\:font-medium {
|
|
1643
|
+
.ncp\:data-\[active\=true\]\:font-medium {
|
|
1739
1644
|
&[data-active="true"] {
|
|
1740
|
-
--tw-font-weight: var(--font-weight-medium);
|
|
1741
|
-
font-weight: var(--font-weight-medium);
|
|
1645
|
+
--tw-font-weight: var(--ncp-font-weight-medium);
|
|
1646
|
+
font-weight: var(--ncp-font-weight-medium);
|
|
1742
1647
|
}
|
|
1743
1648
|
}
|
|
1744
|
-
.data-\[active\=true\]\:text-sidebar-accent-foreground {
|
|
1649
|
+
.ncp\:data-\[active\=true\]\:text-sidebar-accent-foreground {
|
|
1745
1650
|
&[data-active="true"] {
|
|
1746
1651
|
color: var(--sidebar-accent-foreground);
|
|
1747
1652
|
}
|
|
1748
1653
|
}
|
|
1749
|
-
.data-\[disabled\]\:pointer-events-none {
|
|
1654
|
+
.ncp\:data-\[disabled\]\:pointer-events-none {
|
|
1750
1655
|
&[data-disabled] {
|
|
1751
1656
|
pointer-events: none;
|
|
1752
1657
|
}
|
|
1753
1658
|
}
|
|
1754
|
-
.data-\[disabled\]\:opacity-50 {
|
|
1659
|
+
.ncp\:data-\[disabled\]\:opacity-50 {
|
|
1755
1660
|
&[data-disabled] {
|
|
1756
1661
|
opacity: 50%;
|
|
1757
1662
|
}
|
|
1758
1663
|
}
|
|
1759
|
-
.data-\[inset\]\:pl-8 {
|
|
1664
|
+
.ncp\:data-\[inset\]\:pl-8 {
|
|
1760
1665
|
&[data-inset] {
|
|
1761
|
-
padding-left: calc(var(--spacing) * 8);
|
|
1666
|
+
padding-left: calc(var(--ncp-spacing) * 8);
|
|
1762
1667
|
}
|
|
1763
1668
|
}
|
|
1764
|
-
.data-\[
|
|
1765
|
-
&[data-invalid="true"] {
|
|
1766
|
-
color: var(--destructive);
|
|
1767
|
-
}
|
|
1768
|
-
}
|
|
1769
|
-
.data-\[orientation\=horizontal\]\:h-px {
|
|
1669
|
+
.ncp\:data-\[orientation\=horizontal\]\:h-px {
|
|
1770
1670
|
&[data-orientation="horizontal"] {
|
|
1771
1671
|
height: 1px;
|
|
1772
1672
|
}
|
|
1773
1673
|
}
|
|
1774
|
-
.data-\[orientation\=horizontal\]\:w-full {
|
|
1674
|
+
.ncp\:data-\[orientation\=horizontal\]\:w-full {
|
|
1775
1675
|
&[data-orientation="horizontal"] {
|
|
1776
1676
|
width: 100%;
|
|
1777
1677
|
}
|
|
1778
1678
|
}
|
|
1779
|
-
.data-\[orientation\=vertical\]\:h-full {
|
|
1679
|
+
.ncp\:data-\[orientation\=vertical\]\:h-full {
|
|
1780
1680
|
&[data-orientation="vertical"] {
|
|
1781
1681
|
height: 100%;
|
|
1782
1682
|
}
|
|
1783
1683
|
}
|
|
1784
|
-
.data-\[orientation\=vertical\]\:w-px {
|
|
1684
|
+
.ncp\:data-\[orientation\=vertical\]\:w-px {
|
|
1785
1685
|
&[data-orientation="vertical"] {
|
|
1786
1686
|
width: 1px;
|
|
1787
1687
|
}
|
|
1788
1688
|
}
|
|
1789
|
-
.data-\[placeholder\]\:text-muted-foreground {
|
|
1689
|
+
.ncp\:data-\[placeholder\]\:text-muted-foreground {
|
|
1790
1690
|
&[data-placeholder] {
|
|
1791
1691
|
color: var(--muted-foreground);
|
|
1792
1692
|
}
|
|
1793
1693
|
}
|
|
1794
|
-
.data-\[side\=bottom\]\:translate-y-1 {
|
|
1694
|
+
.ncp\:data-\[side\=bottom\]\:translate-y-1 {
|
|
1795
1695
|
&[data-side="bottom"] {
|
|
1796
|
-
--tw-translate-y: calc(var(--spacing) * 1);
|
|
1696
|
+
--tw-translate-y: calc(var(--ncp-spacing) * 1);
|
|
1797
1697
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1798
1698
|
}
|
|
1799
1699
|
}
|
|
1800
|
-
.data-\[side\=bottom\]\:slide-in-from-top-2 {
|
|
1700
|
+
.ncp\:data-\[side\=bottom\]\:slide-in-from-top-2 {
|
|
1801
1701
|
&[data-side="bottom"] {
|
|
1802
1702
|
--tw-enter-translate-y: calc(2*var(--spacing)*-1);
|
|
1803
1703
|
}
|
|
1804
1704
|
}
|
|
1805
|
-
.data-\[side\=left\]\:-translate-x-1 {
|
|
1705
|
+
.ncp\:data-\[side\=left\]\:-translate-x-1 {
|
|
1806
1706
|
&[data-side="left"] {
|
|
1807
|
-
--tw-translate-x: calc(var(--spacing) * -1);
|
|
1707
|
+
--tw-translate-x: calc(var(--ncp-spacing) * -1);
|
|
1808
1708
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1809
1709
|
}
|
|
1810
1710
|
}
|
|
1811
|
-
.data-\[side\=left\]\:slide-in-from-right-2 {
|
|
1711
|
+
.ncp\:data-\[side\=left\]\:slide-in-from-right-2 {
|
|
1812
1712
|
&[data-side="left"] {
|
|
1813
1713
|
--tw-enter-translate-x: calc(2*var(--spacing));
|
|
1814
1714
|
}
|
|
1815
1715
|
}
|
|
1816
|
-
.data-\[side\=right\]\:translate-x-1 {
|
|
1716
|
+
.ncp\:data-\[side\=right\]\:translate-x-1 {
|
|
1817
1717
|
&[data-side="right"] {
|
|
1818
|
-
--tw-translate-x: calc(var(--spacing) * 1);
|
|
1718
|
+
--tw-translate-x: calc(var(--ncp-spacing) * 1);
|
|
1819
1719
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1820
1720
|
}
|
|
1821
1721
|
}
|
|
1822
|
-
.data-\[side\=right\]\:slide-in-from-left-2 {
|
|
1722
|
+
.ncp\:data-\[side\=right\]\:slide-in-from-left-2 {
|
|
1823
1723
|
&[data-side="right"] {
|
|
1824
1724
|
--tw-enter-translate-x: calc(2*var(--spacing)*-1);
|
|
1825
1725
|
}
|
|
1826
1726
|
}
|
|
1827
|
-
.data-\[side\=top\]\:-translate-y-1 {
|
|
1727
|
+
.ncp\:data-\[side\=top\]\:-translate-y-1 {
|
|
1828
1728
|
&[data-side="top"] {
|
|
1829
|
-
--tw-translate-y: calc(var(--spacing) * -1);
|
|
1729
|
+
--tw-translate-y: calc(var(--ncp-spacing) * -1);
|
|
1830
1730
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1831
1731
|
}
|
|
1832
1732
|
}
|
|
1833
|
-
.data-\[side\=top\]\:slide-in-from-bottom-2 {
|
|
1733
|
+
.ncp\:data-\[side\=top\]\:slide-in-from-bottom-2 {
|
|
1834
1734
|
&[data-side="top"] {
|
|
1835
1735
|
--tw-enter-translate-y: calc(2*var(--spacing));
|
|
1836
1736
|
}
|
|
1837
1737
|
}
|
|
1838
|
-
.data-\[size\=default\]\:h-9 {
|
|
1738
|
+
.ncp\:data-\[size\=default\]\:h-9 {
|
|
1839
1739
|
&[data-size="default"] {
|
|
1840
|
-
height: calc(var(--spacing) * 9);
|
|
1740
|
+
height: calc(var(--ncp-spacing) * 9);
|
|
1841
1741
|
}
|
|
1842
1742
|
}
|
|
1843
|
-
.data-\[size\=sm\]\:h-8 {
|
|
1743
|
+
.ncp\:data-\[size\=sm\]\:h-8 {
|
|
1844
1744
|
&[data-size="sm"] {
|
|
1845
|
-
height: calc(var(--spacing) * 8);
|
|
1745
|
+
height: calc(var(--ncp-spacing) * 8);
|
|
1846
1746
|
}
|
|
1847
1747
|
}
|
|
1848
|
-
|
|
1748
|
+
.ncp\:\*\:data-\[slot\=alert-description\]\:text-destructive\/90 {
|
|
1849
1749
|
:is(& > *) {
|
|
1850
1750
|
&[data-slot="alert-description"] {
|
|
1851
1751
|
color: var(--destructive);
|
|
@@ -1855,12 +1755,7 @@
|
|
|
1855
1755
|
}
|
|
1856
1756
|
}
|
|
1857
1757
|
}
|
|
1858
|
-
.data-\[slot\=
|
|
1859
|
-
&[data-slot="checkbox-group"] {
|
|
1860
|
-
gap: calc(var(--spacing) * 3);
|
|
1861
|
-
}
|
|
1862
|
-
}
|
|
1863
|
-
.\*\:data-\[slot\=select-value\]\:line-clamp-1 {
|
|
1758
|
+
.ncp\:\*\:data-\[slot\=select-value\]\:line-clamp-1 {
|
|
1864
1759
|
:is(& > *) {
|
|
1865
1760
|
&[data-slot="select-value"] {
|
|
1866
1761
|
overflow: hidden;
|
|
@@ -1870,150 +1765,150 @@
|
|
|
1870
1765
|
}
|
|
1871
1766
|
}
|
|
1872
1767
|
}
|
|
1873
|
-
|
|
1768
|
+
.ncp\:\*\:data-\[slot\=select-value\]\:flex {
|
|
1874
1769
|
:is(& > *) {
|
|
1875
1770
|
&[data-slot="select-value"] {
|
|
1876
1771
|
display: flex;
|
|
1877
1772
|
}
|
|
1878
1773
|
}
|
|
1879
1774
|
}
|
|
1880
|
-
|
|
1775
|
+
.ncp\:\*\:data-\[slot\=select-value\]\:items-center {
|
|
1881
1776
|
:is(& > *) {
|
|
1882
1777
|
&[data-slot="select-value"] {
|
|
1883
1778
|
align-items: center;
|
|
1884
1779
|
}
|
|
1885
1780
|
}
|
|
1886
1781
|
}
|
|
1887
|
-
|
|
1782
|
+
.ncp\:\*\:data-\[slot\=select-value\]\:gap-2 {
|
|
1888
1783
|
:is(& > *) {
|
|
1889
1784
|
&[data-slot="select-value"] {
|
|
1890
|
-
gap: calc(var(--spacing) * 2);
|
|
1785
|
+
gap: calc(var(--ncp-spacing) * 2);
|
|
1891
1786
|
}
|
|
1892
1787
|
}
|
|
1893
1788
|
}
|
|
1894
|
-
.data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\] {
|
|
1789
|
+
.ncp\:data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\] {
|
|
1895
1790
|
&[data-state="checked"] {
|
|
1896
1791
|
--tw-translate-x: calc(100% - 2px);
|
|
1897
1792
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1898
1793
|
}
|
|
1899
1794
|
}
|
|
1900
|
-
.data-\[state\=checked\]\:bg-primary {
|
|
1795
|
+
.ncp\:data-\[state\=checked\]\:bg-primary {
|
|
1901
1796
|
&[data-state="checked"] {
|
|
1902
1797
|
background-color: var(--primary);
|
|
1903
1798
|
}
|
|
1904
1799
|
}
|
|
1905
|
-
.data-\[state\=closed\]\:animate-out {
|
|
1800
|
+
.ncp\:data-\[state\=closed\]\:animate-out {
|
|
1906
1801
|
&[data-state="closed"] {
|
|
1907
1802
|
animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,forwards);
|
|
1908
1803
|
}
|
|
1909
1804
|
}
|
|
1910
|
-
.data-\[state\=closed\]\:duration-300 {
|
|
1805
|
+
.ncp\:data-\[state\=closed\]\:duration-300 {
|
|
1911
1806
|
&[data-state="closed"] {
|
|
1912
1807
|
--tw-duration: 300ms;
|
|
1913
1808
|
transition-duration: 300ms;
|
|
1914
1809
|
}
|
|
1915
1810
|
}
|
|
1916
|
-
.data-\[state\=closed\]\:fade-out-0 {
|
|
1811
|
+
.ncp\:data-\[state\=closed\]\:fade-out-0 {
|
|
1917
1812
|
&[data-state="closed"] {
|
|
1918
1813
|
--tw-exit-opacity: calc(0/100);
|
|
1919
1814
|
--tw-exit-opacity: 0;
|
|
1920
1815
|
}
|
|
1921
1816
|
}
|
|
1922
|
-
.data-\[state\=closed\]\:zoom-out-95 {
|
|
1817
|
+
.ncp\:data-\[state\=closed\]\:zoom-out-95 {
|
|
1923
1818
|
&[data-state="closed"] {
|
|
1924
1819
|
--tw-exit-scale: calc(95*1%);
|
|
1925
1820
|
--tw-exit-scale: .95;
|
|
1926
1821
|
}
|
|
1927
1822
|
}
|
|
1928
|
-
.data-\[state\=closed\]\:slide-out-to-bottom {
|
|
1823
|
+
.ncp\:data-\[state\=closed\]\:slide-out-to-bottom {
|
|
1929
1824
|
&[data-state="closed"] {
|
|
1930
1825
|
--tw-exit-translate-y: 100%;
|
|
1931
1826
|
}
|
|
1932
1827
|
}
|
|
1933
|
-
.data-\[state\=closed\]\:slide-out-to-left {
|
|
1828
|
+
.ncp\:data-\[state\=closed\]\:slide-out-to-left {
|
|
1934
1829
|
&[data-state="closed"] {
|
|
1935
1830
|
--tw-exit-translate-x: -100%;
|
|
1936
1831
|
}
|
|
1937
1832
|
}
|
|
1938
|
-
.data-\[state\=closed\]\:slide-out-to-right {
|
|
1833
|
+
.ncp\:data-\[state\=closed\]\:slide-out-to-right {
|
|
1939
1834
|
&[data-state="closed"] {
|
|
1940
1835
|
--tw-exit-translate-x: 100%;
|
|
1941
1836
|
}
|
|
1942
1837
|
}
|
|
1943
|
-
.data-\[state\=closed\]\:slide-out-to-top {
|
|
1838
|
+
.ncp\:data-\[state\=closed\]\:slide-out-to-top {
|
|
1944
1839
|
&[data-state="closed"] {
|
|
1945
1840
|
--tw-exit-translate-y: -100%;
|
|
1946
1841
|
}
|
|
1947
1842
|
}
|
|
1948
|
-
.data-\[state\=open\]\:animate-in {
|
|
1843
|
+
.ncp\:data-\[state\=open\]\:animate-in {
|
|
1949
1844
|
&[data-state="open"] {
|
|
1950
1845
|
animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,forwards);
|
|
1951
1846
|
}
|
|
1952
1847
|
}
|
|
1953
|
-
.data-\[state\=open\]\:bg-accent {
|
|
1848
|
+
.ncp\:data-\[state\=open\]\:bg-accent {
|
|
1954
1849
|
&[data-state="open"] {
|
|
1955
1850
|
background-color: var(--accent);
|
|
1956
1851
|
}
|
|
1957
1852
|
}
|
|
1958
|
-
.data-\[state\=open\]\:bg-secondary {
|
|
1853
|
+
.ncp\:data-\[state\=open\]\:bg-secondary {
|
|
1959
1854
|
&[data-state="open"] {
|
|
1960
1855
|
background-color: var(--secondary);
|
|
1961
1856
|
}
|
|
1962
1857
|
}
|
|
1963
|
-
.data-\[state\=open\]\:text-accent-foreground {
|
|
1858
|
+
.ncp\:data-\[state\=open\]\:text-accent-foreground {
|
|
1964
1859
|
&[data-state="open"] {
|
|
1965
1860
|
color: var(--accent-foreground);
|
|
1966
1861
|
}
|
|
1967
1862
|
}
|
|
1968
|
-
.data-\[state\=open\]\:text-muted-foreground {
|
|
1863
|
+
.ncp\:data-\[state\=open\]\:text-muted-foreground {
|
|
1969
1864
|
&[data-state="open"] {
|
|
1970
1865
|
color: var(--muted-foreground);
|
|
1971
1866
|
}
|
|
1972
1867
|
}
|
|
1973
|
-
.data-\[state\=open\]\:opacity-100 {
|
|
1868
|
+
.ncp\:data-\[state\=open\]\:opacity-100 {
|
|
1974
1869
|
&[data-state="open"] {
|
|
1975
1870
|
opacity: 100%;
|
|
1976
1871
|
}
|
|
1977
1872
|
}
|
|
1978
|
-
.data-\[state\=open\]\:duration-500 {
|
|
1873
|
+
.ncp\:data-\[state\=open\]\:duration-500 {
|
|
1979
1874
|
&[data-state="open"] {
|
|
1980
1875
|
--tw-duration: 500ms;
|
|
1981
1876
|
transition-duration: 500ms;
|
|
1982
1877
|
}
|
|
1983
1878
|
}
|
|
1984
|
-
.data-\[state\=open\]\:fade-in-0 {
|
|
1879
|
+
.ncp\:data-\[state\=open\]\:fade-in-0 {
|
|
1985
1880
|
&[data-state="open"] {
|
|
1986
1881
|
--tw-enter-opacity: calc(0/100);
|
|
1987
1882
|
--tw-enter-opacity: 0;
|
|
1988
1883
|
}
|
|
1989
1884
|
}
|
|
1990
|
-
.data-\[state\=open\]\:zoom-in-95 {
|
|
1885
|
+
.ncp\:data-\[state\=open\]\:zoom-in-95 {
|
|
1991
1886
|
&[data-state="open"] {
|
|
1992
1887
|
--tw-enter-scale: calc(95*1%);
|
|
1993
1888
|
--tw-enter-scale: .95;
|
|
1994
1889
|
}
|
|
1995
1890
|
}
|
|
1996
|
-
.data-\[state\=open\]\:slide-in-from-bottom {
|
|
1891
|
+
.ncp\:data-\[state\=open\]\:slide-in-from-bottom {
|
|
1997
1892
|
&[data-state="open"] {
|
|
1998
1893
|
--tw-enter-translate-y: 100%;
|
|
1999
1894
|
}
|
|
2000
1895
|
}
|
|
2001
|
-
.data-\[state\=open\]\:slide-in-from-left {
|
|
1896
|
+
.ncp\:data-\[state\=open\]\:slide-in-from-left {
|
|
2002
1897
|
&[data-state="open"] {
|
|
2003
1898
|
--tw-enter-translate-x: -100%;
|
|
2004
1899
|
}
|
|
2005
1900
|
}
|
|
2006
|
-
.data-\[state\=open\]\:slide-in-from-right {
|
|
1901
|
+
.ncp\:data-\[state\=open\]\:slide-in-from-right {
|
|
2007
1902
|
&[data-state="open"] {
|
|
2008
1903
|
--tw-enter-translate-x: 100%;
|
|
2009
1904
|
}
|
|
2010
1905
|
}
|
|
2011
|
-
.data-\[state\=open\]\:slide-in-from-top {
|
|
1906
|
+
.ncp\:data-\[state\=open\]\:slide-in-from-top {
|
|
2012
1907
|
&[data-state="open"] {
|
|
2013
1908
|
--tw-enter-translate-y: -100%;
|
|
2014
1909
|
}
|
|
2015
1910
|
}
|
|
2016
|
-
.data-\[state\=open\]\:hover\:bg-sidebar-accent {
|
|
1911
|
+
.ncp\:data-\[state\=open\]\:hover\:bg-sidebar-accent {
|
|
2017
1912
|
&[data-state="open"] {
|
|
2018
1913
|
&:hover {
|
|
2019
1914
|
@media (hover: hover) {
|
|
@@ -2022,7 +1917,7 @@
|
|
|
2022
1917
|
}
|
|
2023
1918
|
}
|
|
2024
1919
|
}
|
|
2025
|
-
.data-\[state\=open\]\:hover\:text-sidebar-accent-foreground {
|
|
1920
|
+
.ncp\:data-\[state\=open\]\:hover\:text-sidebar-accent-foreground {
|
|
2026
1921
|
&[data-state="open"] {
|
|
2027
1922
|
&:hover {
|
|
2028
1923
|
@media (hover: hover) {
|
|
@@ -2031,28 +1926,28 @@
|
|
|
2031
1926
|
}
|
|
2032
1927
|
}
|
|
2033
1928
|
}
|
|
2034
|
-
.data-\[state\=selected\]\:bg-muted {
|
|
1929
|
+
.ncp\:data-\[state\=selected\]\:bg-muted {
|
|
2035
1930
|
&[data-state="selected"] {
|
|
2036
1931
|
background-color: var(--muted);
|
|
2037
1932
|
}
|
|
2038
1933
|
}
|
|
2039
|
-
.data-\[state\=unchecked\]\:translate-x-0 {
|
|
1934
|
+
.ncp\:data-\[state\=unchecked\]\:translate-x-0 {
|
|
2040
1935
|
&[data-state="unchecked"] {
|
|
2041
|
-
--tw-translate-x: calc(var(--spacing) * 0);
|
|
1936
|
+
--tw-translate-x: calc(var(--ncp-spacing) * 0);
|
|
2042
1937
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2043
1938
|
}
|
|
2044
1939
|
}
|
|
2045
|
-
.data-\[state\=unchecked\]\:bg-input {
|
|
1940
|
+
.ncp\:data-\[state\=unchecked\]\:bg-input {
|
|
2046
1941
|
&[data-state="unchecked"] {
|
|
2047
1942
|
background-color: var(--input);
|
|
2048
1943
|
}
|
|
2049
1944
|
}
|
|
2050
|
-
.data-\[variant\=destructive\]\:text-destructive {
|
|
1945
|
+
.ncp\:data-\[variant\=destructive\]\:text-destructive {
|
|
2051
1946
|
&[data-variant="destructive"] {
|
|
2052
1947
|
color: var(--destructive);
|
|
2053
1948
|
}
|
|
2054
1949
|
}
|
|
2055
|
-
.data-\[variant\=destructive\]\:focus\:bg-destructive\/10 {
|
|
1950
|
+
.ncp\:data-\[variant\=destructive\]\:focus\:bg-destructive\/10 {
|
|
2056
1951
|
&[data-variant="destructive"] {
|
|
2057
1952
|
&:focus {
|
|
2058
1953
|
background-color: var(--destructive);
|
|
@@ -2062,125 +1957,108 @@
|
|
|
2062
1957
|
}
|
|
2063
1958
|
}
|
|
2064
1959
|
}
|
|
2065
|
-
.data-\[variant\=destructive\]\:focus\:text-destructive {
|
|
1960
|
+
.ncp\:data-\[variant\=destructive\]\:focus\:text-destructive {
|
|
2066
1961
|
&[data-variant="destructive"] {
|
|
2067
1962
|
&:focus {
|
|
2068
1963
|
color: var(--destructive);
|
|
2069
1964
|
}
|
|
2070
1965
|
}
|
|
2071
1966
|
}
|
|
2072
|
-
.
|
|
2073
|
-
&[data-variant="label"] {
|
|
2074
|
-
font-size: var(--text-sm);
|
|
2075
|
-
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2076
|
-
}
|
|
2077
|
-
}
|
|
2078
|
-
.data-\[variant\=legend\]\:text-base {
|
|
2079
|
-
&[data-variant="legend"] {
|
|
2080
|
-
font-size: var(--text-base);
|
|
2081
|
-
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
2082
|
-
}
|
|
2083
|
-
}
|
|
2084
|
-
.nth-last-2\:-mt-1 {
|
|
2085
|
-
&:nth-last-child(2) {
|
|
2086
|
-
margin-top: calc(var(--spacing) * -1);
|
|
2087
|
-
}
|
|
2088
|
-
}
|
|
2089
|
-
.sm\:flex {
|
|
1967
|
+
.ncp\:sm\:flex {
|
|
2090
1968
|
@media (width >= 40rem) {
|
|
2091
1969
|
display: flex;
|
|
2092
1970
|
}
|
|
2093
1971
|
}
|
|
2094
|
-
.sm\:max-w-lg {
|
|
1972
|
+
.ncp\:sm\:max-w-lg {
|
|
2095
1973
|
@media (width >= 40rem) {
|
|
2096
|
-
max-width: var(--container-lg);
|
|
1974
|
+
max-width: var(--ncp-container-lg);
|
|
2097
1975
|
}
|
|
2098
1976
|
}
|
|
2099
|
-
.sm\:max-w-sm {
|
|
1977
|
+
.ncp\:sm\:max-w-sm {
|
|
2100
1978
|
@media (width >= 40rem) {
|
|
2101
|
-
max-width: var(--container-sm);
|
|
1979
|
+
max-width: var(--ncp-container-sm);
|
|
2102
1980
|
}
|
|
2103
1981
|
}
|
|
2104
|
-
.sm\:flex-row {
|
|
1982
|
+
.ncp\:sm\:flex-row {
|
|
2105
1983
|
@media (width >= 40rem) {
|
|
2106
1984
|
flex-direction: row;
|
|
2107
1985
|
}
|
|
2108
1986
|
}
|
|
2109
|
-
.sm\:justify-end {
|
|
1987
|
+
.ncp\:sm\:justify-end {
|
|
2110
1988
|
@media (width >= 40rem) {
|
|
2111
1989
|
justify-content: flex-end;
|
|
2112
1990
|
}
|
|
2113
1991
|
}
|
|
2114
|
-
.sm\:gap-2\.5 {
|
|
1992
|
+
.ncp\:sm\:gap-2\.5 {
|
|
2115
1993
|
@media (width >= 40rem) {
|
|
2116
|
-
gap: calc(var(--spacing) * 2.5);
|
|
1994
|
+
gap: calc(var(--ncp-spacing) * 2.5);
|
|
2117
1995
|
}
|
|
2118
1996
|
}
|
|
2119
|
-
.sm\:text-left {
|
|
1997
|
+
.ncp\:sm\:text-left {
|
|
2120
1998
|
@media (width >= 40rem) {
|
|
2121
1999
|
text-align: left;
|
|
2122
2000
|
}
|
|
2123
2001
|
}
|
|
2124
|
-
.md\:block {
|
|
2002
|
+
.ncp\:md\:block {
|
|
2125
2003
|
@media (width >= 48rem) {
|
|
2126
2004
|
display: block;
|
|
2127
2005
|
}
|
|
2128
2006
|
}
|
|
2129
|
-
.md\:flex {
|
|
2007
|
+
.ncp\:md\:flex {
|
|
2130
2008
|
@media (width >= 48rem) {
|
|
2131
2009
|
display: flex;
|
|
2132
2010
|
}
|
|
2133
2011
|
}
|
|
2134
|
-
.md\:text-sm {
|
|
2012
|
+
.ncp\:md\:text-sm {
|
|
2135
2013
|
@media (width >= 48rem) {
|
|
2136
|
-
font-size: var(--text-sm);
|
|
2137
|
-
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
2014
|
+
font-size: var(--ncp-text-sm);
|
|
2015
|
+
line-height: var(--tw-leading, var(--ncp-text-sm--line-height));
|
|
2138
2016
|
}
|
|
2139
2017
|
}
|
|
2140
|
-
.md\:opacity-0 {
|
|
2018
|
+
.ncp\:md\:opacity-0 {
|
|
2141
2019
|
@media (width >= 48rem) {
|
|
2142
2020
|
opacity: 0%;
|
|
2143
2021
|
}
|
|
2144
2022
|
}
|
|
2145
|
-
.md\:peer-data-\[variant\=inset\]\:m-2 {
|
|
2023
|
+
.ncp\:md\:peer-data-\[variant\=inset\]\:m-2 {
|
|
2146
2024
|
@media (width >= 48rem) {
|
|
2147
|
-
&:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2148
|
-
margin: calc(var(--spacing) * 2);
|
|
2025
|
+
&:is(:where(.ncp\:peer)[data-variant="inset"] ~ *) {
|
|
2026
|
+
margin: calc(var(--ncp-spacing) * 2);
|
|
2149
2027
|
}
|
|
2150
2028
|
}
|
|
2151
2029
|
}
|
|
2152
|
-
.md\:peer-data-\[variant\=inset\]\:ml-0 {
|
|
2030
|
+
.ncp\:md\:peer-data-\[variant\=inset\]\:ml-0 {
|
|
2153
2031
|
@media (width >= 48rem) {
|
|
2154
|
-
&:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2155
|
-
margin-left: calc(var(--spacing) * 0);
|
|
2032
|
+
&:is(:where(.ncp\:peer)[data-variant="inset"] ~ *) {
|
|
2033
|
+
margin-left: calc(var(--ncp-spacing) * 0);
|
|
2156
2034
|
}
|
|
2157
2035
|
}
|
|
2158
2036
|
}
|
|
2159
|
-
.md\:peer-data-\[variant\=inset\]\:rounded-xl {
|
|
2037
|
+
.ncp\:md\:peer-data-\[variant\=inset\]\:rounded-xl {
|
|
2160
2038
|
@media (width >= 48rem) {
|
|
2161
|
-
&:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2039
|
+
&:is(:where(.ncp\:peer)[data-variant="inset"] ~ *) {
|
|
2162
2040
|
border-radius: calc(var(--radius) + 4px);
|
|
2163
2041
|
}
|
|
2164
2042
|
}
|
|
2165
2043
|
}
|
|
2166
|
-
.md\:peer-data-\[variant\=inset\]\:shadow-sm {
|
|
2044
|
+
.ncp\:md\:peer-data-\[variant\=inset\]\:shadow-sm {
|
|
2167
2045
|
@media (width >= 48rem) {
|
|
2168
|
-
&:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2046
|
+
&:is(:where(.ncp\:peer)[data-variant="inset"] ~ *) {
|
|
2169
2047
|
--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
2170
2048
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
2171
2049
|
}
|
|
2172
2050
|
}
|
|
2173
2051
|
}
|
|
2174
|
-
.md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2 {
|
|
2052
|
+
.ncp\:md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2 {
|
|
2175
2053
|
@media (width >= 48rem) {
|
|
2176
|
-
&:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
2177
|
-
&:is(:where(.peer)[data-state="collapsed"] ~ *) {
|
|
2178
|
-
margin-left: calc(var(--spacing) * 2);
|
|
2054
|
+
&:is(:where(.ncp\:peer)[data-variant="inset"] ~ *) {
|
|
2055
|
+
&:is(:where(.ncp\:peer)[data-state="collapsed"] ~ *) {
|
|
2056
|
+
margin-left: calc(var(--ncp-spacing) * 2);
|
|
2179
2057
|
}
|
|
2180
2058
|
}
|
|
2181
2059
|
}
|
|
2182
2060
|
}
|
|
2183
|
-
.md\:after\:hidden {
|
|
2061
|
+
.ncp\:md\:after\:hidden {
|
|
2184
2062
|
@media (width >= 48rem) {
|
|
2185
2063
|
&::after {
|
|
2186
2064
|
content: var(--tw-content);
|
|
@@ -2188,29 +2066,12 @@
|
|
|
2188
2066
|
}
|
|
2189
2067
|
}
|
|
2190
2068
|
}
|
|
2191
|
-
|
|
2192
|
-
@container field-group (width >= 28rem) {
|
|
2193
|
-
flex-direction: row;
|
|
2194
|
-
}
|
|
2195
|
-
}
|
|
2196
|
-
.\@md\/field-group\:items-center {
|
|
2197
|
-
@container field-group (width >= 28rem) {
|
|
2198
|
-
align-items: center;
|
|
2199
|
-
}
|
|
2200
|
-
}
|
|
2201
|
-
.\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:items-start {
|
|
2202
|
-
@container field-group (width >= 28rem) {
|
|
2203
|
-
&:has(>[data-slot=field-content]) {
|
|
2204
|
-
align-items: flex-start;
|
|
2205
|
-
}
|
|
2206
|
-
}
|
|
2207
|
-
}
|
|
2208
|
-
.dark\:border-input {
|
|
2069
|
+
.ncp\:dark\:border-input {
|
|
2209
2070
|
&:is(.dark *) {
|
|
2210
2071
|
border-color: var(--input);
|
|
2211
2072
|
}
|
|
2212
2073
|
}
|
|
2213
|
-
.dark\:bg-destructive\/60 {
|
|
2074
|
+
.ncp\:dark\:bg-destructive\/60 {
|
|
2214
2075
|
&:is(.dark *) {
|
|
2215
2076
|
background-color: var(--destructive);
|
|
2216
2077
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2218,7 +2079,7 @@
|
|
|
2218
2079
|
}
|
|
2219
2080
|
}
|
|
2220
2081
|
}
|
|
2221
|
-
.dark\:bg-input\/30 {
|
|
2082
|
+
.ncp\:dark\:bg-input\/30 {
|
|
2222
2083
|
&:is(.dark *) {
|
|
2223
2084
|
background-color: var(--input);
|
|
2224
2085
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2226,7 +2087,7 @@
|
|
|
2226
2087
|
}
|
|
2227
2088
|
}
|
|
2228
2089
|
}
|
|
2229
|
-
.dark\:hover\:bg-accent\/50 {
|
|
2090
|
+
.ncp\:dark\:hover\:bg-accent\/50 {
|
|
2230
2091
|
&:is(.dark *) {
|
|
2231
2092
|
&:hover {
|
|
2232
2093
|
@media (hover: hover) {
|
|
@@ -2238,7 +2099,7 @@
|
|
|
2238
2099
|
}
|
|
2239
2100
|
}
|
|
2240
2101
|
}
|
|
2241
|
-
.dark\:hover\:bg-input\/50 {
|
|
2102
|
+
.ncp\:dark\:hover\:bg-input\/50 {
|
|
2242
2103
|
&:is(.dark *) {
|
|
2243
2104
|
&:hover {
|
|
2244
2105
|
@media (hover: hover) {
|
|
@@ -2250,7 +2111,7 @@
|
|
|
2250
2111
|
}
|
|
2251
2112
|
}
|
|
2252
2113
|
}
|
|
2253
|
-
.dark\:focus-visible\:ring-destructive\/40 {
|
|
2114
|
+
.ncp\:dark\:focus-visible\:ring-destructive\/40 {
|
|
2254
2115
|
&:is(.dark *) {
|
|
2255
2116
|
&:focus-visible {
|
|
2256
2117
|
--tw-ring-color: var(--destructive);
|
|
@@ -2260,17 +2121,7 @@
|
|
|
2260
2121
|
}
|
|
2261
2122
|
}
|
|
2262
2123
|
}
|
|
2263
|
-
.dark\:
|
|
2264
|
-
&:is(.dark *) {
|
|
2265
|
-
&:has(*[data-state="checked"]) {
|
|
2266
|
-
background-color: var(--primary);
|
|
2267
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2268
|
-
background-color: color-mix(in oklab, var(--primary) 10%, transparent);
|
|
2269
|
-
}
|
|
2270
|
-
}
|
|
2271
|
-
}
|
|
2272
|
-
}
|
|
2273
|
-
.dark\:aria-invalid\:ring-destructive\/40 {
|
|
2124
|
+
.ncp\:dark\:aria-invalid\:ring-destructive\/40 {
|
|
2274
2125
|
&:is(.dark *) {
|
|
2275
2126
|
&[aria-invalid="true"] {
|
|
2276
2127
|
--tw-ring-color: var(--destructive);
|
|
@@ -2280,21 +2131,21 @@
|
|
|
2280
2131
|
}
|
|
2281
2132
|
}
|
|
2282
2133
|
}
|
|
2283
|
-
.dark\:data-\[state\=checked\]\:bg-primary-foreground {
|
|
2134
|
+
.ncp\:dark\:data-\[state\=checked\]\:bg-primary-foreground {
|
|
2284
2135
|
&:is(.dark *) {
|
|
2285
2136
|
&[data-state="checked"] {
|
|
2286
2137
|
background-color: var(--primary-foreground);
|
|
2287
2138
|
}
|
|
2288
2139
|
}
|
|
2289
2140
|
}
|
|
2290
|
-
.dark\:data-\[state\=unchecked\]\:bg-foreground {
|
|
2141
|
+
.ncp\:dark\:data-\[state\=unchecked\]\:bg-foreground {
|
|
2291
2142
|
&:is(.dark *) {
|
|
2292
2143
|
&[data-state="unchecked"] {
|
|
2293
2144
|
background-color: var(--foreground);
|
|
2294
2145
|
}
|
|
2295
2146
|
}
|
|
2296
2147
|
}
|
|
2297
|
-
.dark\:data-\[state\=unchecked\]\:bg-input\/80 {
|
|
2148
|
+
.ncp\:dark\:data-\[state\=unchecked\]\:bg-input\/80 {
|
|
2298
2149
|
&:is(.dark *) {
|
|
2299
2150
|
&[data-state="unchecked"] {
|
|
2300
2151
|
background-color: var(--input);
|
|
@@ -2304,7 +2155,7 @@
|
|
|
2304
2155
|
}
|
|
2305
2156
|
}
|
|
2306
2157
|
}
|
|
2307
|
-
.dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20 {
|
|
2158
|
+
.ncp\:dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20 {
|
|
2308
2159
|
&:is(.dark *) {
|
|
2309
2160
|
&[data-variant="destructive"] {
|
|
2310
2161
|
&:focus {
|
|
@@ -2316,66 +2167,66 @@
|
|
|
2316
2167
|
}
|
|
2317
2168
|
}
|
|
2318
2169
|
}
|
|
2319
|
-
|
|
2170
|
+
.ncp\:\[\&_p\]\:leading-relaxed {
|
|
2320
2171
|
& p {
|
|
2321
|
-
--tw-leading: var(--leading-relaxed);
|
|
2322
|
-
line-height: var(--leading-relaxed);
|
|
2172
|
+
--tw-leading: var(--ncp-leading-relaxed);
|
|
2173
|
+
line-height: var(--ncp-leading-relaxed);
|
|
2323
2174
|
}
|
|
2324
2175
|
}
|
|
2325
|
-
|
|
2176
|
+
.ncp\:\[\&_svg\]\:pointer-events-none {
|
|
2326
2177
|
& svg {
|
|
2327
2178
|
pointer-events: none;
|
|
2328
2179
|
}
|
|
2329
2180
|
}
|
|
2330
|
-
|
|
2181
|
+
.ncp\:\[\&_svg\]\:shrink-0 {
|
|
2331
2182
|
& svg {
|
|
2332
2183
|
flex-shrink: 0;
|
|
2333
2184
|
}
|
|
2334
2185
|
}
|
|
2335
|
-
|
|
2336
|
-
& svg:not([class*=
|
|
2337
|
-
width: calc(var(--spacing) * 4);
|
|
2338
|
-
height: calc(var(--spacing) * 4);
|
|
2186
|
+
.ncp\:\[\&_svg\:not\(\[class\*\=size-\]\)\]\:size-4 {
|
|
2187
|
+
& svg:not([class*=size-]) {
|
|
2188
|
+
width: calc(var(--ncp-spacing) * 4);
|
|
2189
|
+
height: calc(var(--ncp-spacing) * 4);
|
|
2339
2190
|
}
|
|
2340
2191
|
}
|
|
2341
|
-
|
|
2342
|
-
& svg:not([class*=
|
|
2192
|
+
.ncp\:\[\&_svg\:not\(\[class\*\=text-\]\)\]\:text-muted-foreground {
|
|
2193
|
+
& svg:not([class*=text-]) {
|
|
2343
2194
|
color: var(--muted-foreground);
|
|
2344
2195
|
}
|
|
2345
2196
|
}
|
|
2346
|
-
|
|
2197
|
+
.ncp\:\[\&_tr\]\:border-b {
|
|
2347
2198
|
& tr {
|
|
2348
2199
|
border-bottom-style: var(--tw-border-style);
|
|
2349
2200
|
border-bottom-width: 1px;
|
|
2350
2201
|
}
|
|
2351
2202
|
}
|
|
2352
|
-
|
|
2203
|
+
.ncp\:\[\&_tr\]\:border-\[\#ececec\] {
|
|
2353
2204
|
& tr {
|
|
2354
2205
|
border-color: #ececec;
|
|
2355
2206
|
}
|
|
2356
2207
|
}
|
|
2357
|
-
|
|
2208
|
+
.ncp\:\[\&_tr\:last-child\]\:border-0 {
|
|
2358
2209
|
& tr:last-child {
|
|
2359
2210
|
border-style: var(--tw-border-style);
|
|
2360
2211
|
border-width: 0px;
|
|
2361
2212
|
}
|
|
2362
2213
|
}
|
|
2363
|
-
|
|
2214
|
+
.ncp\:\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 {
|
|
2364
2215
|
&:has([role=checkbox]) {
|
|
2365
|
-
padding-right: calc(var(--spacing) * 0);
|
|
2216
|
+
padding-right: calc(var(--ncp-spacing) * 0);
|
|
2366
2217
|
}
|
|
2367
2218
|
}
|
|
2368
|
-
|
|
2219
|
+
.ncp\:\[\.border-b\]\:pb-6 {
|
|
2369
2220
|
&:is(.border-b) {
|
|
2370
|
-
padding-bottom: calc(var(--spacing) * 6);
|
|
2221
|
+
padding-bottom: calc(var(--ncp-spacing) * 6);
|
|
2371
2222
|
}
|
|
2372
2223
|
}
|
|
2373
|
-
|
|
2224
|
+
.ncp\:\[\.border-t\]\:pt-6 {
|
|
2374
2225
|
&:is(.border-t) {
|
|
2375
|
-
padding-top: calc(var(--spacing) * 6);
|
|
2226
|
+
padding-top: calc(var(--ncp-spacing) * 6);
|
|
2376
2227
|
}
|
|
2377
2228
|
}
|
|
2378
|
-
|
|
2229
|
+
.ncp\:\*\:\[span\]\:last\:flex {
|
|
2379
2230
|
:is(& > *) {
|
|
2380
2231
|
&:is(span) {
|
|
2381
2232
|
&:last-child {
|
|
@@ -2384,7 +2235,7 @@
|
|
|
2384
2235
|
}
|
|
2385
2236
|
}
|
|
2386
2237
|
}
|
|
2387
|
-
|
|
2238
|
+
.ncp\:\*\:\[span\]\:last\:items-center {
|
|
2388
2239
|
:is(& > *) {
|
|
2389
2240
|
&:is(span) {
|
|
2390
2241
|
&:last-child {
|
|
@@ -2393,16 +2244,16 @@
|
|
|
2393
2244
|
}
|
|
2394
2245
|
}
|
|
2395
2246
|
}
|
|
2396
|
-
|
|
2247
|
+
.ncp\:\*\:\[span\]\:last\:gap-2 {
|
|
2397
2248
|
:is(& > *) {
|
|
2398
2249
|
&:is(span) {
|
|
2399
2250
|
&:last-child {
|
|
2400
|
-
gap: calc(var(--spacing) * 2);
|
|
2251
|
+
gap: calc(var(--ncp-spacing) * 2);
|
|
2401
2252
|
}
|
|
2402
2253
|
}
|
|
2403
2254
|
}
|
|
2404
2255
|
}
|
|
2405
|
-
.data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive {
|
|
2256
|
+
.ncp\:data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive {
|
|
2406
2257
|
&[data-variant="destructive"] {
|
|
2407
2258
|
:is(& > *) {
|
|
2408
2259
|
&:is(svg) {
|
|
@@ -2411,130 +2262,58 @@
|
|
|
2411
2262
|
}
|
|
2412
2263
|
}
|
|
2413
2264
|
}
|
|
2414
|
-
|
|
2415
|
-
&>* {
|
|
2416
|
-
width: 100%;
|
|
2417
|
-
}
|
|
2418
|
-
}
|
|
2419
|
-
.\[\&\>\*\]\:data-\[slot\=field\]\:p-4 {
|
|
2420
|
-
&>* {
|
|
2421
|
-
&[data-slot="field"] {
|
|
2422
|
-
padding: calc(var(--spacing) * 4);
|
|
2423
|
-
}
|
|
2424
|
-
}
|
|
2425
|
-
}
|
|
2426
|
-
.\@md\/field-group\:\[\&\>\*\]\:w-auto {
|
|
2427
|
-
@container field-group (width >= 28rem) {
|
|
2428
|
-
&>* {
|
|
2429
|
-
width: auto;
|
|
2430
|
-
}
|
|
2431
|
-
}
|
|
2432
|
-
}
|
|
2433
|
-
.\[\&\>\.sr-only\]\:w-auto {
|
|
2434
|
-
&>.sr-only {
|
|
2435
|
-
width: auto;
|
|
2436
|
-
}
|
|
2437
|
-
}
|
|
2438
|
-
.\[\&\>\[data-slot\=field-group\]\]\:gap-4 {
|
|
2439
|
-
&>[data-slot=field-group] {
|
|
2440
|
-
gap: calc(var(--spacing) * 4);
|
|
2441
|
-
}
|
|
2442
|
-
}
|
|
2443
|
-
.\[\&\>\[data-slot\=field-label\]\]\:flex-auto {
|
|
2444
|
-
&>[data-slot=field-label] {
|
|
2445
|
-
flex: auto;
|
|
2446
|
-
}
|
|
2447
|
-
}
|
|
2448
|
-
.\@md\/field-group\:\[\&\>\[data-slot\=field-label\]\]\:flex-auto {
|
|
2449
|
-
@container field-group (width >= 28rem) {
|
|
2450
|
-
&>[data-slot=field-label] {
|
|
2451
|
-
flex: auto;
|
|
2452
|
-
}
|
|
2453
|
-
}
|
|
2454
|
-
}
|
|
2455
|
-
.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] {
|
|
2265
|
+
.ncp\:\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] {
|
|
2456
2266
|
&>[role=checkbox] {
|
|
2457
2267
|
--tw-translate-y: 2px;
|
|
2458
2268
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2459
2269
|
}
|
|
2460
2270
|
}
|
|
2461
|
-
.
|
|
2462
|
-
&:has(>[data-slot=field-content]) {
|
|
2463
|
-
&>[role=checkbox],[role=radio] {
|
|
2464
|
-
margin-top: 1px;
|
|
2465
|
-
}
|
|
2466
|
-
}
|
|
2467
|
-
}
|
|
2468
|
-
.\@md\/field-group\:has-\[\>\[data-slot\=field-content\]\]\:\[\&\>\[role\=checkbox\]\,\[role\=radio\]\]\:mt-px {
|
|
2469
|
-
@container field-group (width >= 28rem) {
|
|
2470
|
-
&:has(>[data-slot=field-content]) {
|
|
2471
|
-
&>[role=checkbox],[role=radio] {
|
|
2472
|
-
margin-top: 1px;
|
|
2473
|
-
}
|
|
2474
|
-
}
|
|
2475
|
-
}
|
|
2476
|
-
}
|
|
2477
|
-
.\[\&\>a\]\:underline {
|
|
2478
|
-
&>a {
|
|
2479
|
-
text-decoration-line: underline;
|
|
2480
|
-
}
|
|
2481
|
-
}
|
|
2482
|
-
.\[\&\>a\]\:underline-offset-4 {
|
|
2483
|
-
&>a {
|
|
2484
|
-
text-underline-offset: 4px;
|
|
2485
|
-
}
|
|
2486
|
-
}
|
|
2487
|
-
.\[\&\>a\:hover\]\:text-primary {
|
|
2488
|
-
&>a:hover {
|
|
2489
|
-
color: var(--primary);
|
|
2490
|
-
}
|
|
2491
|
-
}
|
|
2492
|
-
.\[\&\>button\]\:hidden {
|
|
2271
|
+
.ncp\:\[\&\>button\]\:hidden {
|
|
2493
2272
|
&>button {
|
|
2494
2273
|
display: none;
|
|
2495
2274
|
}
|
|
2496
2275
|
}
|
|
2497
|
-
|
|
2276
|
+
.ncp\:\[\&\>span\:last-child\]\:truncate {
|
|
2498
2277
|
&>span:last-child {
|
|
2499
2278
|
overflow: hidden;
|
|
2500
2279
|
text-overflow: ellipsis;
|
|
2501
2280
|
white-space: nowrap;
|
|
2502
2281
|
}
|
|
2503
2282
|
}
|
|
2504
|
-
|
|
2283
|
+
.ncp\:\[\&\>svg\]\:size-3\.5 {
|
|
2505
2284
|
&>svg {
|
|
2506
|
-
width: calc(var(--spacing) * 3.5);
|
|
2507
|
-
height: calc(var(--spacing) * 3.5);
|
|
2285
|
+
width: calc(var(--ncp-spacing) * 3.5);
|
|
2286
|
+
height: calc(var(--ncp-spacing) * 3.5);
|
|
2508
2287
|
}
|
|
2509
2288
|
}
|
|
2510
|
-
|
|
2289
|
+
.ncp\:\[\&\>svg\]\:size-4 {
|
|
2511
2290
|
&>svg {
|
|
2512
|
-
width: calc(var(--spacing) * 4);
|
|
2513
|
-
height: calc(var(--spacing) * 4);
|
|
2291
|
+
width: calc(var(--ncp-spacing) * 4);
|
|
2292
|
+
height: calc(var(--ncp-spacing) * 4);
|
|
2514
2293
|
}
|
|
2515
2294
|
}
|
|
2516
|
-
|
|
2295
|
+
.ncp\:\[\&\>svg\]\:shrink-0 {
|
|
2517
2296
|
&>svg {
|
|
2518
2297
|
flex-shrink: 0;
|
|
2519
2298
|
}
|
|
2520
2299
|
}
|
|
2521
|
-
|
|
2300
|
+
.ncp\:\[\&\>svg\]\:translate-y-0\.5 {
|
|
2522
2301
|
&>svg {
|
|
2523
|
-
--tw-translate-y: calc(var(--spacing) * 0.5);
|
|
2302
|
+
--tw-translate-y: calc(var(--ncp-spacing) * 0.5);
|
|
2524
2303
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
2525
2304
|
}
|
|
2526
2305
|
}
|
|
2527
|
-
|
|
2306
|
+
.ncp\:\[\&\>svg\]\:text-current {
|
|
2528
2307
|
&>svg {
|
|
2529
2308
|
color: currentcolor;
|
|
2530
2309
|
}
|
|
2531
2310
|
}
|
|
2532
|
-
|
|
2311
|
+
.ncp\:\[\&\>svg\]\:text-sidebar-accent-foreground {
|
|
2533
2312
|
&>svg {
|
|
2534
2313
|
color: var(--sidebar-accent-foreground);
|
|
2535
2314
|
}
|
|
2536
2315
|
}
|
|
2537
|
-
|
|
2316
|
+
.ncp\:\[\&\>tr\]\:last\:border-b-0 {
|
|
2538
2317
|
&>tr {
|
|
2539
2318
|
&:last-child {
|
|
2540
2319
|
border-bottom-style: var(--tw-border-style);
|
|
@@ -2542,31 +2321,26 @@
|
|
|
2542
2321
|
}
|
|
2543
2322
|
}
|
|
2544
2323
|
}
|
|
2545
|
-
|
|
2324
|
+
.ncp\:\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 {
|
|
2546
2325
|
[data-side=left][data-collapsible=offcanvas] & {
|
|
2547
|
-
right: calc(var(--spacing) * -2);
|
|
2326
|
+
right: calc(var(--ncp-spacing) * -2);
|
|
2548
2327
|
}
|
|
2549
2328
|
}
|
|
2550
|
-
|
|
2329
|
+
.ncp\:\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize {
|
|
2551
2330
|
[data-side=left][data-state=collapsed] & {
|
|
2552
2331
|
cursor: e-resize;
|
|
2553
2332
|
}
|
|
2554
2333
|
}
|
|
2555
|
-
|
|
2334
|
+
.ncp\:\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 {
|
|
2556
2335
|
[data-side=right][data-collapsible=offcanvas] & {
|
|
2557
|
-
left: calc(var(--spacing) * -2);
|
|
2336
|
+
left: calc(var(--ncp-spacing) * -2);
|
|
2558
2337
|
}
|
|
2559
2338
|
}
|
|
2560
|
-
|
|
2339
|
+
.ncp\:\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
|
|
2561
2340
|
[data-side=right][data-state=collapsed] & {
|
|
2562
2341
|
cursor: w-resize;
|
|
2563
2342
|
}
|
|
2564
2343
|
}
|
|
2565
|
-
.\[\[data-variant\=legend\]\+\&\]\:-mt-1\.5 {
|
|
2566
|
-
[data-variant=legend]+& {
|
|
2567
|
-
margin-top: calc(var(--spacing) * -1.5);
|
|
2568
|
-
}
|
|
2569
|
-
}
|
|
2570
2344
|
}
|
|
2571
2345
|
@property --tw-animation-delay {
|
|
2572
2346
|
syntax: "*";
|
|
@@ -2841,11 +2615,6 @@
|
|
|
2841
2615
|
inherits: false;
|
|
2842
2616
|
initial-value: 0 0 #0000;
|
|
2843
2617
|
}
|
|
2844
|
-
@property --tw-outline-style {
|
|
2845
|
-
syntax: "*";
|
|
2846
|
-
inherits: false;
|
|
2847
|
-
initial-value: solid;
|
|
2848
|
-
}
|
|
2849
2618
|
@property --tw-duration {
|
|
2850
2619
|
syntax: "*";
|
|
2851
2620
|
inherits: false;
|
|
@@ -2905,7 +2674,6 @@
|
|
|
2905
2674
|
--tw-ring-offset-width: 0px;
|
|
2906
2675
|
--tw-ring-offset-color: #fff;
|
|
2907
2676
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2908
|
-
--tw-outline-style: solid;
|
|
2909
2677
|
--tw-duration: initial;
|
|
2910
2678
|
--tw-ease: initial;
|
|
2911
2679
|
--tw-content: "";
|