diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-12-22 15:51:18 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-12-22 15:51:18 +0100 |
commit | ec4862650f2da6ef3b0cdcb1ca135a64879c6b31 (patch) | |
tree | 7038f46b8fac1881e434f207d10883149999a8b9 /template/en/default/admin/classifications | |
parent | 61858962b06866a330960bd161591b000e26ae63 (diff) | |
download | bugzilla-ec4862650f2da6ef3b0cdcb1ca135a64879c6b31.tar.gz bugzilla-ec4862650f2da6ef3b0cdcb1ca135a64879c6b31.tar.xz |
Bug 322402: Inline styling using bgcolor=x or color=x should be replaced by CSS styles
r/a=justdave
Diffstat (limited to 'template/en/default/admin/classifications')
4 files changed, 9 insertions, 13 deletions
diff --git a/template/en/default/admin/classifications/del.html.tmpl b/template/en/default/admin/classifications/del.html.tmpl index 83e0812ab..f99d29632 100644 --- a/template/en/default/admin/classifications/del.html.tmpl +++ b/template/en/default/admin/classifications/del.html.tmpl @@ -8,10 +8,11 @@ [% PROCESS global/header.html.tmpl title = "Delete classification" + style_urls = ['skins/standard/admin.css'] %] <table border=1 cellpadding=4 cellspacing=0> -<tr bgcolor="#6666ff"> +<tr class="column_header"> <th valign="top" class="left">Part</th> <th valign="top" class="left">Value</th> @@ -25,7 +26,7 @@ [% IF classification.description %] [% classification.description FILTER html_light %] [% ELSE %] - <font color="red">description missing</font> + <span class="warning">description missing</span> [% END %] </td> diff --git a/template/en/default/admin/classifications/edit.html.tmpl b/template/en/default/admin/classifications/edit.html.tmpl index fddcb3f96..68fd046f2 100644 --- a/template/en/default/admin/classifications/edit.html.tmpl +++ b/template/en/default/admin/classifications/edit.html.tmpl @@ -26,18 +26,12 @@ [% FOREACH product = classification.products %] <tr> <th valign=top>[% product.name FILTER html %]</th> - <td valign=top> - [% IF product.description %] - [% product.description FILTER html_light %] - [% ELSE %] - <font color="red">description missing</font> - [% END %] - </td> + <td valign=top>[% product.description FILTER html_light %]</td> </tr> [% END %] </table> [% ELSE %] - <font color="red">none</font> + <span class="warning">none</span> [% END %] </td> </tr> diff --git a/template/en/default/admin/classifications/reclassify.html.tmpl b/template/en/default/admin/classifications/reclassify.html.tmpl index 3e12d3e42..ac4a09b14 100644 --- a/template/en/default/admin/classifications/reclassify.html.tmpl +++ b/template/en/default/admin/classifications/reclassify.html.tmpl @@ -22,7 +22,7 @@ [% IF classification.description %] [% classification.description FILTER html_light %] [% ELSE %] - <font color="red">description missing</font> + <span class="warning">description missing</span> [% END %] </td> diff --git a/template/en/default/admin/classifications/select.html.tmpl b/template/en/default/admin/classifications/select.html.tmpl index 8a033a950..02a3cd413 100644 --- a/template/en/default/admin/classifications/select.html.tmpl +++ b/template/en/default/admin/classifications/select.html.tmpl @@ -8,10 +8,11 @@ [% PROCESS global/header.html.tmpl title = "Select classification" + style_urls = ['skins/standard/admin.css'] %] <table border=1 cellpadding=4 cellspacing=0> - <tr bgcolor="#6666ff"> + <tr class="column_header"> <th>Edit Classification ...</th> <th>Description</th> <th>Sortkey</th> @@ -26,7 +27,7 @@ [% IF cl.description %] [% cl.description FILTER html_light %] [% ELSE %] - <font color="red">none</font> + <span class="warning">none</span> [% END %] </td> <td valign="top">[% cl.sortkey FILTER html %]</td> |