diff options
author | jake%bugzilla.org <> | 2005-04-12 07:52:50 +0200 |
---|---|---|
committer | jake%bugzilla.org <> | 2005-04-12 07:52:50 +0200 |
commit | 531a3a34b85bd3c6284733869046270cc2d5300e (patch) | |
tree | d6b9a4eea7824ce2d3438f18a0fcd1768bd88bb1 /template/en/default/account | |
parent | 9782d3fe78d30a89ff6439e0a311d88d5ed190c5 (diff) | |
download | bugzilla-531a3a34b85bd3c6284733869046270cc2d5300e.tar.gz bugzilla-531a3a34b85bd3c6284733869046270cc2d5300e.tar.xz |
Bug 289594 - The table on the email settings page no longer is 100% wide. It also now supports even/odd row styling.
r=gerv, a=justdave
Diffstat (limited to 'template/en/default/account')
-rw-r--r-- | template/en/default/account/prefs/email.html.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/template/en/default/account/prefs/email.html.tmpl b/template/en/default/account/prefs/email.html.tmpl index f712bd8fa..787cc8dfb 100644 --- a/template/en/default/account/prefs/email.html.tmpl +++ b/template/en/default/account/prefs/email.html.tmpl @@ -148,7 +148,7 @@ document.write('<input type="button" value="Disable All Mail" onclick="SetCheckb description = "Voter" }, ] %] -<table width="100%" border="1"> +<table class="bz_emailprefs" border="1"> <tr> <td colspan="[% (useqacontact AND usevotes) ? '5' : ((useqacontact OR usevotes) ? '4' : '3') %]" @@ -171,7 +171,8 @@ document.write('<input type="button" value="Disable All Mail" onclick="SetCheckb </tr> [% FOREACH event = events %] - <tr> + [% count = loop.count() %] + <tr class="bz_row_[% count % 2 == 1 ? "odd" : "even" %]"> [% FOREACH relationship = relationships %] [% NEXT IF (relationship.id == constants.REL_QA AND NOT useqacontact) OR (relationship.id == constants.REL_VOTER AND NOT usevotes) %] |