This commit is contained in:
root
2025-10-20 19:18:35 +00:00
parent 84be8e5828
commit 2c3379026b
5 changed files with 28 additions and 130 deletions
+2 -3
View File
@@ -668,10 +668,9 @@ export function Logs() {
className="w-full md:flex-1">
Export SQL</Button>
<Button
color="red"
onClick={handleDeleteFiltered}
disabled={actionLoading || loading || logs.length === 0}
className="w-full md:flex-1">
className="w-full md:flex-1 bg-sunsetCoral-500 hover:bg-sunsetCoral-600">
Angezeigte löschen</Button>
</div>
@@ -1015,7 +1014,7 @@ export function Logs() {
<button
onClick={() => handleDeleteLog(log.id)}
disabled={actionLoading}
className="rounded-md border border-red-600 px-3 py-1 text-xs text-red-300 transition hover:bg-red-600/20 disabled:opacity-60">
className="rounded-md border border-sunsetCoral-600 px-3 py-1 text-xs text-sunsetCoral-800 transition hover:bg-sunsetCoral-600/20 disabled:opacity-60">
Löschen
</button>
</Typography>
+3 -4
View File
@@ -856,7 +856,7 @@ export function Maintenance() {
<Button
onClick={handleSshTestConnection}
disabled={sshSaving || sshTesting || sshDeleting || updateRunning}
className="w-full bg-teal-500">
className="w-full bg-arcticBlue-500 hover:bg-arcticBlue-600">
{sshTesting ? 'Test läuft…' : 'Verbindung testen'}
</Button>
@@ -864,8 +864,7 @@ export function Maintenance() {
<Button
onClick={handleSshDeleteConfig}
disabled={sshSaving || sshTesting || sshDeleting || updateRunning}
className="w-full"
color="purple"
className="w-full hover:bg-sunsetCoral-600 bg-sunsetCoral-500"
>
{sshDeleting ? 'Löschen…' : 'SSH-Einstellungen löschen'}
</Button>
@@ -900,7 +899,7 @@ export function Maintenance() {
color="purple"
onClick={handleScriptReset}
disabled={!scriptConfig || scriptConfig.source !== "custom" || scriptSaving || updateRunning}
className="w-full">
className="w-full hover:bg-sunsetCoral-600 bg-sunsetCoral-500">
Standard wiederherstellen
</Button>