pimelon-ui 0.1.83 → 0.1.84
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/package.json
CHANGED
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
<div class="relative w-full">
|
|
54
54
|
<ComboboxInput
|
|
55
55
|
ref="searchInput"
|
|
56
|
-
class="form-input w-full
|
|
56
|
+
class="form-input w-full focus:bg-surface-gray-3 hover:bg-surface-gray-4 text-ink-gray-8"
|
|
57
57
|
type="text"
|
|
58
58
|
@change="
|
|
59
59
|
(e) => {
|
package/src/tailwind/plugin.js
CHANGED
|
@@ -34,7 +34,7 @@ let globalStyles = (theme) => ({
|
|
|
34
34
|
|
|
35
35
|
let componentStyles = {
|
|
36
36
|
'.form-input, .form-textarea, .form-select': {
|
|
37
|
-
'@apply h-7 rounded border border-
|
|
37
|
+
'@apply h-7 rounded border border-[--surface-gray-2] bg-surface-gray-2 py-1.5 pl-2 pr-2 text-base text-ink-gray-8 placeholder-gray-500 transition-colors hover:border-outline-gray-modals hover:bg-surface-gray-3 focus:border-outline-gray-4 focus:bg-surface-white focus:shadow-sm focus:ring-0 focus-visible:ring-2 focus-visible:ring-outline-gray-3':
|
|
38
38
|
{},
|
|
39
39
|
},
|
|
40
40
|
'.form-checkbox': {
|