From bbcdd5ed0d66d80ddfa834fb7deece82b2e772ca Mon Sep 17 00:00:00 2001 From: d11n Date: Mon, 8 Nov 2021 12:16:57 +0100 Subject: [PATCH] Bootstrap: Fix table styles (#3079) --- BTCPayServer/wwwroot/main/bootstrap/bootstrap.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/BTCPayServer/wwwroot/main/bootstrap/bootstrap.css b/BTCPayServer/wwwroot/main/bootstrap/bootstrap.css index 2319601eb..d9e828862 100644 --- a/BTCPayServer/wwwroot/main/bootstrap/bootstrap.css +++ b/BTCPayServer/wwwroot/main/bootstrap/bootstrap.css @@ -1577,7 +1577,7 @@ progress { } .table > :not(:first-child) { - border-top: 2px solid currentColor; + border-top: 2px solid var(--btcpay-body-border-medium); } .caption-top { @@ -9991,6 +9991,11 @@ textarea.w-auto { margin: 1.5rem -.5rem; } +/* Fix table group border width */ +.table > :not(:first-child) { + border-top-width: 1px; +} + /* custom utility classes */ .bg-tile { background-color: var(--btcpay-bg-tile);