@limpiolux/ui-styles 1.1.9 → 1.1.10
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 +16 -0
- package/light.css +12 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -74,6 +74,22 @@
|
|
|
74
74
|
color: #71717a;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
+
.search-select-actions {
|
|
78
|
+
@apply flex shrink-0 items-center gap-1.5;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.search-select-clear-button {
|
|
82
|
+
@apply inline-flex h-5 w-5 items-center justify-center rounded-full border border-white/10 bg-white/[0.05] text-zinc-500;
|
|
83
|
+
transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.search-select-clear-button:hover {
|
|
87
|
+
color: #f4f4f5;
|
|
88
|
+
background: rgba(255, 255, 255, 0.12);
|
|
89
|
+
border-color: rgba(255, 255, 255, 0.18);
|
|
90
|
+
transform: scale(1.04);
|
|
91
|
+
}
|
|
92
|
+
|
|
77
93
|
.search-select-option {
|
|
78
94
|
@apply flex w-full items-start justify-between gap-3 px-3 py-2.5 text-left transition-colors;
|
|
79
95
|
}
|
package/light.css
CHANGED
|
@@ -131,6 +131,18 @@
|
|
|
131
131
|
color: #71717a;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
+
.light .search-select-clear-button {
|
|
135
|
+
background: rgba(255, 255, 255, 0.9);
|
|
136
|
+
border-color: rgba(212, 212, 216, 0.92);
|
|
137
|
+
color: #71717a;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.light .search-select-clear-button:hover {
|
|
141
|
+
background: #ffffff;
|
|
142
|
+
border-color: rgba(161, 161, 170, 0.42);
|
|
143
|
+
color: #18181b;
|
|
144
|
+
}
|
|
145
|
+
|
|
134
146
|
.light .search-select-panel {
|
|
135
147
|
box-shadow: 0 18px 40px -30px rgba(15, 23, 42, 0.22);
|
|
136
148
|
}
|