@limpiolux/ui-styles 1.0.13 → 1.0.14
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 +48 -16
- package/light.css +27 -7
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
.theme-icon-button {
|
|
46
|
-
@apply inline-flex h-
|
|
46
|
+
@apply inline-flex h-12 w-12 items-center justify-center rounded-2xl border border-white/10 bg-white/5 text-zinc-200;
|
|
47
47
|
transition:
|
|
48
48
|
transform 220ms ease,
|
|
49
49
|
background-color 220ms ease,
|
|
@@ -182,18 +182,15 @@
|
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
.portal-launchpad-grid {
|
|
185
|
-
@apply grid gap-
|
|
185
|
+
@apply grid gap-x-6 gap-y-8 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
.portal-launchpad-card {
|
|
189
|
-
@apply rounded-[28px]
|
|
189
|
+
@apply flex flex-col items-center rounded-[28px] bg-transparent p-2 text-center transition duration-300;
|
|
190
190
|
}
|
|
191
191
|
|
|
192
192
|
.portal-launchpad-card:hover {
|
|
193
|
-
transform: translateY(-
|
|
194
|
-
border-color: rgba(var(--color-brand) / 0.3);
|
|
195
|
-
background: rgba(255, 255, 255, 0.075);
|
|
196
|
-
box-shadow: 0 24px 50px -28px rgba(0, 117, 169, 0.42);
|
|
193
|
+
transform: translateY(-4px) scale(1.01);
|
|
197
194
|
}
|
|
198
195
|
|
|
199
196
|
.portal-launchpad-icon-wrap {
|
|
@@ -201,19 +198,38 @@
|
|
|
201
198
|
}
|
|
202
199
|
|
|
203
200
|
.portal-launchpad-icon {
|
|
204
|
-
@apply inline-flex h-24 w-24 items-center justify-center rounded-[
|
|
205
|
-
border-color: rgba(
|
|
201
|
+
@apply inline-flex h-24 w-24 items-center justify-center rounded-[30px] border;
|
|
202
|
+
border-color: rgba(255, 255, 255, 0.14);
|
|
206
203
|
background:
|
|
207
|
-
radial-gradient(circle at top left, rgba(255, 255, 255, 0.
|
|
208
|
-
|
|
204
|
+
radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 54%),
|
|
205
|
+
radial-gradient(circle at bottom right, rgba(var(--color-brand) / 0.18), transparent 52%),
|
|
206
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
|
|
209
207
|
color: #f8fdff;
|
|
210
208
|
box-shadow:
|
|
211
|
-
inset 0 1px 0 rgba(255, 255, 255, 0.
|
|
212
|
-
0
|
|
209
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.28),
|
|
210
|
+
inset 0 -16px 24px -20px rgba(0, 0, 0, 0.24),
|
|
211
|
+
0 24px 42px -28px rgba(0, 117, 169, 0.46);
|
|
212
|
+
backdrop-filter: blur(18px);
|
|
213
|
+
-webkit-backdrop-filter: blur(18px);
|
|
214
|
+
transition:
|
|
215
|
+
transform 220ms ease,
|
|
216
|
+
border-color 220ms ease,
|
|
217
|
+
box-shadow 220ms ease,
|
|
218
|
+
background 220ms ease;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.portal-launchpad-card:hover .portal-launchpad-icon,
|
|
222
|
+
.portal-launchpad-card:focus-visible .portal-launchpad-icon {
|
|
223
|
+
transform: translateY(-2px);
|
|
224
|
+
border-color: rgba(var(--color-brand) / 0.28);
|
|
225
|
+
box-shadow:
|
|
226
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.32),
|
|
227
|
+
inset 0 -16px 24px -20px rgba(0, 0, 0, 0.18),
|
|
228
|
+
0 28px 52px -30px rgba(0, 117, 169, 0.58);
|
|
213
229
|
}
|
|
214
230
|
|
|
215
231
|
.portal-launchpad-title {
|
|
216
|
-
@apply mt-
|
|
232
|
+
@apply mt-3 text-base font-semibold tracking-tight;
|
|
217
233
|
color: #f4f4f5;
|
|
218
234
|
}
|
|
219
235
|
|
|
@@ -599,7 +615,7 @@
|
|
|
599
615
|
}
|
|
600
616
|
|
|
601
617
|
.portal-stat-card {
|
|
602
|
-
@apply flex h-
|
|
618
|
+
@apply flex h-12 items-center rounded-2xl border px-3.5;
|
|
603
619
|
border-color: rgba(255, 255, 255, 0.1);
|
|
604
620
|
background: rgba(255, 255, 255, 0.05);
|
|
605
621
|
}
|
|
@@ -609,7 +625,23 @@
|
|
|
609
625
|
}
|
|
610
626
|
|
|
611
627
|
.portal-toolbar-button {
|
|
612
|
-
@apply h-
|
|
628
|
+
@apply h-12 min-w-12 rounded-2xl px-0;
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.portal-toolbar-icon {
|
|
632
|
+
@apply inline-flex h-12 w-12 items-center justify-center rounded-2xl border border-white/10 bg-white/5 text-zinc-200;
|
|
633
|
+
transition:
|
|
634
|
+
transform 220ms ease,
|
|
635
|
+
background-color 220ms ease,
|
|
636
|
+
border-color 220ms ease,
|
|
637
|
+
color 220ms ease,
|
|
638
|
+
box-shadow 220ms ease;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.portal-toolbar-icon:hover {
|
|
642
|
+
transform: translateY(-1px);
|
|
643
|
+
background: rgba(255, 255, 255, 0.1);
|
|
644
|
+
border-color: rgba(255, 255, 255, 0.14);
|
|
613
645
|
}
|
|
614
646
|
|
|
615
647
|
.portal-card {
|
package/light.css
CHANGED
|
@@ -363,6 +363,18 @@
|
|
|
363
363
|
background: rgba(255, 255, 255, 0.82);
|
|
364
364
|
}
|
|
365
365
|
|
|
366
|
+
.light .portal-toolbar-icon {
|
|
367
|
+
background: rgba(255, 255, 255, 0.82);
|
|
368
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
369
|
+
color: #3f3f46;
|
|
370
|
+
box-shadow: 0 16px 36px -28px rgba(15, 23, 42, 0.18);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.light .portal-toolbar-icon:hover {
|
|
374
|
+
background: #ffffff;
|
|
375
|
+
border-color: rgba(161, 161, 170, 0.36);
|
|
376
|
+
}
|
|
377
|
+
|
|
366
378
|
.light .portal-widget-card {
|
|
367
379
|
border-color: rgba(212, 212, 216, 0.92);
|
|
368
380
|
background: rgba(255, 255, 255, 0.84);
|
|
@@ -454,27 +466,35 @@
|
|
|
454
466
|
}
|
|
455
467
|
|
|
456
468
|
.light .portal-launchpad-card {
|
|
457
|
-
|
|
458
|
-
background: rgba(255, 255, 255, 0.84);
|
|
469
|
+
background: transparent;
|
|
459
470
|
}
|
|
460
471
|
|
|
461
472
|
.light .portal-launchpad-card:hover {
|
|
462
|
-
|
|
463
|
-
background: rgba(255, 255, 255, 0.96);
|
|
464
|
-
box-shadow: 0 26px 48px -34px rgba(0, 117, 169, 0.28);
|
|
473
|
+
background: transparent;
|
|
465
474
|
}
|
|
466
475
|
|
|
467
476
|
.light .portal-launchpad-icon {
|
|
468
477
|
border-color: rgba(186, 230, 253, 0.92);
|
|
469
478
|
background:
|
|
470
|
-
radial-gradient(circle at top left, rgba(255, 255, 255, 0.
|
|
471
|
-
|
|
479
|
+
radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), transparent 50%),
|
|
480
|
+
radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.14), transparent 54%),
|
|
481
|
+
linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(224, 242, 254, 0.82));
|
|
472
482
|
color: rgb(var(--color-brand-strong));
|
|
473
483
|
box-shadow:
|
|
474
484
|
inset 0 1px 0 rgba(255, 255, 255, 0.92),
|
|
485
|
+
inset 0 -16px 24px -22px rgba(8, 47, 73, 0.08),
|
|
475
486
|
0 20px 36px -28px rgba(14, 116, 144, 0.32);
|
|
476
487
|
}
|
|
477
488
|
|
|
489
|
+
.light .portal-launchpad-card:hover .portal-launchpad-icon,
|
|
490
|
+
.light .portal-launchpad-card:focus-visible .portal-launchpad-icon {
|
|
491
|
+
border-color: rgba(125, 211, 252, 0.98);
|
|
492
|
+
box-shadow:
|
|
493
|
+
inset 0 1px 0 rgba(255, 255, 255, 0.96),
|
|
494
|
+
inset 0 -16px 24px -22px rgba(8, 47, 73, 0.06),
|
|
495
|
+
0 24px 42px -28px rgba(14, 116, 144, 0.38);
|
|
496
|
+
}
|
|
497
|
+
|
|
478
498
|
.light .portal-launchpad-title {
|
|
479
499
|
color: #18181b;
|
|
480
500
|
}
|