From 83d7f4b182269b7e1ae84aac4f5b7fe818b81762 Mon Sep 17 00:00:00 2001 From: Joe Uhren Date: Thu, 19 Oct 2023 20:30:49 -0600 Subject: [PATCH] Fix for sketchy theme markets page -Before this fix, using the sketchy theme with the dark background table color would cause the Market > Buy/Sell order table data to have a black background which was pretty much unreadable --- public/css/style.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/public/css/style.scss b/public/css/style.scss index f5dca44..11cba3d 100644 --- a/public/css/style.scss +++ b/public/css/style.scss @@ -1138,6 +1138,13 @@ tr { } } +/* Fix for sketchy v5.13 theme turning all table data black */ +@if $theme-name == "sketchy" { + .table-dark td { + background-color: transparent; + } +} + .margin-left-5 { margin-left: 5px; }