projects
/
pgwui_sql
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30ab1c2
)
Use a lighter than lightgrey to grey out the sql text when unused
author
Karl O. Pinc
<kop@karlpinc.com>
Wed, 18 Sep 2024 18:56:04 +0000
(13:56 -0500)
committer
Karl O. Pinc
<kop@karlpinc.com>
Wed, 18 Sep 2024 18:56:04 +0000
(13:56 -0500)
src/pgwui_sql/templates/sql_edit.mak
patch
|
blob
|
history
diff --git
a/src/pgwui_sql/templates/sql_edit.mak
b/src/pgwui_sql/templates/sql_edit.mak
index 1c977a80a9911e6668d967b792936b2c0eaaefc8..d68dbd8aba62ddf137bf3cc8058d0b3046831cd8 100644
(file)
--- 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 = '';
}