@limpiolux/ui-styles 1.1.5 → 1.1.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 CHANGED
@@ -874,6 +874,85 @@
874
874
  border-color: rgba(255, 255, 255, 0.14);
875
875
  }
876
876
 
877
+ .dashboard-ghost-button {
878
+ @apply inline-flex items-center justify-center gap-2 rounded-lg border px-3 py-2 text-sm transition-colors disabled:cursor-not-allowed disabled:opacity-40;
879
+ border-color: rgba(39, 39, 42, 0.92);
880
+ background: rgba(24, 24, 27, 0.5);
881
+ color: #d4d4d8;
882
+ }
883
+
884
+ .dashboard-ghost-button:hover {
885
+ background: rgba(39, 39, 42, 0.92);
886
+ color: #ffffff;
887
+ }
888
+
889
+ .mobile-pager-button {
890
+ @apply flex items-center justify-center rounded-lg border transition-colors disabled:cursor-not-allowed disabled:opacity-40;
891
+ height: 2rem;
892
+ width: 2rem;
893
+ border-color: rgba(39, 39, 42, 0.92);
894
+ background: rgba(24, 24, 27, 0.7);
895
+ color: #d4d4d8;
896
+ }
897
+
898
+ .mobile-pager-button:active {
899
+ background: rgba(39, 39, 42, 0.92);
900
+ color: #ffffff;
901
+ }
902
+
903
+ .mobile-pager-indicator {
904
+ @apply flex items-center justify-center rounded-lg border text-center;
905
+ min-width: 5.25rem;
906
+ height: 2rem;
907
+ padding: 0 0.75rem;
908
+ border-color: rgba(63, 63, 70, 0.7);
909
+ background: rgba(24, 24, 27, 0.6);
910
+ }
911
+
912
+ .mobile-pager-indicator-text {
913
+ @apply whitespace-nowrap font-semibold;
914
+ font-size: 12px;
915
+ color: #f4f4f5;
916
+ }
917
+
918
+ .mobile-pager-size-trigger {
919
+ @apply flex items-center gap-1.5 rounded-lg border px-2.5 font-medium transition-colors;
920
+ height: 2rem;
921
+ border-color: rgba(39, 39, 42, 0.92);
922
+ background: rgba(24, 24, 27, 0.7);
923
+ color: #e4e4e7;
924
+ font-size: 11px;
925
+ }
926
+
927
+ .mobile-pager-size-trigger:active {
928
+ background: rgba(39, 39, 42, 0.92);
929
+ }
930
+
931
+ .mobile-pager-size-menu {
932
+ @apply rounded-xl border p-1 shadow-2xl;
933
+ width: 5.5rem;
934
+ border-color: rgba(39, 39, 42, 0.92);
935
+ background: rgba(9, 9, 11, 0.95);
936
+ box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
937
+ backdrop-filter: blur(20px) saturate(1.5);
938
+ -webkit-backdrop-filter: blur(20px) saturate(1.5);
939
+ }
940
+
941
+ .mobile-pager-size-option {
942
+ @apply flex w-full items-center justify-center rounded-lg px-2 py-2 text-sm transition-colors;
943
+ color: #d4d4d8;
944
+ }
945
+
946
+ .mobile-pager-size-option:active {
947
+ background: rgba(39, 39, 42, 0.92);
948
+ }
949
+
950
+ .mobile-pager-size-option-active {
951
+ color: #d7f1fb;
952
+ border-color: rgba(var(--color-brand) / 0.18);
953
+ background: rgba(var(--color-brand) / 0.05);
954
+ }
955
+
877
956
  .compact-choice-track {
878
957
  @apply inline-flex items-center gap-1 rounded-2xl border p-1;
879
958
  border-color: rgba(255, 255, 255, 0.08);
package/light.css CHANGED
@@ -382,6 +382,68 @@
382
382
  border-color: rgba(161, 161, 170, 0.36);
383
383
  }
384
384
 
385
+ .light .dashboard-ghost-button {
386
+ border-color: rgba(212, 212, 216, 0.92);
387
+ background: rgba(255, 255, 255, 0.82);
388
+ color: #3f3f46;
389
+ box-shadow: 0 16px 36px -28px rgba(15, 23, 42, 0.18);
390
+ }
391
+
392
+ .light .dashboard-ghost-button:hover {
393
+ background: #ffffff;
394
+ border-color: rgba(161, 161, 170, 0.36);
395
+ color: #18181b;
396
+ }
397
+
398
+ .light .mobile-pager-button {
399
+ border-color: rgba(212, 212, 216, 0.92);
400
+ background: rgba(255, 255, 255, 0.82);
401
+ color: #3f3f46;
402
+ }
403
+
404
+ .light .mobile-pager-button:active {
405
+ background: #ffffff;
406
+ color: #18181b;
407
+ }
408
+
409
+ .light .mobile-pager-indicator {
410
+ border-color: rgba(212, 212, 216, 0.92);
411
+ background: rgba(255, 255, 255, 0.9);
412
+ }
413
+
414
+ .light .mobile-pager-indicator-text {
415
+ color: #18181b;
416
+ }
417
+
418
+ .light .mobile-pager-size-trigger {
419
+ border-color: rgba(212, 212, 216, 0.92);
420
+ background: rgba(255, 255, 255, 0.82);
421
+ color: #18181b;
422
+ }
423
+
424
+ .light .mobile-pager-size-trigger:active {
425
+ background: #ffffff;
426
+ }
427
+
428
+ .light .mobile-pager-size-menu {
429
+ border-color: rgba(212, 212, 216, 0.92);
430
+ background: rgba(255, 255, 255, 0.96);
431
+ box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.18);
432
+ }
433
+
434
+ .light .mobile-pager-size-option {
435
+ color: #3f3f46;
436
+ }
437
+
438
+ .light .mobile-pager-size-option:active {
439
+ background: #f4f4f5;
440
+ }
441
+
442
+ .light .mobile-pager-size-option-active {
443
+ color: #083344;
444
+ background: rgba(var(--color-brand) / 0.1);
445
+ }
446
+
385
447
  .light .compact-choice-track {
386
448
  border-color: rgba(212, 212, 216, 0.92);
387
449
  background: rgba(255, 255, 255, 0.84);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limpiolux/ui-styles",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Shared design system \u2026 Limpiolux liquid glass theme with auth, portal and dark/light mode support",
5
5
  "type": "module",
6
6
  "exports": {