mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
fix: checkbox disable hover style
This commit is contained in:
parent
e7a5d41148
commit
fd3fd5daf5
|
|
@ -556,11 +556,20 @@ const Checkbox = checkBoxMultiStyle({
|
|||
bg: 'myGray.100',
|
||||
borderColor: 'transparent',
|
||||
color: 'myGray.400',
|
||||
outline: 'none'
|
||||
outline: 'none',
|
||||
_hover: {
|
||||
bg: 'myGray.100',
|
||||
borderColor: 'transparent'
|
||||
}
|
||||
}
|
||||
},
|
||||
_hover: {
|
||||
borderColor: 'primary.400'
|
||||
},
|
||||
_disabled: {
|
||||
_hover: {
|
||||
borderColor: 'inherit'
|
||||
}
|
||||
}
|
||||
}
|
||||
}),
|
||||
|
|
|
|||
Loading…
Reference in New Issue