summaryrefslogtreecommitdiff
path: root/gitweb
diff options
context:
space:
mode:
authorTony Finch <dot@dotat.at>2013-08-20 16:59:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-08-20 20:00:57 (GMT)
commitaf52bd5f58eed99608b4681df91ba0e1beeb81d5 (patch)
tree2760ce35c8d78ec31a3c206d3551462962372613 /gitweb
parent860ccc605da1d40c0331113eb552151fa925002e (diff)
downloadgit-af52bd5f58eed99608b4681df91ba0e1beeb81d5.zip
git-af52bd5f58eed99608b4681df91ba0e1beeb81d5.tar.gz
git-af52bd5f58eed99608b4681df91ba0e1beeb81d5.tar.bz2
gitweb: make search help link less ugly
The search help link was a superscript question mark right next to a drop-down menu, which looks misaligned and is a cramped and awkward click target. Remove the superscript tags and add some spacing to fix these nits. Add a title attribute to provide an explanatory mouseover. Signed-off-by: Tony Finch <dot@dotat.at> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gitweb')
-rwxr-xr-xgitweb/gitweb.perl4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl
index c029b98..b80a7f1 100755
--- a/gitweb/gitweb.perl
+++ b/gitweb/gitweb.perl
@@ -4030,8 +4030,8 @@ sub print_search_form {
$cgi->input({-name=>"h", -value=>$search_hash, -type=>"hidden"}) . "\n" .
$cgi->popup_menu(-name => 'st', -default => 'commit',
-values => ['commit', 'grep', 'author', 'committer', 'pickaxe']) .
- $cgi->sup($cgi->a({-href => href(action=>"search_help")}, "?")) .
- " search:\n",
+ " " . $cgi->a({-href => href(action=>"search_help"),
+ -title => "search help" }, "?") . " search:\n",
$cgi->textfield(-name => "s", -value => $searchtext, -override => 1) . "\n" .
"<span title=\"Extended regular expression\">" .
$cgi->checkbox(-name => 'sr', -value => 1, -label => 're',