diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2014-01-07 11:42:19 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2014-01-07 11:42:19 +0100 |
commit | 2b574f4d63e4ada0db82ca5a56773b3acf771d78 (patch) | |
tree | b9523ffbccca38f11cf862fb2eb32d95737d9541 /template/en/default/global | |
parent | d4f65f36b7d31d50f39264882c5440b842429bba (diff) | |
download | bugzilla-2b574f4d63e4ada0db82ca5a56773b3acf771d78.tar.gz bugzilla-2b574f4d63e4ada0db82ca5a56773b3acf771d78.tar.xz |
Bug 840407: Remove the "align" and "valign" attributes
r/a=justdave
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/choose-classification.html.tmpl | 10 | ||||
-rw-r--r-- | template/en/default/global/choose-product.html.tmpl | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/template/en/default/global/choose-classification.html.tmpl b/template/en/default/global/choose-classification.html.tmpl index 0ecd68dc2..1a59f6d89 100644 --- a/template/en/default/global/choose-classification.html.tmpl +++ b/template/en/default/global/choose-classification.html.tmpl @@ -20,16 +20,16 @@ [% PROCESS global/header.html.tmpl %] <h2>First, you must pick a classification on which to enter [% terms.abug %]:</h2> -<table> +<table id="choose_classification"> <tr> - <th> + <th class="right"> <a href="[% target FILTER uri %]?classification=__all [% IF cloned_bug_id %]&cloned_bug_id=[% cloned_bug_id FILTER uri %][% END -%] [%- IF format %]&format=[% format FILTER uri %][% END %]"> All</a>: </th> - <td valign="top"> Show all products</td> + <td>Show all products</td> </tr> <tr> <th colspan="2"> </th> @@ -37,7 +37,7 @@ [% FOREACH class = classifications %] <tr> - <th> + <th class="right"> <a href="[% target FILTER uri %]?classification=[% class.name FILTER uri -%] [%- IF cloned_bug_id %]&cloned_bug_id=[% cloned_bug_id FILTER uri %][% END -%] [%- IF format %]&format=[% format FILTER uri %][% END %]"> @@ -45,7 +45,7 @@ </th> [% IF class.description %] - <td valign="top"> [% class.description FILTER html_light %]</td> + <td>[% class.description FILTER html_light %]</td> [% END %] </tr> [% END %] diff --git a/template/en/default/global/choose-product.html.tmpl b/template/en/default/global/choose-product.html.tmpl index 30de0f9fd..b6b75fdbc 100644 --- a/template/en/default/global/choose-product.html.tmpl +++ b/template/en/default/global/choose-product.html.tmpl @@ -32,7 +32,7 @@ <h2>[% h2 FILTER html %]</h2> -<table> +<table id="choose_product"> [% FOREACH c = classifications %] [% IF c.object %] @@ -44,14 +44,14 @@ [% FOREACH p = c.products %] <tr> - <th valign="top"> + <th class="right"> <a href="[% target %]?product=[% p.name FILTER uri -%] - [%- IF cloned_bug_id %]&cloned_bug_id=[% cloned_bug_id FILTER uri %][% END -%] + [%- IF cloned_bug_id %]&cloned_bug_id=[% cloned_bug_id FILTER uri %][% END -%] [%- IF format %]&format=[% format FILTER uri %][% END %]"> [% p.name FILTER html FILTER no_break %]</a>: </th> - <td valign="top">[% p.description FILTER html_light %]</td> + <td>[% p.description FILTER html_light %]</td> </tr> [% END %] |