From f7022fd6a6352272c292828f1311c58511a8ba38 Mon Sep 17 00:00:00 2001 From: rimu <3310831+rimu@users.noreply.github.com> Date: Sat, 13 Jan 2024 23:19:31 +1300 Subject: [PATCH] dark mode bugfix --- app/static/structure.css | 4 ++++ app/static/structure.scss | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/app/static/structure.css b/app/static/structure.css index ea0fc016..a3b7c442 100644 --- a/app/static/structure.css +++ b/app/static/structure.css @@ -628,6 +628,10 @@ fieldset legend { background-color: #424549; color: whitesmoke; } +[data-bs-theme=dark] .comment .replies { + border-left-color: #424549; + border-top-color: #424549; +} .post_body img { max-height: 40vh; diff --git a/app/static/structure.scss b/app/static/structure.scss index 4d79f826..dc3cb827 100644 --- a/app/static/structure.scss +++ b/app/static/structure.scss @@ -266,6 +266,11 @@ nav, etc which are used site-wide */ color: whitesmoke; } } + + .comment .replies { + border-left-color: $super-dark-grey; + border-top-color: $super-dark-grey; + } } .post_body {