@limpiolux/ui-styles 1.0.15 → 1.0.17
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/components.css +104 -11
- package/light.css +59 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -182,7 +182,7 @@
|
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
.portal-launchpad-grid {
|
|
185
|
-
@apply grid gap-x-
|
|
185
|
+
@apply grid grid-cols-3 gap-x-4 gap-y-6 sm:grid-cols-4 lg:grid-cols-3 xl:grid-cols-4;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
.portal-launchpad-card {
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
.portal-launchpad-icon {
|
|
201
|
-
@apply inline-flex h-
|
|
201
|
+
@apply inline-flex h-20 w-20 items-center justify-center rounded-[28px] border sm:h-24 sm:w-24;
|
|
202
202
|
border-color: rgba(255, 255, 255, 0.14);
|
|
203
203
|
background:
|
|
204
204
|
radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 54%),
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
.portal-launchpad-title {
|
|
232
|
-
@apply mt-3 text-
|
|
232
|
+
@apply mt-3 text-sm font-semibold tracking-tight sm:text-base;
|
|
233
233
|
color: #f4f4f5;
|
|
234
234
|
}
|
|
235
235
|
|
|
@@ -261,13 +261,96 @@
|
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
.portal-home-grid {
|
|
264
|
-
@apply
|
|
264
|
+
@apply grid gap-5 lg:grid-cols-3;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
267
|
.portal-home-card {
|
|
268
268
|
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5 shadow-2xl shadow-black/30 backdrop-blur-xl;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
.portal-dashboard-grid {
|
|
272
|
+
@apply mt-8 grid gap-6 xl:grid-cols-[1.45fr_0.95fr];
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.portal-dashboard-main {
|
|
276
|
+
@apply rounded-[30px] border border-white/10 bg-white/[0.045] p-5 shadow-2xl shadow-black/30 backdrop-blur-xl md:p-6;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.portal-dashboard-side {
|
|
280
|
+
@apply grid gap-5;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.portal-side-card {
|
|
284
|
+
@apply rounded-[28px] border border-white/10 bg-white/[0.045] p-5 shadow-2xl shadow-black/30 backdrop-blur-xl;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.portal-side-hero {
|
|
288
|
+
@apply rounded-[24px] border p-4;
|
|
289
|
+
border-color: rgba(var(--color-brand) / 0.18);
|
|
290
|
+
background:
|
|
291
|
+
radial-gradient(circle at top right, rgba(var(--color-brand) / 0.18), transparent 42%),
|
|
292
|
+
rgba(255, 255, 255, 0.04);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.portal-side-list {
|
|
296
|
+
@apply mt-4 space-y-3;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.portal-side-item {
|
|
300
|
+
@apply flex items-start gap-3 rounded-2xl border p-4 transition duration-200;
|
|
301
|
+
border-color: rgba(255, 255, 255, 0.08);
|
|
302
|
+
background: rgba(255, 255, 255, 0.03);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.portal-side-item:hover {
|
|
306
|
+
border-color: rgba(var(--color-brand) / 0.18);
|
|
307
|
+
background: rgba(255, 255, 255, 0.05);
|
|
308
|
+
transform: translateY(-1px);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.portal-side-icon {
|
|
312
|
+
@apply inline-flex h-10 w-10 shrink-0 items-center justify-center rounded-2xl border;
|
|
313
|
+
border-color: rgba(var(--color-brand) / 0.18);
|
|
314
|
+
background: rgba(var(--color-brand) / 0.08);
|
|
315
|
+
color: rgb(var(--color-brand-soft));
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.portal-side-item-title {
|
|
319
|
+
@apply text-sm font-medium;
|
|
320
|
+
color: #f4f4f5;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.portal-side-item-copy {
|
|
324
|
+
@apply mt-1 text-sm leading-6;
|
|
325
|
+
color: #a1a1aa;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.portal-side-chip-row {
|
|
329
|
+
@apply mt-4 flex flex-wrap gap-2;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.portal-side-chip {
|
|
333
|
+
@apply rounded-full border px-3 py-1 text-[11px] font-medium uppercase tracking-[0.16em];
|
|
334
|
+
border-color: rgba(var(--color-brand) / 0.16);
|
|
335
|
+
background: rgba(var(--color-brand) / 0.08);
|
|
336
|
+
color: rgb(var(--color-brand-soft));
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.portal-section-kicker {
|
|
340
|
+
@apply text-[11px] font-medium uppercase tracking-[0.22em];
|
|
341
|
+
color: #71717a;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.portal-section-title {
|
|
345
|
+
@apply mt-2 text-2xl font-semibold tracking-tight;
|
|
346
|
+
color: #f4f4f5;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.portal-section-copy {
|
|
350
|
+
@apply mt-2 text-sm leading-6;
|
|
351
|
+
color: #a1a1aa;
|
|
352
|
+
}
|
|
353
|
+
|
|
271
354
|
.portal-home-header {
|
|
272
355
|
@apply flex items-start gap-4;
|
|
273
356
|
}
|
|
@@ -532,7 +615,7 @@
|
|
|
532
615
|
/* ── Soft tabs ── */
|
|
533
616
|
|
|
534
617
|
.soft-tab {
|
|
535
|
-
@apply relative inline-flex items-center justify-center rounded-xl px-3
|
|
618
|
+
@apply relative inline-flex shrink-0 items-center justify-center rounded-xl px-3 py-2 text-sm md:px-3.5;
|
|
536
619
|
background: transparent;
|
|
537
620
|
border-color: transparent;
|
|
538
621
|
color: #a1a1aa;
|
|
@@ -553,7 +636,7 @@
|
|
|
553
636
|
}
|
|
554
637
|
|
|
555
638
|
.soft-tab-track {
|
|
556
|
-
@apply relative
|
|
639
|
+
@apply relative flex w-full items-center gap-1 overflow-x-auto rounded-2xl p-1 md:inline-flex md:w-auto;
|
|
557
640
|
border: 1px solid rgba(63, 63, 70, 0.78);
|
|
558
641
|
background:
|
|
559
642
|
linear-gradient(180deg, rgba(39, 39, 42, 0.28), rgba(24, 24, 27, 0.32)),
|
|
@@ -567,6 +650,11 @@
|
|
|
567
650
|
0 18px 34px -28px rgba(0, 0, 0, 0.34);
|
|
568
651
|
backdrop-filter: blur(18px);
|
|
569
652
|
-webkit-backdrop-filter: blur(18px);
|
|
653
|
+
scrollbar-width: none;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.soft-tab-track::-webkit-scrollbar {
|
|
657
|
+
display: none;
|
|
570
658
|
}
|
|
571
659
|
|
|
572
660
|
.soft-tab-slider {
|
|
@@ -676,25 +764,30 @@
|
|
|
676
764
|
}
|
|
677
765
|
|
|
678
766
|
.portal-header-panel {
|
|
679
|
-
@apply flex flex-col gap-4 p-
|
|
767
|
+
@apply flex flex-col gap-4 p-5 md:flex-row md:items-end md:justify-between md:p-6;
|
|
680
768
|
}
|
|
681
769
|
|
|
682
770
|
.portal-stat-card {
|
|
683
|
-
@apply flex h-
|
|
771
|
+
@apply flex h-11 items-center rounded-2xl border px-3;
|
|
684
772
|
border-color: rgba(255, 255, 255, 0.1);
|
|
685
773
|
background: rgba(255, 255, 255, 0.05);
|
|
686
774
|
}
|
|
687
775
|
|
|
688
776
|
.portal-toolbar {
|
|
689
|
-
@apply flex
|
|
777
|
+
@apply flex w-full items-center gap-2 overflow-x-auto pb-1 md:w-auto md:justify-end md:overflow-visible md:pb-0;
|
|
778
|
+
scrollbar-width: none;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.portal-toolbar::-webkit-scrollbar {
|
|
782
|
+
display: none;
|
|
690
783
|
}
|
|
691
784
|
|
|
692
785
|
.portal-toolbar-button {
|
|
693
|
-
@apply h-
|
|
786
|
+
@apply h-11 min-w-11 rounded-2xl px-0;
|
|
694
787
|
}
|
|
695
788
|
|
|
696
789
|
.portal-toolbar-icon {
|
|
697
|
-
@apply inline-flex h-
|
|
790
|
+
@apply inline-flex h-11 w-11 items-center justify-center rounded-2xl border border-white/10 bg-white/5 text-zinc-200;
|
|
698
791
|
transition:
|
|
699
792
|
transform 220ms ease,
|
|
700
793
|
background-color 220ms ease,
|
package/light.css
CHANGED
|
@@ -514,6 +514,53 @@
|
|
|
514
514
|
background: rgba(255, 255, 255, 0.84);
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
.light .portal-dashboard-main {
|
|
518
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
519
|
+
background: rgba(255, 255, 255, 0.84);
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.light .portal-side-card {
|
|
523
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
524
|
+
background: rgba(255, 255, 255, 0.84);
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.light .portal-side-hero {
|
|
528
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
529
|
+
background:
|
|
530
|
+
radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 42%),
|
|
531
|
+
rgba(255, 255, 255, 0.92);
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.light .portal-side-item {
|
|
535
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
536
|
+
background: rgba(255, 255, 255, 0.9);
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.light .portal-side-item:hover {
|
|
540
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
541
|
+
background: #ffffff;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
.light .portal-side-icon {
|
|
545
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
546
|
+
background: rgba(240, 249, 255, 0.92);
|
|
547
|
+
color: rgb(var(--color-brand-strong));
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.light .portal-side-item-title {
|
|
551
|
+
color: #18181b;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.light .portal-side-item-copy {
|
|
555
|
+
color: #52525b;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.light .portal-side-chip {
|
|
559
|
+
border-color: rgba(186, 230, 253, 0.88);
|
|
560
|
+
background: #f0f9ff;
|
|
561
|
+
color: rgb(var(--color-brand-strong));
|
|
562
|
+
}
|
|
563
|
+
|
|
517
564
|
.light .portal-home-icon {
|
|
518
565
|
border-color: rgba(186, 230, 253, 0.92);
|
|
519
566
|
background: rgba(240, 249, 255, 0.92);
|
|
@@ -524,6 +571,18 @@
|
|
|
524
571
|
color: #52525b;
|
|
525
572
|
}
|
|
526
573
|
|
|
574
|
+
.light .portal-section-kicker {
|
|
575
|
+
color: #52525b;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
.light .portal-section-title {
|
|
579
|
+
color: #18181b;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.light .portal-section-copy {
|
|
583
|
+
color: #52525b;
|
|
584
|
+
}
|
|
585
|
+
|
|
527
586
|
.light .portal-home-title,
|
|
528
587
|
.light .portal-home-item-title {
|
|
529
588
|
color: #18181b;
|