diff options
author | Francisco Donalisio <francsd@linux.vnet.ibm.com> | 2011-03-31 22:26:05 +0200 |
---|---|---|
committer | Tiago Mello <timello@gmail.com> | 2011-03-31 22:26:05 +0200 |
commit | 827893640965d055b40193c825dad3555acb4eb3 (patch) | |
tree | c2d5681d2e941c4e8055e6edd1b5b41c9d2cbd00 | |
parent | 4b6a0edcd181006967bf436e051b153131d4d994 (diff) | |
download | bugzilla-827893640965d055b40193c825dad3555acb4eb3.tar.gz bugzilla-827893640965d055b40193c825dad3555acb4eb3.tar.xz |
Bug 635764: Remove WCAG 2.0 violations from the bug list pages to make it
W3C WAI compliant.
r=timello, a=LpSolit
-rw-r--r-- | skins/standard/buglist.css | 7 | ||||
-rw-r--r-- | template/en/default/list/list.html.tmpl | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/skins/standard/buglist.css b/skins/standard/buglist.css index 46c5f608a..2cb92b781 100644 --- a/skins/standard/buglist.css +++ b/skins/standard/buglist.css @@ -17,6 +17,13 @@ * * Contributor(s): Myk Melez <myk@mozilla.org> */ +.bz_query_head { + text-align: center; +} + +.bz_query_timestamp { + font-weight: bold; +} .search_description { margin: .5em 0; diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index 15184d06b..28540cdc0 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -52,9 +52,9 @@ doc_section = "query.html#list" %] -<div class="bz_query_head" align="center"> +<div class="bz_query_head"> <span class="bz_query_timestamp"> - <b>[% currenttime FILTER time('%a %b %e %Y %T %Z') FILTER html %]</b><br> + [% currenttime FILTER time('%a %b %e %Y %T %Z') FILTER html %]<br> </span> [% IF debug %] @@ -67,7 +67,7 @@ [% IF user.settings.display_quips.value == 'on' %] [% DEFAULT quip = "$terms.Bugzilla would like to put a random quip here, but no one has entered any." %] <span class="bz_quip"> - <a href="quips.cgi"><i>[% quip FILTER html %]</i></a> + <a href="quips.cgi"><em>[% quip FILTER html %]</em></a> </span> [% END %] @@ -245,7 +245,7 @@ <input type="hidden" name="remtype" value="asnamed"> <input type="hidden" name="token" value="[% issue_hash_token(['savedsearch']) FILTER html %]"> <input type="text" id="save_newqueryname" name="newqueryname" size="20" - value="[% defaultsavename FILTER html %]"> + title="New query name" value="[% defaultsavename FILTER html %]"> </form> </td> [% END %] |