@limpiolux/ui-styles 1.1.6 → 1.1.8
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 +11 -1
- package/light.css +8 -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 ── */
|
|
@@ -875,7 +885,7 @@
|
|
|
875
885
|
}
|
|
876
886
|
|
|
877
887
|
.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;
|
|
888
|
+
@apply inline-flex h-10 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
889
|
border-color: rgba(39, 39, 42, 0.92);
|
|
880
890
|
background: rgba(24, 24, 27, 0.5);
|
|
881
891
|
color: #d4d4d8;
|
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);
|