Commit 2d0ef8a4 authored by Christopher Trom's avatar Christopher Trom Committed by Frédéric Buclin

Bug 821717: Table headers in the "Saved Searches" and "Email Prefs" panels are…

Bug 821717: Table headers in the "Saved Searches" and "Email Prefs" panels are wrongly right-aligned r/a=LpSolit
parent 9c1ee9e4
......@@ -354,6 +354,11 @@ table#flags td {
text-align: left;
}
table#email_prefs th,
table#shared_search_prefs th,
table#saved_search_prefs th {
text-align: center;
}
.flag_select {
min-width: 3em;
}
......
......@@ -161,7 +161,7 @@ document.write('<input type="button" value="Disable All Mail" onclick="SetCheckb
[% num_columns = relationships.size %]
<table class="bz_emailprefs" border="1">
<table class="bz_emailprefs" id="email_prefs" border="1">
<tr>
<td colspan="[% num_columns FILTER html %]" align="center" width="50%">
<b>When my relationship to this [% terms.bug %] is:</b>
......@@ -173,7 +173,7 @@ document.write('<input type="button" value="Disable All Mail" onclick="SetCheckb
<tr>
[% FOREACH relationship = relationships %]
<th align="center" width="9%">
<th width="9%">
[% relationship.description FILTER html %]
</th>
[% END %]
......
......@@ -31,7 +31,7 @@
<p>Your saved searches are as follows:</p>
<blockquote>
<table border="1" cellpadding="3">
<table id="saved_search_prefs" border="1" cellpadding="3">
<tr>
<th>
Search
......@@ -146,7 +146,7 @@
[% IF user.queries_available.size %]
<p>You may use these searches saved and shared by others:</p>
<table border="1" cellpadding="3">
<table id="shared_search_prefs" border="1" cellpadding="3">
<tr>
<th>
Search
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment