From 2116268884210718d88f988d3342c7435745492d Mon Sep 17 00:00:00 2001 From: Andrew Engelbrecht Date: Mon, 27 Dec 2021 18:12:59 -0500 Subject: [PATCH] more theming for our module --- www/fsftheme.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/www/fsftheme.css b/www/fsftheme.css index 392abc7..ff0ba5c 100644 --- a/www/fsftheme.css +++ b/www/fsftheme.css @@ -490,3 +490,9 @@ caption { .loginicon img { min-width: 48px; } +/* for "wrong password" notice, which at time of writing doesn't have a class or id. + div:first-child doesn't apply to first div that is preceded by some other element, + so it doesn't clobber styles of divs that appear elsewhere on the page */ +#content div:first-child { border: none !important; background-color: #fff !important; } +#content div:first-child h2 { border: none !important; } + -- 2.25.1