@limpiolux/ui-styles 1.1.5 → 1.1.7
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 +89 -0
- package/light.css +70 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -26,6 +26,16 @@
|
|
|
26
26
|
|
|
27
27
|
.date-filter-input {
|
|
28
28
|
color-scheme: dark;
|
|
29
|
+
color: #a1a1aa;
|
|
30
|
+
text-align: left;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.date-filter-input::-webkit-date-and-time-value {
|
|
34
|
+
text-align: left;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.date-filter-input::-webkit-datetime-edit {
|
|
38
|
+
color: #a1a1aa;
|
|
29
39
|
}
|
|
30
40
|
|
|
31
41
|
/* ── Buttons ── */
|
|
@@ -874,6 +884,85 @@
|
|
|
874
884
|
border-color: rgba(255, 255, 255, 0.14);
|
|
875
885
|
}
|
|
876
886
|
|
|
887
|
+
.dashboard-ghost-button {
|
|
888
|
+
@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;
|
|
889
|
+
border-color: rgba(39, 39, 42, 0.92);
|
|
890
|
+
background: rgba(24, 24, 27, 0.5);
|
|
891
|
+
color: #d4d4d8;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.dashboard-ghost-button:hover {
|
|
895
|
+
background: rgba(39, 39, 42, 0.92);
|
|
896
|
+
color: #ffffff;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.mobile-pager-button {
|
|
900
|
+
@apply flex items-center justify-center rounded-lg border transition-colors disabled:cursor-not-allowed disabled:opacity-40;
|
|
901
|
+
height: 2rem;
|
|
902
|
+
width: 2rem;
|
|
903
|
+
border-color: rgba(39, 39, 42, 0.92);
|
|
904
|
+
background: rgba(24, 24, 27, 0.7);
|
|
905
|
+
color: #d4d4d8;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.mobile-pager-button:active {
|
|
909
|
+
background: rgba(39, 39, 42, 0.92);
|
|
910
|
+
color: #ffffff;
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
.mobile-pager-indicator {
|
|
914
|
+
@apply flex items-center justify-center rounded-lg border text-center;
|
|
915
|
+
min-width: 5.25rem;
|
|
916
|
+
height: 2rem;
|
|
917
|
+
padding: 0 0.75rem;
|
|
918
|
+
border-color: rgba(63, 63, 70, 0.7);
|
|
919
|
+
background: rgba(24, 24, 27, 0.6);
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.mobile-pager-indicator-text {
|
|
923
|
+
@apply whitespace-nowrap font-semibold;
|
|
924
|
+
font-size: 12px;
|
|
925
|
+
color: #f4f4f5;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.mobile-pager-size-trigger {
|
|
929
|
+
@apply flex items-center gap-1.5 rounded-lg border px-2.5 font-medium transition-colors;
|
|
930
|
+
height: 2rem;
|
|
931
|
+
border-color: rgba(39, 39, 42, 0.92);
|
|
932
|
+
background: rgba(24, 24, 27, 0.7);
|
|
933
|
+
color: #e4e4e7;
|
|
934
|
+
font-size: 11px;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.mobile-pager-size-trigger:active {
|
|
938
|
+
background: rgba(39, 39, 42, 0.92);
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.mobile-pager-size-menu {
|
|
942
|
+
@apply rounded-xl border p-1 shadow-2xl;
|
|
943
|
+
width: 5.5rem;
|
|
944
|
+
border-color: rgba(39, 39, 42, 0.92);
|
|
945
|
+
background: rgba(9, 9, 11, 0.95);
|
|
946
|
+
box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5);
|
|
947
|
+
backdrop-filter: blur(20px) saturate(1.5);
|
|
948
|
+
-webkit-backdrop-filter: blur(20px) saturate(1.5);
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
.mobile-pager-size-option {
|
|
952
|
+
@apply flex w-full items-center justify-center rounded-lg px-2 py-2 text-sm transition-colors;
|
|
953
|
+
color: #d4d4d8;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.mobile-pager-size-option:active {
|
|
957
|
+
background: rgba(39, 39, 42, 0.92);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.mobile-pager-size-option-active {
|
|
961
|
+
color: #d7f1fb;
|
|
962
|
+
border-color: rgba(var(--color-brand) / 0.18);
|
|
963
|
+
background: rgba(var(--color-brand) / 0.05);
|
|
964
|
+
}
|
|
965
|
+
|
|
877
966
|
.compact-choice-track {
|
|
878
967
|
@apply inline-flex items-center gap-1 rounded-2xl border p-1;
|
|
879
968
|
border-color: rgba(255, 255, 255, 0.08);
|
package/light.css
CHANGED
|
@@ -103,6 +103,14 @@
|
|
|
103
103
|
color: #71717a;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
.light .date-filter-input {
|
|
107
|
+
color: #52525b;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.light .date-filter-input::-webkit-datetime-edit {
|
|
111
|
+
color: #52525b;
|
|
112
|
+
}
|
|
113
|
+
|
|
106
114
|
.light .btn-secondary {
|
|
107
115
|
background: rgba(255, 255, 255, 0.82);
|
|
108
116
|
border-color: rgba(212, 212, 216, 0.92);
|
|
@@ -382,6 +390,68 @@
|
|
|
382
390
|
border-color: rgba(161, 161, 170, 0.36);
|
|
383
391
|
}
|
|
384
392
|
|
|
393
|
+
.light .dashboard-ghost-button {
|
|
394
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
395
|
+
background: rgba(255, 255, 255, 0.82);
|
|
396
|
+
color: #3f3f46;
|
|
397
|
+
box-shadow: 0 16px 36px -28px rgba(15, 23, 42, 0.18);
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.light .dashboard-ghost-button:hover {
|
|
401
|
+
background: #ffffff;
|
|
402
|
+
border-color: rgba(161, 161, 170, 0.36);
|
|
403
|
+
color: #18181b;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.light .mobile-pager-button {
|
|
407
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
408
|
+
background: rgba(255, 255, 255, 0.82);
|
|
409
|
+
color: #3f3f46;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.light .mobile-pager-button:active {
|
|
413
|
+
background: #ffffff;
|
|
414
|
+
color: #18181b;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
.light .mobile-pager-indicator {
|
|
418
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
419
|
+
background: rgba(255, 255, 255, 0.9);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
.light .mobile-pager-indicator-text {
|
|
423
|
+
color: #18181b;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.light .mobile-pager-size-trigger {
|
|
427
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
428
|
+
background: rgba(255, 255, 255, 0.82);
|
|
429
|
+
color: #18181b;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.light .mobile-pager-size-trigger:active {
|
|
433
|
+
background: #ffffff;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.light .mobile-pager-size-menu {
|
|
437
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
438
|
+
background: rgba(255, 255, 255, 0.96);
|
|
439
|
+
box-shadow: 0 24px 48px -28px rgba(15, 23, 42, 0.18);
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.light .mobile-pager-size-option {
|
|
443
|
+
color: #3f3f46;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.light .mobile-pager-size-option:active {
|
|
447
|
+
background: #f4f4f5;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.light .mobile-pager-size-option-active {
|
|
451
|
+
color: #083344;
|
|
452
|
+
background: rgba(var(--color-brand) / 0.1);
|
|
453
|
+
}
|
|
454
|
+
|
|
385
455
|
.light .compact-choice-track {
|
|
386
456
|
border-color: rgba(212, 212, 216, 0.92);
|
|
387
457
|
background: rgba(255, 255, 255, 0.84);
|