From eb0633b0e81e79305cf1bdb0d9116c2a4f15c2ff Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Wed, 18 Sep 2024 13:56:04 -0500 Subject: [PATCH] Use a lighter than lightgrey to grey out the sql text when unused --- src/pgwui_sql/templates/sql_edit.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pgwui_sql/templates/sql_edit.mak b/src/pgwui_sql/templates/sql_edit.mak index 1c977a8..d68dbd8 100644 --- a/src/pgwui_sql/templates/sql_edit.mak +++ b/src/pgwui_sql/templates/sql_edit.mak @@ -76,7 +76,7 @@ function toggle_sql_used(elem) { sql_text = document.getElementById('sql_id'); if (elem.checked) { - sql_text.style.backgroundColor = 'lightgrey'; + sql_text.style.backgroundColor = '#ececec'; } else { sql_text.style.backgroundColor = ''; } -- 2.34.1