diff options
author | ivan <ivan> | 2007-02-14 21:23:53 +0000 |
---|---|---|
committer | ivan <ivan> | 2007-02-14 21:23:53 +0000 |
commit | 6309b438373b226e3bc4ec8406a64154f87e1ccd (patch) | |
tree | d8d3135c23d1503935d7823158a2530f395a1c12 | |
parent | ab9e07a6507647e1aaf59df75edc54b40a745643 (diff) |
grey out disabled text boxes for IE
-rwxr-xr-x | httemplate/search/report_cust_pkg.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/search/report_cust_pkg.html b/httemplate/search/report_cust_pkg.html index a2316e257..5b2efa2ca 100755 --- a/httemplate/search/report_cust_pkg.html +++ b/httemplate/search/report_cust_pkg.html @@ -31,6 +31,8 @@ what.form.<% $field %>_beginning_text.disabled = true; what.form.<% $field %>_ending_text.disabled = true; + what.form.<% $field %>_beginning_text.style.backgroundColor = '#dddddd'; + what.form.<% $field %>_ending_text.style.backgroundColor = '#dddddd'; what.form.<% $field %>_beginning_button.style.display = 'none'; what.form.<% $field %>_ending_button.style.display = 'none'; @@ -41,6 +43,8 @@ what.form.<% $field %>_beginning_text.disabled = false; what.form.<% $field %>_ending_text.disabled = false; + what.form.<% $field %>_beginning_text.style.backgroundColor = '#ffffff'; + what.form.<% $field %>_ending_text.style.backgroundColor = '#ffffff'; what.form.<% $field %>_beginning_button.style.display = ''; what.form.<% $field %>_ending_button.style.display = ''; |