-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Open
Labels
feature requestNew feature or requestNew feature or request
Description
问题的清晰而简明的描述
希望实现类似 arco 或者 semi.design 的输入框效果
目前是通过自定义css改变
.n-input {
--n-input-bg-hover-color: rgba(46, 51, 56, 0.09);
&:hover {
background: var(--n-input-bg-hover-color);
}
}
html[theme-mode='dark'] .n-input {
--n-input-bg-hover-color: rgba(255, 255, 255, 0.12);
}建议的解决方案
希望 ConfigProviderProps 中的 InputTheme增加相关字段,例如
Input: {
color: isDark ? 'rgba(255, 255, 255, .08)' : 'rgba(46, 51, 56, .05)',
bgHover: isDark ? `rgb(x,x,x)`: `rgb(x,x,x)`
},备选方案
No response
附加上下文
No response
验证
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
feature requestNew feature or requestNew feature or request