improve spaces in forms
This commit is contained in:
parent
59a0ae960c
commit
9325949f17
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=50750
1 changed files with 4 additions and 2 deletions
|
@ -970,6 +970,7 @@ i { color: #008000; }
|
||||||
span.footer_links { font-size: small; }
|
span.footer_links { font-size: small; }
|
||||||
input, button { font-size: large; }
|
input, button { font-size: large; }
|
||||||
input[name='query'] { text-align: center; }
|
input[name='query'] { text-align: center; }
|
||||||
|
span.space { font-size: xx-small; }
|
||||||
</style>
|
</style>
|
||||||
|;
|
|;
|
||||||
|
|
||||||
|
@ -1726,11 +1727,12 @@ sub formquery {
|
||||||
print <<ETX;
|
print <<ETX;
|
||||||
<form method="get" action="$BASE">
|
<form method="get" action="$BASE">
|
||||||
<!-- Manual Page or Keyword Search: -->
|
<!-- Manual Page or Keyword Search: -->
|
||||||
|
|
||||||
<input id="query" value="$query" name="query" size="36" $autofocus />
|
<input id="query" value="$query" name="query" size="36" $autofocus />
|
||||||
<button type="submit" name="apropos" value="0">man</button>
|
<button type="submit" name="apropos" value="0">man</button>
|
||||||
<button type="submit" name="apropos" value="1">apropos</button>
|
<button type="submit" name="apropos" value="1">apropos</button>
|
||||||
<br class="second_row" />
|
<br/>
|
||||||
|
<span class="space"> </span><br/>
|
||||||
|
|
||||||
ETX
|
ETX
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue