From 02ce0f4d8cb5616440938d62b548e47d413847a2 Mon Sep 17 00:00:00 2001 From: Abraham Murciano Date: Thu, 15 Apr 2021 20:13:16 +0300 Subject: [PATCH] Made disabled login button have clearer text Having a disabled login button with almost transparent text makes it hard to read, thus not as aesthetic as a clearer label. IMHO transparent text is not that good an indicator that the button is unclickable. Besides, everyone knows that they have to enter a password before they log in, as is evident by the password input, and by the fact that they created a password. --- kde/sddm/Login.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde/sddm/Login.qml b/kde/sddm/Login.qml index d35499f..0d37ed3 100644 --- a/kde/sddm/Login.qml +++ b/kde/sddm/Login.qml @@ -111,7 +111,7 @@ SessionManagementScreen { contentItem: Text { text: loginButton.text font: loginButton.font - opacity: enabled ? 1.0 : 0.3 + opacity: enabled ? 1.0 : 0.8 color: "#ffffff" horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter