Use a lighter than lightgrey to grey out the sql text when unused
authorKarl O. Pinc <kop@karlpinc.com>
Wed, 18 Sep 2024 18:56:04 +0000 (13:56 -0500)
committerKarl O. Pinc <kop@karlpinc.com>
Wed, 18 Sep 2024 18:56:04 +0000 (13:56 -0500)
src/pgwui_sql/templates/sql_edit.mak

index 1c977a80a9911e6668d967b792936b2c0eaaefc8..d68dbd8aba62ddf137bf3cc8058d0b3046831cd8 100644 (file)
@@ -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 = '';
     }