@limpiolux/ui-styles 1.0.4 → 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.
Files changed (3) hide show
  1. package/components.css +106 -0
  2. package/light.css +81 -0
  3. package/package.json +1 -1
package/components.css CHANGED
@@ -365,6 +365,25 @@
365
365
  box-shadow: inset 0 0 0 1px rgba(var(--color-brand) / 0.24);
366
366
  }
367
367
 
368
+ .sidebar-action {
369
+ @apply flex w-full items-center gap-2.5 rounded-lg px-3 py-2 text-sm font-medium transition-colors;
370
+ color: #a1a1aa;
371
+ }
372
+
373
+ .sidebar-action:hover {
374
+ color: #e4e4e7;
375
+ background: rgba(39, 39, 42, 0.72);
376
+ }
377
+
378
+ .sidebar-action-danger {
379
+ color: rgba(239, 68, 68, 0.8);
380
+ }
381
+
382
+ .sidebar-action-danger:hover {
383
+ color: rgba(248, 113, 113, 1);
384
+ background: rgba(39, 39, 42, 0.72);
385
+ }
386
+
368
387
  /* ── Brand surfaces ── */
369
388
 
370
389
  .brand-panel {
@@ -417,6 +436,93 @@
417
436
  background: rgb(var(--color-brand-strong));
418
437
  }
419
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
+
420
526
  /* ── Glass toolbar ── */
421
527
 
422
528
  .glass-toolbar {
package/light.css CHANGED
@@ -281,6 +281,24 @@
281
281
  box-shadow: inset 0 0 0 1px rgba(var(--color-brand) / 0.2);
282
282
  }
283
283
 
284
+ .light .sidebar-action {
285
+ color: #52525b;
286
+ }
287
+
288
+ .light .sidebar-action:hover {
289
+ color: #18181b;
290
+ background: #f4f4f5;
291
+ }
292
+
293
+ .light .sidebar-action-danger {
294
+ color: #b91c1c;
295
+ }
296
+
297
+ .light .sidebar-action-danger:hover {
298
+ color: #991b1b;
299
+ background: #fef2f2;
300
+ }
301
+
284
302
  /* ── Brand surfaces ── */
285
303
 
286
304
  .light .brand-panel {
@@ -322,6 +340,69 @@
322
340
  color: rgb(var(--color-brand-strong));
323
341
  }
324
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
+
325
406
  /* ── Glass / KPI ── */
326
407
 
327
408
  .light .glass-toolbar {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limpiolux/ui-styles",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Shared design system — Limpiolux liquid glass theme with auth, portal and dark/light mode support",
5
5
  "type": "module",
6
6
  "exports": {