diff options
-rw-r--r-- | htdocs/style/base.css | 11 | ||||
-rw-r--r-- | share/templates/en_US/feedback.tmpl | 10 |
2 files changed, 15 insertions, 6 deletions
diff --git a/htdocs/style/base.css b/htdocs/style/base.css index 9599834..63e493f 100644 --- a/htdocs/style/base.css +++ b/htdocs/style/base.css @@ -112,7 +112,7 @@ h5,h6 { /* @group Inputs */ -input#uri, input#file, input#uploaded_file, textarea { +input#uri, input#file, input#uploaded_file, input#keywords, input#short_desc, textarea { font-family: Monaco, "Courier New", Monospace; font-size: 0.9em; border: 1px solid #bbb; @@ -133,6 +133,15 @@ input#file, input#uploaded_file { width: 30em; } +input#mailsearch, input#bugsearch { + background-color: #EAEBEE; + color: #365D95; + padding: .3em 1em; + border: 1px outset #ccc; + } + input#mailsearch:active, input#bugsearch:active { + border-style: inset !important; + } a.submit { display: block; width: 10em; diff --git a/share/templates/en_US/feedback.tmpl b/share/templates/en_US/feedback.tmpl index e6f478e..bdac87b 100644 --- a/share/templates/en_US/feedback.tmpl +++ b/share/templates/en_US/feedback.tmpl @@ -81,11 +81,11 @@ <input id="type-index" name="type-index" type="hidden" value="www-validator" /> <input id="index-type" name="index-type" type="hidden" value="t" /> <TMPL_IF NAME="errmsg_id"> - <input name="keywords" type="text" size="33" maxlength="100" value="[VE][<TMPL_VAR NAME="errmsg_id" ESCAPE="URL">]" /> + <input id="keywords" name="keywords" type="text" size="33" maxlength="100" value="[VE][<TMPL_VAR NAME="errmsg_id" ESCAPE="URL">]" /> <TMPL_ELSE> - <input name="keywords" type="text" size="33" maxlength="100" value="" /> + <input id="keywords" name="keywords" type="text" size="33" maxlength="100" value="" /> </TMPL_IF> - <input type="submit" name="search" value="Search Mail Archives" /> + <input type="submit" id="mailsearch" name="search" value="Search Mail Archives" /> </p> </form> @@ -157,8 +157,8 @@ <p>You may also search the bug database directly:<br /> <input name="short_desc_type" type="hidden" value="allwordssubstr" /> <input name="product" type="hidden" value="Validator" /> - <input name="short_desc" type="text" size="40" maxlength="100" value="" /> - <input type="submit" name="search" value="Search Bug database" /> + <input name="short_desc" id="short_desc" type="text" size="40" maxlength="100" value="" /> + <input type="submit" name="search" id="bugsearch" value="Search Bug database" /> </p> </form> |