refactor(ui): simplify prompt recording indicator

This commit is contained in:
Shantur Rathore
2026-03-27 19:45:56 +00:00
parent 864f913e3e
commit 75622ef366
2 changed files with 13 additions and 10 deletions

View File

@@ -220,6 +220,16 @@
color: var(--button-danger-text, var(--text-inverted, #ffffff));
}
.prompt-voice-button.is-recording:hover:not(:disabled) {
background-color: var(--button-danger-hover-bg, rgba(239, 68, 68, 0.9));
color: var(--button-danger-text, var(--text-inverted, #ffffff));
}
.prompt-voice-button.is-recording:active:not(:disabled) {
background-color: var(--button-danger-active-bg, rgba(239, 68, 68, 1));
color: var(--button-danger-text, var(--text-inverted, #ffffff));
}
.prompt-nav-voice-button {
min-width: 1.75rem;
width: 1.75rem;
@@ -228,8 +238,8 @@
}
.prompt-nav-voice-button.is-recording {
min-width: 3.5rem;
width: auto;
min-width: 1.75rem;
width: 1.75rem;
}
.prompt-voice-button:disabled {