mirror of
https://github.com/luneko/SweetTokyoNight.git
synced 2025-12-15 16:09:53 +01:00
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.
This commit is contained in:
@@ -111,7 +111,7 @@ SessionManagementScreen {
|
|||||||
contentItem: Text {
|
contentItem: Text {
|
||||||
text: loginButton.text
|
text: loginButton.text
|
||||||
font: loginButton.font
|
font: loginButton.font
|
||||||
opacity: enabled ? 1.0 : 0.3
|
opacity: enabled ? 1.0 : 0.8
|
||||||
color: "#ffffff"
|
color: "#ffffff"
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
verticalAlignment: Text.AlignVCenter
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
|||||||
Reference in New Issue
Block a user