@limpiolux/ui-styles 1.0.5 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components.css +177 -0
- package/light.css +139 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -436,6 +436,183 @@
|
|
|
436
436
|
background: rgb(var(--color-brand-strong));
|
|
437
437
|
}
|
|
438
438
|
|
|
439
|
+
/* ── Portal surfaces ── */
|
|
440
|
+
|
|
441
|
+
.portal-panel {
|
|
442
|
+
@apply glass-panel p-5;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.portal-header-panel {
|
|
446
|
+
@apply glass-panel flex flex-col gap-4 p-6 md:flex-row md:items-end md:justify-between;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.portal-stat-card {
|
|
450
|
+
@apply rounded-2xl border px-4 py-3 text-right;
|
|
451
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
452
|
+
background: rgba(255, 255, 255, 0.05);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.portal-card {
|
|
456
|
+
@apply glass-panel relative overflow-hidden p-5 transition duration-300;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.portal-card:hover {
|
|
460
|
+
transform: translateY(-4px);
|
|
461
|
+
border-color: rgba(255, 255, 255, 0.2);
|
|
462
|
+
background: rgba(255, 255, 255, 0.07);
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.portal-card-inset {
|
|
466
|
+
@apply rounded-2xl border p-4;
|
|
467
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
468
|
+
background: rgba(255, 255, 255, 0.03);
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.portal-card-icon {
|
|
472
|
+
@apply inline-flex h-12 w-12 items-center justify-center rounded-2xl border;
|
|
473
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
474
|
+
background: rgba(255, 255, 255, 0.05);
|
|
475
|
+
color: #f4f4f5;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.portal-role-badge {
|
|
479
|
+
@apply rounded-full border px-3 py-1 text-xs font-medium uppercase tracking-[0.18em];
|
|
480
|
+
border-color: rgba(56, 189, 248, 0.2);
|
|
481
|
+
background: rgba(56, 189, 248, 0.1);
|
|
482
|
+
color: #bae6fd;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.portal-permission-chip {
|
|
486
|
+
@apply rounded-full border px-2.5 py-1 text-[11px];
|
|
487
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
488
|
+
background: rgba(255, 255, 255, 0.04);
|
|
489
|
+
color: #a1a1aa;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.portal-selection-card {
|
|
493
|
+
@apply rounded-2xl border p-4 text-left transition;
|
|
494
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
495
|
+
background: rgba(255, 255, 255, 0.03);
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.portal-selection-card:hover {
|
|
499
|
+
background: rgba(255, 255, 255, 0.05);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.portal-selection-card-active {
|
|
503
|
+
border-color: rgba(56, 189, 248, 0.3);
|
|
504
|
+
background: rgba(56, 189, 248, 0.1);
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.portal-directory-panel {
|
|
508
|
+
@apply mt-6 rounded-[24px] border p-5;
|
|
509
|
+
border-color: rgba(56, 189, 248, 0.2);
|
|
510
|
+
background: rgba(56, 189, 248, 0.1);
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
.portal-directory-result {
|
|
514
|
+
@apply rounded-2xl border p-4;
|
|
515
|
+
border-color: rgba(125, 211, 252, 0.15);
|
|
516
|
+
background: rgba(0, 0, 0, 0.1);
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.portal-directory-tag {
|
|
520
|
+
@apply rounded-full border px-2.5 py-1 text-[11px] uppercase tracking-[0.18em];
|
|
521
|
+
border-color: rgba(125, 211, 252, 0.2);
|
|
522
|
+
background: rgba(125, 211, 252, 0.1);
|
|
523
|
+
color: #e0f2fe;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.portal-title {
|
|
527
|
+
color: #f4f4f5;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.portal-body {
|
|
531
|
+
color: #a1a1aa;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.portal-code {
|
|
535
|
+
color: #d4d4d8;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.portal-muted {
|
|
539
|
+
color: #71717a;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
.portal-directory-title {
|
|
543
|
+
color: #f0f9ff;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.portal-directory-text {
|
|
547
|
+
color: rgba(224, 242, 254, 0.8);
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.portal-directory-search-icon {
|
|
551
|
+
color: rgba(224, 242, 254, 0.6);
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.portal-directory-empty {
|
|
555
|
+
color: rgba(224, 242, 254, 0.7);
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.portal-directory-name {
|
|
559
|
+
color: #f0f9ff;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.portal-directory-meta {
|
|
563
|
+
color: rgba(224, 242, 254, 0.8);
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.portal-directory-fine {
|
|
567
|
+
color: rgba(224, 242, 254, 0.6);
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.portal-directory-in-portal-badge {
|
|
571
|
+
@apply rounded-full border px-2.5 py-1 text-[11px] uppercase tracking-[0.18em];
|
|
572
|
+
border-color: rgba(255, 255, 255, 0.1);
|
|
573
|
+
background: rgba(255, 255, 255, 0.1);
|
|
574
|
+
color: #e0f2fe;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
.portal-warning-text {
|
|
578
|
+
color: rgba(254, 243, 199, 0.8);
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.portal-success-badge {
|
|
582
|
+
border-color: rgba(110, 231, 183, 0.2);
|
|
583
|
+
background: rgba(110, 231, 183, 0.1);
|
|
584
|
+
color: #d1fae5;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.portal-inactive-badge {
|
|
588
|
+
border-color: rgba(252, 211, 77, 0.2);
|
|
589
|
+
background: rgba(252, 211, 77, 0.1);
|
|
590
|
+
color: #fef3c7;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.portal-it-badge {
|
|
594
|
+
@apply rounded-full border px-2.5 py-1 text-[11px] font-medium uppercase tracking-[0.18em];
|
|
595
|
+
border-color: rgba(251, 191, 36, 0.2);
|
|
596
|
+
background: rgba(251, 191, 36, 0.1);
|
|
597
|
+
color: #fde68a;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.portal-system-badge {
|
|
601
|
+
border-color: rgba(56, 189, 248, 0.2);
|
|
602
|
+
background: rgba(56, 189, 248, 0.1);
|
|
603
|
+
color: #bae6fd;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.portal-custom-badge {
|
|
607
|
+
border-color: rgba(52, 211, 153, 0.2);
|
|
608
|
+
background: rgba(52, 211, 153, 0.1);
|
|
609
|
+
color: #a7f3d0;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
.portal-custom-label {
|
|
613
|
+
color: #6ee7b7;
|
|
614
|
+
}
|
|
615
|
+
|
|
439
616
|
/* ── Glass toolbar ── */
|
|
440
617
|
|
|
441
618
|
.glass-toolbar {
|
package/light.css
CHANGED
|
@@ -340,6 +340,145 @@
|
|
|
340
340
|
color: rgb(var(--color-brand-strong));
|
|
341
341
|
}
|
|
342
342
|
|
|
343
|
+
.light .portal-stat-card {
|
|
344
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
345
|
+
background: rgba(255, 255, 255, 0.82);
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.light .portal-card:hover {
|
|
349
|
+
border-color: rgba(161, 161, 170, 0.42);
|
|
350
|
+
background: rgba(255, 255, 255, 0.88);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.light .portal-card-inset {
|
|
354
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
355
|
+
background: rgba(255, 255, 255, 0.82);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
.light .portal-card-icon {
|
|
359
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
360
|
+
background: rgba(255, 255, 255, 0.92);
|
|
361
|
+
color: #27272a;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.light .portal-role-badge {
|
|
365
|
+
border-color: rgba(125, 211, 252, 0.4);
|
|
366
|
+
background: #f0f9ff;
|
|
367
|
+
color: #0369a1;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.light .portal-permission-chip {
|
|
371
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
372
|
+
background: #f4f4f5;
|
|
373
|
+
color: #52525b;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.light .portal-selection-card {
|
|
377
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
378
|
+
background: rgba(255, 255, 255, 0.82);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.light .portal-selection-card:hover {
|
|
382
|
+
background: #fafafa;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.light .portal-selection-card-active {
|
|
386
|
+
border-color: rgba(125, 211, 252, 0.72);
|
|
387
|
+
background: #f0f9ff;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.light .portal-directory-panel {
|
|
391
|
+
border-color: rgba(186, 230, 253, 0.92);
|
|
392
|
+
background: #f0f9ff;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.light .portal-directory-result {
|
|
396
|
+
border-color: rgba(186, 230, 253, 0.88);
|
|
397
|
+
background: rgba(255, 255, 255, 0.92);
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.light .portal-directory-tag {
|
|
401
|
+
border-color: rgba(186, 230, 253, 0.88);
|
|
402
|
+
background: #ffffff;
|
|
403
|
+
color: #0369a1;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.light .portal-title {
|
|
407
|
+
color: #18181b;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.light .portal-body {
|
|
411
|
+
color: #52525b;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.light .portal-code,
|
|
415
|
+
.light .portal-muted {
|
|
416
|
+
color: #3f3f46;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.light .portal-directory-title,
|
|
420
|
+
.light .portal-directory-name {
|
|
421
|
+
color: #0c4a6e;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.light .portal-directory-text,
|
|
425
|
+
.light .portal-directory-meta {
|
|
426
|
+
color: rgba(8, 47, 73, 0.8);
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.light .portal-directory-search-icon {
|
|
430
|
+
color: #0ea5e9;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.light .portal-directory-empty,
|
|
434
|
+
.light .portal-directory-fine {
|
|
435
|
+
color: rgba(8, 47, 73, 0.7);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
.light .portal-directory-in-portal-badge {
|
|
439
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
440
|
+
background: #f4f4f5;
|
|
441
|
+
color: #0369a1;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.light .portal-warning-text {
|
|
445
|
+
color: rgba(180, 83, 9, 0.9);
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.light .portal-success-badge {
|
|
449
|
+
border-color: rgba(110, 231, 183, 0.9);
|
|
450
|
+
background: #ecfdf5;
|
|
451
|
+
color: #047857;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.light .portal-inactive-badge {
|
|
455
|
+
border-color: rgba(252, 211, 77, 0.88);
|
|
456
|
+
background: #fffbeb;
|
|
457
|
+
color: #b45309;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.light .portal-it-badge {
|
|
461
|
+
border-color: rgba(252, 211, 77, 0.88);
|
|
462
|
+
background: #fffbeb;
|
|
463
|
+
color: #b45309;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.light .portal-system-badge {
|
|
467
|
+
border-color: rgba(125, 211, 252, 0.88);
|
|
468
|
+
background: #f0f9ff;
|
|
469
|
+
color: #0369a1;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.light .portal-custom-badge {
|
|
473
|
+
border-color: rgba(110, 231, 183, 0.88);
|
|
474
|
+
background: #ecfdf5;
|
|
475
|
+
color: #047857;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.light .portal-custom-label {
|
|
479
|
+
color: #047857;
|
|
480
|
+
}
|
|
481
|
+
|
|
343
482
|
/* ── Glass / KPI ── */
|
|
344
483
|
|
|
345
484
|
.light .glass-toolbar {
|