From 2a030fe7fbe8d516bec6c952cc19ca520c0f0dae Mon Sep 17 00:00:00 2001 From: Umar Bolatov Date: Mon, 18 May 2020 12:52:26 -0700 Subject: [PATCH] Use different close button color variable (#1580) fix #1579 --- BTCPayServer/wwwroot/main/bootstrap/bootstrap.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BTCPayServer/wwwroot/main/bootstrap/bootstrap.css b/BTCPayServer/wwwroot/main/bootstrap/bootstrap.css index aecd11f10..8fa525078 100644 --- a/BTCPayServer/wwwroot/main/bootstrap/bootstrap.css +++ b/BTCPayServer/wwwroot/main/bootstrap/bootstrap.css @@ -3766,11 +3766,11 @@ input[type="button"].btn-block { font-size: 1.5rem; font-weight: 700; line-height: 1; - color: var(--btcpay-color-black); + color: var(--btcpay-color-dark-accent); text-shadow: 0 1px 0 var(--btcpay-color-white); opacity: .5; } .close:hover { - color: var(--btcpay-color-black); + color: var(--btcpay-color-dark-accent); text-decoration: none; } .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { opacity: .75; }