From e5d8126c8cd67f0fa696bb44f2f4ef6c432a3d54 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 28 Dec 2019 14:03:03 -0600 Subject: [PATCH] Make unavailable upgrades more obviously unavailable --- gorge.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/gorge.css b/gorge.css index a827370..166797d 100644 --- a/gorge.css +++ b/gorge.css @@ -354,7 +354,7 @@ button { width: 80px; height: 80px; display: block; - background-color: #444; + background-color: #333; transition: 0.2s; text-align: center; box-shadow: inset 0px 0px 0px 2px black; @@ -370,6 +370,10 @@ button { transform: translate(0, 10px); } +.upgrade-button-inactive > .upgrade-icon-holder { + opacity: 0.6; +} + [class^="fa-"], [class*=" fa-"] { display: inline-block; height: 100%; @@ -388,11 +392,11 @@ button { } .upgrade-button.upgrade-button-inactive { - background-color: #222; + background-color: #111; } .upgrade-button.upgrade-button-inactive:hover { - background-color: #333; + background-color: #222; box-shadow: inset 0px 0px 0px 2px red; }