From abbb4d0e06d2d17b155ff362403e10a02353a415 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 17 Sep 2024 17:57:19 -0500 Subject: [PATCH] Force background color so pgwui_sql column headings "stick" on the page This is a kludge. See the comments in pgwui_sql's pgwui_sql.css file. --- src/pgwui_common/static/pgwui.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pgwui_common/static/pgwui.css b/src/pgwui_common/static/pgwui.css index f35e8cf..4b9433f 100644 --- a/src/pgwui_common/static/pgwui.css +++ b/src/pgwui_common/static/pgwui.css @@ -23,6 +23,7 @@ * Karl O. Pinc */ +body { background-color: white; } /* kludge, see pgwui_sql's pgwui_sql.css */ /* error and other status messages */ .error { color: red; -- 2.34.1