From ad0eb6e17cb20239ee74499b39454b8abdd72580 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Sat, 19 Oct 2024 16:07:52 -0700 Subject: [PATCH] Dark hero.is-light banner for dark theme --- web/static/css/dark-theme.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/web/static/css/dark-theme.css b/web/static/css/dark-theme.css index 6bec6fd..7396956 100644 --- a/web/static/css/dark-theme.css +++ b/web/static/css/dark-theme.css @@ -30,6 +30,14 @@ color: rgb(26, 0, 5) !important; } +/* hero.is-light.is-bold still is white on Bulma's dark theme */ +.hero.is-light.is-bold { + background-image: linear-gradient(141deg, #333 0, #181818 100%); + * { + color: #fff; + } +} + /* force lit-up notification buttons (on the mobile top nav, e.g. new Messages/Friends) to show as a bright bulma is-warning style (.tag.is-warning) */ .nonshy-navbar-notification { @@ -37,7 +45,6 @@ color: rgb(26, 0, 5) !important; } - .has-text-dark { /* note: this css file otherwise didn't override this, dark's always dark, brighten it! */ color: #b5b5b5 !important;