mirror of
https://github.com/rishikanthc/Scriberr.git
synced 2026-07-01 08:15:46 +00:00
Fix button colors
This commit is contained in:
@@ -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 ? (
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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"}
|
||||
|
||||
@@ -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"}
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user