Fix button colors

This commit is contained in:
rishikanthc
2025-12-10 22:32:35 -08:00
parent 286a6ca743
commit 98ed75ff4c
7 changed files with 8 additions and 8 deletions

View File

@@ -2012,7 +2012,7 @@ export const TranscriptionConfigDialog = memo(function TranscriptionConfigDialog
<Button
onClick={handleStartTranscription}
disabled={loading || (isProfileMode && !profileName.trim())}
className="rounded-[var(--radius-btn)] !text-white border-none shadow-lg shadow-orange-500/20"
className="rounded-[var(--radius-btn)] !text-black dark:!text-white border-none shadow-lg shadow-orange-500/20"
style={{ background: 'var(--brand-gradient)' }}
>
{loading ? (

View File

@@ -163,7 +163,7 @@ export function APIKeyCreateDialog({
<Button
type="submit"
disabled={isCreating || !name.trim()}
className="!bg-[var(--brand-gradient)] hover:!opacity-90 text-white border-none"
className="!bg-[var(--brand-gradient)] hover:!opacity-90 !text-black dark:!text-white border-none"
>
{isCreating ? "Creating..." : "Create API Key"}
</Button>

View File

@@ -52,7 +52,7 @@ export function APIKeySettings() {
</div>
<Button
onClick={handleCreateAPIKey}
className="!bg-[var(--brand-gradient)] hover:!opacity-90 text-white shadow-lg shadow-orange-500/20 border-none"
className="!bg-[var(--brand-gradient)] hover:!opacity-90 !text-black dark:!text-white shadow-lg shadow-orange-500/20 border-none"
>
Create New API Key
</Button>

View File

@@ -215,7 +215,7 @@ export function AccountSettings() {
<Button
type="submit"
className="rounded-[var(--radius-btn)] !text-white border-none shadow-lg shadow-orange-500/20"
className="rounded-[var(--radius-btn)] !text-black dark:!text-white border-none shadow-lg shadow-orange-500/20"
style={{ background: 'var(--brand-gradient)' }}
disabled={loading || !newUsername.trim() || !usernamePassword.trim()}
>
@@ -346,7 +346,7 @@ export function AccountSettings() {
<Button
type="submit"
className="!bg-[var(--brand-gradient)] hover:!opacity-90 text-white shadow-lg shadow-orange-500/20 border-none"
className="!bg-[var(--brand-gradient)] hover:!opacity-90 !text-black dark:!text-white shadow-lg shadow-orange-500/20 border-none"
disabled={loading || !currentPassword.trim() || !isPasswordValid || !passwordsMatch}
>
{loading ? "Changing Password..." : "Change Password"}

View File

@@ -302,7 +302,7 @@ export function LLMSettings() {
<Button
onClick={handleSave}
disabled={!isFormValid() || saving}
className="rounded-[var(--radius-btn)] !text-white border-none shadow-lg shadow-orange-500/20"
className="rounded-[var(--radius-btn)] !text-black dark:!text-white border-none shadow-lg shadow-orange-500/20"
style={{ background: 'var(--brand-gradient)' }}
>
{saving ? "Saving..." : "Save Configuration"}

View File

@@ -287,7 +287,7 @@ export function ProfileSettings() {
</div>
<Button
onClick={handleCreateProfile}
className="!bg-[var(--brand-gradient)] hover:!opacity-90 text-white shadow-lg shadow-orange-500/20 border-none"
className="!bg-[var(--brand-gradient)] hover:!opacity-90 !text-black dark:!text-white shadow-lg shadow-orange-500/20 border-none"
>
Create New Profile
</Button>

View File

@@ -117,7 +117,7 @@ export function SummaryTemplateDialog({ open, onOpenChange, onSave, initial }: S
<Button
onClick={handleSave}
disabled={saving || !name.trim() || !prompt.trim() || !model.trim()}
className="!bg-[var(--brand-gradient)] hover:!opacity-90 text-white border-none"
className="!bg-[var(--brand-gradient)] hover:!opacity-90 !text-black dark:!text-white border-none"
>
{saving ? 'Saving...' : 'Save'}
</Button>