From 04b95effba5cbf5ae7b2bd8dadf34e8f9e68afc9 Mon Sep 17 00:00:00 2001 From: Luke Prior <22492406+LukePrior@users.noreply.github.com> Date: Sat, 9 Oct 2021 19:07:15 +1100 Subject: [PATCH] CSS Dark Mode Improvements --- RX_FSK/data/style.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/RX_FSK/data/style.css b/RX_FSK/data/style.css index 2a32214..fbdfab6 100755 --- a/RX_FSK/data/style.css +++ b/RX_FSK/data/style.css @@ -72,7 +72,6 @@ td#sfreq { display: none; flex: 1; padding: 6px 12px; - border: 1px solid #ccc; border-top: none; flex-direction: column; overflow: auto; @@ -344,7 +343,7 @@ p{ h2{ color: white; } - table, th, td, .save, .topnav a.active { + table, th, td, .save, a.active { color: white; border: 1px solid grey; border-collapse: collapse; @@ -354,4 +353,13 @@ p{ color: white; background-color: #333; } -} \ No newline at end of file + a:link, a:visited { + color: grey !important; + } + .topnav { + background-color: grey; + } + .topnav a:visited { + color: white !important; + } +}