mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-13 05:12:55 -07:00
chore: consolidate to green in ask user dialog (#18734)
This commit is contained in:
@@ -361,7 +361,7 @@ const TextQuestionView: React.FC<TextQuestionViewProps> = ({
|
|||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
<Box flexDirection="row" marginBottom={1}>
|
<Box flexDirection="row" marginBottom={1}>
|
||||||
<Text color={theme.text.accent}>{'> '}</Text>
|
<Text color={theme.status.success}>{'> '}</Text>
|
||||||
<TextInput
|
<TextInput
|
||||||
buffer={buffer}
|
buffer={buffer}
|
||||||
placeholder={placeholder}
|
placeholder={placeholder}
|
||||||
@@ -838,7 +838,9 @@ const ChoiceQuestionView: React.FC<ChoiceQuestionViewProps> = ({
|
|||||||
<Box flexDirection="row">
|
<Box flexDirection="row">
|
||||||
{showCheck && (
|
{showCheck && (
|
||||||
<Text
|
<Text
|
||||||
color={isChecked ? theme.text.accent : theme.text.secondary}
|
color={
|
||||||
|
isChecked ? theme.status.success : theme.text.secondary
|
||||||
|
}
|
||||||
>
|
>
|
||||||
[{isChecked ? 'x' : ' '}]
|
[{isChecked ? 'x' : ' '}]
|
||||||
</Text>
|
</Text>
|
||||||
@@ -870,7 +872,9 @@ const ChoiceQuestionView: React.FC<ChoiceQuestionViewProps> = ({
|
|||||||
<Box flexDirection="row">
|
<Box flexDirection="row">
|
||||||
{showCheck && (
|
{showCheck && (
|
||||||
<Text
|
<Text
|
||||||
color={isChecked ? theme.text.accent : theme.text.secondary}
|
color={
|
||||||
|
isChecked ? theme.status.success : theme.text.secondary
|
||||||
|
}
|
||||||
>
|
>
|
||||||
[{isChecked ? 'x' : ' '}]
|
[{isChecked ? 'x' : ' '}]
|
||||||
</Text>
|
</Text>
|
||||||
|
|||||||
Reference in New Issue
Block a user