@limpiolux/ui-styles 1.0.5 → 1.0.6
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 +87 -0
- package/light.css +63 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -436,6 +436,93 @@
|
|
|
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
|
+
|
|
439
526
|
/* ── Glass toolbar ── */
|
|
440
527
|
|
|
441
528
|
.glass-toolbar {
|
package/light.css
CHANGED
|
@@ -340,6 +340,69 @@
|
|
|
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
|
+
|
|
343
406
|
/* ── Glass / KPI ── */
|
|
344
407
|
|
|
345
408
|
.light .glass-toolbar {
|