From 3f24d06d2feb2e8055fad8f36d0cf0412ef17138 Mon Sep 17 00:00:00 2001 From: tersiswilvin <52929976+tersiswilvin@users.noreply.github.com> Date: Mon, 29 Aug 2022 00:17:37 -0700 Subject: [PATCH] Dark theme fixes Fixes a few issues regarding login pages and older browsers. --- public/css/appdark.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/public/css/appdark.css b/public/css/appdark.css index 839a474..c29d39a 100644 --- a/public/css/appdark.css +++ b/public/css/appdark.css @@ -52,18 +52,22 @@ body { color: white; } +.loggedout body { + background-color: transparent; +} + .loggedout { background-image: url('../img/animateddark.png'); background-color: rgb(1, 17, 48); } .content { - color: rgb(167 167 167); + color: rgb(167, 167, 167); background: rgb(25, 25, 25); } .content_signup { - color: rgb(167 167 167); + color: rgb(167, 167, 167); background: rgb(25, 25, 25); } @@ -122,7 +126,6 @@ input { color: rgb(200,200,200); } - .tab_selected { background: linear-gradient(180deg, #00a2ff 0%, #01639c 100%) }