From: Karl O. Pinc Date: Wed, 18 Sep 2024 18:56:04 +0000 (-0500) Subject: Use a lighter than lightgrey to grey out the sql text when unused X-Git-Url: https://papio.biology.duke.edu/gitweb/?a=commitdiff_plain;h=eb0633b0e81e79305cf1bdb0d9116c2a4f15c2ff;p=pgwui_sql Use a lighter than lightgrey to grey out the sql text when unused --- 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 = ''; }