Commit 46cb9df8 authored by Francisco Donalisio's avatar Francisco Donalisio Committed by Max Kanat-Alexander

Bug 635202: Make the Simple search page compliant with WAI

r=timello, a=mkanat
parent 05ddc23d
...@@ -199,4 +199,8 @@ div.bz_section_title span { ...@@ -199,4 +199,8 @@ div.bz_section_title span {
.bz_search_section, ul.bz_search_section { .bz_search_section, ul.bz_search_section {
margin-top: 1em; margin-top: 1em;
} }
\ No newline at end of file
.bz_simple_search_form th {
text-align: right;
}
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
[% PROCESS global/header.html.tmpl [% PROCESS global/header.html.tmpl
title = "Simple Search" title = "Simple Search"
style_urls = [ "skins/standard/search_form.css" ]
%] %]
[% WRAPPER search/tabs.html.tmpl %] [% WRAPPER search/tabs.html.tmpl %]
...@@ -42,11 +43,11 @@ for "crash secure SSL flash". ...@@ -42,11 +43,11 @@ for "crash secure SSL flash".
<input type="hidden" name="query_format" value="specific"> <input type="hidden" name="query_format" value="specific">
<input type="hidden" name="order" value="relevance desc"> <input type="hidden" name="order" value="relevance desc">
<table> <table summary="Search fields" class="bz_simple_search_form">
<tr> <tr>
<td align="right" valign="baseline"> <th>
<b><label for="bug_status">Status:</label></b> <label for="bug_status">Status:</label>
</td> </th>
<td> <td>
<select name="bug_status" id="bug_status"> <select name="bug_status" id="bug_status">
[% statuses = [ { name = 'open', label = "Open" }, [% statuses = [ { name = 'open', label = "Open" },
...@@ -62,9 +63,9 @@ for "crash secure SSL flash". ...@@ -62,9 +63,9 @@ for "crash secure SSL flash".
</td> </td>
</tr> </tr>
<tr> <tr>
<td align="right" valign="baseline"> <th>
<b><label for="product">Product:</label></b> <label for="product">Product:</label>
</td> </th>
<td> <td>
<select name="product" id="product"> <select name="product" id="product">
<option value="">All</option> <option value="">All</option>
...@@ -93,9 +94,9 @@ for "crash secure SSL flash". ...@@ -93,9 +94,9 @@ for "crash secure SSL flash".
</td> </td>
</tr> </tr>
<tr> <tr>
<td align="right" valign="baseline"> <th>
<b><label for="content">Words:</label></b> <label for="content">Words:</label>
</td> </th>
<td> <td>
<input name="content" size="40" id="content" <input name="content" size="40" id="content"
value="[% default.content.0 FILTER html %]"> value="[% default.content.0 FILTER html %]">
......
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