From 74cbbb98af2ed2762efdb7aaabd2600479b7d80a Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 29 Apr 2021 13:20:42 +0200 Subject: [PATCH] added disabled styles --- igniter/stylesheet.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/igniter/stylesheet.css b/igniter/stylesheet.css index 140e225bed..bd8276f882 100644 --- a/igniter/stylesheet.css +++ b/igniter/stylesheet.css @@ -108,6 +108,10 @@ QMenu::item:selected { #ExitBtn:hover{ background-color: rgb(185, 185, 185); } +#ExitBtn:disabled { + background-color: rgba(185, 185, 185, 31); + color: rgba(64, 64, 64, 63); +} #ButtonWithOptions QPushButton{ border: none; @@ -119,6 +123,10 @@ QMenu::item:selected { #ButtonWithOptions QPushButton:hover{ background-color: #2f9d73; } +#ButtonWithOptions QPushButton:disabled { + background-color: rgba(72, 200, 150, 31); + color: rgba(64, 64, 64, 63); +} #ButtonWithOptions QToolButton{ border: none; @@ -128,3 +136,7 @@ QMenu::item:selected { #ButtonWithOptions QToolButton:hover{ background-color: #2f9d73; } +#ButtonWithOptions QToolButton:disabled { + background-color: rgba(72, 200, 150, 31); + color: rgba(64, 64, 64, 63); +}