style(codeAreaComponent && promptAreaComponent): Change disabled inputs border and placeholder color
This commit is contained in:
parent
e438f5a2a6
commit
657c64b5b9
3 changed files with 4 additions and 4 deletions
|
|
@ -48,7 +48,7 @@ export default function CodeAreaComponent({
|
|||
className={
|
||||
editNode
|
||||
? "input-edit-node input-dialog"
|
||||
: (disabled ? " input-disable " : "") +
|
||||
: (disabled ? " input-disable input-ring " : "") +
|
||||
" input-primary text-muted-foreground "
|
||||
}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -69,8 +69,8 @@ export default function PromptAreaComponent({
|
|||
className={
|
||||
editNode
|
||||
? "input-edit-node input-dialog"
|
||||
: (disabled ? " input-disable " : "") +
|
||||
" input-primary text-muted-foreground"
|
||||
: (disabled ? " input-disable text-ring " : "") +
|
||||
" input-primary text-muted-foreground "
|
||||
}
|
||||
>
|
||||
{myValue !== "" ? myValue : "Type your prompt here"}
|
||||
|
|
|
|||
|
|
@ -216,7 +216,7 @@ The cursor: default; property value restores the browser's default cursor style
|
|||
@apply input-primary pr-7 mx-2
|
||||
}
|
||||
.input-disable{
|
||||
@apply bg-input text-muted-foreground
|
||||
@apply bg-border placeholder:text-ring border-transparent
|
||||
}
|
||||
.input-dialog{
|
||||
@apply text-ring cursor-pointer bg-transparent
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue