dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit 1c8898199280ee3c807621b3c3c49aa0814a7593
parent ae9d814911481fe442b863633908c1ee64e64071
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Wed, 12 Feb 2025 09:47:01 -0800

fix background color

Diffstat:
Mpkg/web/public/views/pages/chat-archive.gohtml | 2+-
Mpkg/web/public/views/pages/chat.gohtml | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pkg/web/public/views/pages/chat-archive.gohtml b/pkg/web/public/views/pages/chat-archive.gohtml @@ -1,6 +1,6 @@ {{ define "extra-head" }} <style> - body { + html, body { background-color: {{ .AuthUser.ChatBackgroundColor }} !important; } .mod-btn { diff --git a/pkg/web/public/views/pages/chat.gohtml b/pkg/web/public/views/pages/chat.gohtml @@ -3,11 +3,11 @@ {{ define "extra-head" }} <style> {{ if .Data.RedRoom }} - body { + html, body { background-color: #3b0000 !important; } {{ else }} - body { + html, body { background-color: {{ .AuthUser.ChatBackgroundColor }} !important; } {{ end }}