From 72698e2e933964cf2b9b5e64957d7cc5cdb0bd74 Mon Sep 17 00:00:00 2001 From: Thomas Peterson Date: Mon, 17 Nov 2025 09:40:18 +0100 Subject: [PATCH] Backup --- examples/ServerManager/UI/ServerListTab.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/examples/ServerManager/UI/ServerListTab.php b/examples/ServerManager/UI/ServerListTab.php index 647a588..a134528 100644 --- a/examples/ServerManager/UI/ServerListTab.php +++ b/examples/ServerManager/UI/ServerListTab.php @@ -52,7 +52,9 @@ class ServerListTab // Refresh button $this->refreshButton = new Button( 'Server aktualisieren', - 'flex shadow-lg/50 flex-row gap-2 px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700', + 'flex shadow-lg/50 flex-row gap-2 px-4 py-2 bg-blue-600 rounded hover:bg-blue-700', + null, + 'text-white', ); $refreshIcon = new Icon(IconName::sync, 16, 'text-white'); $this->refreshButton->setIcon($refreshIcon); @@ -112,7 +114,7 @@ class ServerListTab // SFTP Manager Button (handler will be set by SftpManagerTab) $this->sftpButton = new Button( 'SFTP Manager öffnen', - 'rounded-md bg-blue-500 px-3 py-2 text-sm font-semibold text-white shadow-lg shadow-blue-500/50 focus:outline-none flex flex-row gap-2', + 'w-full rounded-md bg-blue-500 px-3 py-2 text-sm font-semibold shadow-lg shadow-blue-500/50 focus:outline-none flex flex-row gap-2', null, 'text-white', ); @@ -125,8 +127,10 @@ class ServerListTab $this->sshTerminalButton = new Button( 'SSH Terminal öffnen', 'w-full border border-gray-300 rounded px-3 py-2 flex shadow-lg/100 shadow-lime-300 flex-row gap-2 bg-lime-300 text-black mb-2', + null, + 'text-black', ); - $sshTerminalIcon = new Icon(IconName::terminal, 16, 'text-white'); + $sshTerminalIcon = new Icon(IconName::terminal, 16, 'text-black'); $this->sshTerminalButton->setIcon($sshTerminalIcon); $serverListTab = $this;