mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
Adding Bounding Box Reset Disables
Add disable conditions for reset buttons on bounding box width and height
This commit is contained in:
committed by
psychedelicious
parent
6679e5be69
commit
acdffb1503
@@ -69,12 +69,6 @@
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
path {
|
||||
// fill: ;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -116,7 +116,11 @@ const IAINumberInput = (props: Props) => {
|
||||
<FormControl
|
||||
isDisabled={isDisabled}
|
||||
isInvalid={isInvalid}
|
||||
className={`invokeai__number-input-form-control ${styleClass}`}
|
||||
className={
|
||||
styleClass
|
||||
? `invokeai__number-input-form-control ${styleClass}`
|
||||
: `invokeai__number-input-form-control`
|
||||
}
|
||||
{...formControlProps}
|
||||
>
|
||||
<FormLabel
|
||||
|
||||
Reference in New Issue
Block a user