@limpiolux/ui-styles 1.0.19 → 1.0.20

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 +59 -28
  2. package/light.css +53 -16
  3. package/package.json +1 -1
package/components.css CHANGED
@@ -198,41 +198,25 @@
198
198
  }
199
199
 
200
200
  .portal-launchpad-icon {
201
- @apply inline-flex h-20 w-20 items-center justify-center rounded-[28px] border sm:h-24 sm:w-24;
202
- border-color: rgba(255, 255, 255, 0.18);
203
- background:
204
- radial-gradient(ellipse at 28% 8%, rgba(255, 255, 255, 0.62), transparent 50%),
205
- radial-gradient(circle at bottom right, rgba(var(--color-brand) / 0.22), transparent 52%),
206
- linear-gradient(160deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.04) 100%);
207
- color: #f8fdff;
201
+ @apply inline-flex h-[62px] w-[62px] items-center justify-center rounded-[16px] sm:h-[70px] sm:w-[70px];
202
+ background: linear-gradient(160deg, rgb(var(--color-brand)) 0%, rgb(var(--color-brand-strong)) 100%);
203
+ color: #ffffff;
208
204
  box-shadow:
209
- inset 0 1px 0 rgba(255, 255, 255, 0.38),
210
- inset 0 -20px 28px -18px rgba(0, 0, 0, 0.2),
211
- 0 24px 48px -28px rgba(0, 117, 169, 0.52),
212
- 0 2px 8px -2px rgba(0, 0, 0, 0.18);
213
- backdrop-filter: blur(20px) saturate(2);
214
- -webkit-backdrop-filter: blur(20px) saturate(2);
215
- transition:
216
- transform 220ms ease,
217
- border-color 220ms ease,
218
- box-shadow 220ms ease,
219
- background 220ms ease;
205
+ 0 4px 14px -4px rgba(var(--color-brand) / 0.52),
206
+ 0 1px 4px rgba(0, 0, 0, 0.18);
207
+ transition: box-shadow 220ms ease;
220
208
  }
221
209
 
222
210
  .portal-launchpad-card:hover .portal-launchpad-icon,
223
211
  .portal-launchpad-card:focus-visible .portal-launchpad-icon {
224
- transform: translateY(-2px);
225
- border-color: rgba(var(--color-brand) / 0.32);
226
212
  box-shadow:
227
- inset 0 1px 0 rgba(255, 255, 255, 0.44),
228
- inset 0 -20px 28px -18px rgba(0, 0, 0, 0.16),
229
- 0 32px 56px -28px rgba(0, 117, 169, 0.64),
230
- 0 4px 14px -4px rgba(0, 0, 0, 0.2);
213
+ 0 8px 22px -6px rgba(var(--color-brand) / 0.64),
214
+ 0 2px 8px rgba(0, 0, 0, 0.18);
231
215
  }
232
216
 
233
217
  .portal-launchpad-title {
234
- @apply mt-3 text-sm font-semibold tracking-tight sm:text-base;
235
- color: #f4f4f5;
218
+ @apply mt-2.5 text-sm font-medium tracking-tight;
219
+ color: #d4d4d8;
236
220
  }
237
221
 
238
222
  .portal-launchpad-subtitle {
@@ -804,13 +788,19 @@
804
788
  }
805
789
 
806
790
  .portal-header-panel {
807
- @apply flex flex-col gap-4 p-5 md:flex-row md:items-end md:justify-between md:p-6;
791
+ @apply flex flex-col gap-3 p-4 sm:flex-row sm:items-center sm:justify-between md:items-end md:p-5 lg:p-6;
808
792
  }
809
793
 
810
794
  .portal-stat-card {
811
- @apply flex h-11 items-center rounded-2xl border px-3;
795
+ @apply hidden sm:flex h-9 items-center gap-1.5 rounded-xl border px-2.5;
812
796
  border-color: rgba(255, 255, 255, 0.1);
813
797
  background: rgba(255, 255, 255, 0.05);
798
+ color: #71717a;
799
+ }
800
+
801
+ .portal-stat-value {
802
+ @apply text-xs font-semibold;
803
+ color: #d4d4d8;
814
804
  }
815
805
 
816
806
  .portal-toolbar {
@@ -1939,4 +1929,45 @@
1939
1929
  .fade.show {
1940
1930
  opacity: 1;
1941
1931
  }
1932
+
1933
+ /* ── Portal footer ── */
1934
+
1935
+ .portal-footer {
1936
+ @apply mt-10 py-4 text-center text-xs tracking-wide;
1937
+ color: #52525b;
1938
+ border-top: 1px solid rgba(255, 255, 255, 0.06);
1939
+ }
1940
+
1941
+ /* ── User avatar ── */
1942
+
1943
+ .portal-user-avatar {
1944
+ @apply inline-flex h-9 w-9 shrink-0 items-center justify-center rounded-xl text-xs font-semibold uppercase;
1945
+ background: rgba(var(--color-brand) / 0.16);
1946
+ border: 1px solid rgba(var(--color-brand) / 0.2);
1947
+ color: rgb(var(--color-brand-soft));
1948
+ }
1949
+
1950
+ /* ── Role / permission chips (toggle style) ── */
1951
+
1952
+ .portal-role-chip {
1953
+ @apply inline-flex cursor-pointer items-center gap-1.5 rounded-full border px-3 py-1 text-xs font-medium transition-colors;
1954
+ border-color: rgba(255, 255, 255, 0.1);
1955
+ background: rgba(255, 255, 255, 0.04);
1956
+ color: #71717a;
1957
+ }
1958
+
1959
+ .portal-role-chip:hover {
1960
+ background: rgba(255, 255, 255, 0.08);
1961
+ color: #a1a1aa;
1962
+ }
1963
+
1964
+ .portal-role-chip-active {
1965
+ border-color: rgba(var(--color-brand) / 0.32);
1966
+ background: rgba(var(--color-brand) / 0.12);
1967
+ color: #c6ecfb;
1968
+ }
1969
+
1970
+ .portal-role-chip-active:hover {
1971
+ background: rgba(var(--color-brand) / 0.18);
1972
+ }
1942
1973
  }
package/light.css CHANGED
@@ -361,6 +361,11 @@
361
361
  .light .portal-stat-card {
362
362
  border-color: rgba(212, 212, 216, 0.92);
363
363
  background: rgba(255, 255, 255, 0.82);
364
+ color: #71717a;
365
+ }
366
+
367
+ .light .portal-stat-value {
368
+ color: #18181b;
364
369
  }
365
370
 
366
371
  .light .portal-toolbar-icon {
@@ -474,28 +479,22 @@
474
479
  }
475
480
 
476
481
  .light .portal-launchpad-icon {
477
- border-color: rgba(186, 230, 253, 0.92);
478
- background:
479
- radial-gradient(ellipse at 28% 8%, rgba(255, 255, 255, 0.98), transparent 48%),
480
- radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.18), transparent 54%),
481
- linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(224, 242, 254, 0.82) 100%);
482
- color: rgb(var(--color-brand-strong));
482
+ background: linear-gradient(160deg, rgb(var(--color-brand)) 0%, rgb(var(--color-brand-strong)) 100%);
483
+ color: #ffffff;
483
484
  box-shadow:
484
- inset 0 1px 0 rgba(255, 255, 255, 0.96),
485
- inset 0 -20px 28px -20px rgba(8, 47, 73, 0.07),
486
- 0 20px 40px -28px rgba(14, 116, 144, 0.36),
487
- 0 2px 8px -2px rgba(14, 116, 144, 0.12);
488
- backdrop-filter: blur(20px) saturate(1.6);
489
- -webkit-backdrop-filter: blur(20px) saturate(1.6);
485
+ 0 4px 14px -4px rgba(var(--color-brand) / 0.44),
486
+ 0 1px 4px rgba(14, 116, 144, 0.14);
490
487
  }
491
488
 
492
489
  .light .portal-launchpad-card:hover .portal-launchpad-icon,
493
490
  .light .portal-launchpad-card:focus-visible .portal-launchpad-icon {
494
- border-color: rgba(125, 211, 252, 0.98);
495
491
  box-shadow:
496
- inset 0 1px 0 rgba(255, 255, 255, 0.96),
497
- inset 0 -16px 24px -22px rgba(8, 47, 73, 0.06),
498
- 0 24px 42px -28px rgba(14, 116, 144, 0.38);
492
+ 0 8px 22px -6px rgba(var(--color-brand) / 0.56),
493
+ 0 2px 8px rgba(14, 116, 144, 0.16);
494
+ }
495
+
496
+ .light .portal-launchpad-title {
497
+ color: #27272a;
499
498
  }
500
499
 
501
500
  .light .portal-launchpad-title {
@@ -997,3 +996,41 @@
997
996
  .light .text-orange {
998
997
  color: #c2410c !important;
999
998
  }
999
+
1000
+ /* ── Portal footer ── */
1001
+
1002
+ .light .portal-footer {
1003
+ color: #71717a;
1004
+ border-top-color: rgba(0, 0, 0, 0.08);
1005
+ }
1006
+
1007
+ /* ── User avatar ── */
1008
+
1009
+ .light .portal-user-avatar {
1010
+ background: rgba(var(--color-brand) / 0.1);
1011
+ border-color: rgba(var(--color-brand) / 0.18);
1012
+ color: rgb(var(--color-brand-strong));
1013
+ }
1014
+
1015
+ /* ── Role / permission chips ── */
1016
+
1017
+ .light .portal-role-chip {
1018
+ border-color: rgba(212, 212, 216, 0.92);
1019
+ background: rgba(255, 255, 255, 0.82);
1020
+ color: #52525b;
1021
+ }
1022
+
1023
+ .light .portal-role-chip:hover {
1024
+ background: #ffffff;
1025
+ color: #27272a;
1026
+ }
1027
+
1028
+ .light .portal-role-chip-active {
1029
+ border-color: rgba(var(--color-brand) / 0.3);
1030
+ background: rgba(var(--color-brand) / 0.1);
1031
+ color: rgb(var(--color-brand-strong));
1032
+ }
1033
+
1034
+ .light .portal-role-chip-active:hover {
1035
+ background: rgba(var(--color-brand) / 0.15);
1036
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@limpiolux/ui-styles",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
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": {