From ee3144f34a37d0adf8c9d99a27a8116a9914b9ef Mon Sep 17 00:00:00 2001 From: lepipele Date: Thu, 4 Jan 2018 08:59:44 -0600 Subject: [PATCH] Indicator now faintly visible without hover Reference: https://github.com/btcpayserver/btcpayserver/pull/23#issuecomment-355302053 --- BTCPayServer/wwwroot/css/normalizer.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/BTCPayServer/wwwroot/css/normalizer.css b/BTCPayServer/wwwroot/css/normalizer.css index 34a5afbf6..4ea32122b 100644 --- a/BTCPayServer/wwwroot/css/normalizer.css +++ b/BTCPayServer/wwwroot/css/normalizer.css @@ -8472,7 +8472,7 @@ strong { } .buyerTotalLine .fa-angle-double-down { - display: none; + opacity: 0.2; position: absolute; bottom: 0px; left: 49%; @@ -8483,7 +8483,7 @@ strong { } .buyerTotalLine:hover .fa-angle-double-down { - display: block; + opacity: 1; } .buyerTotalLine .fa-angle-double-up { @@ -8493,8 +8493,14 @@ strong { left: 49%; } + .buyerTotalLine.expanded .fa-angle-double-up { + display: block; + opacity: 0.2; + } + .buyerTotalLine.expanded:hover .fa-angle-double-up { display: block; + opacity: 1; } .single-item-order__right__btc-price__chevron {