diff options
author | Johan "Papa" Cwiklinski <trasher@odysseus.(none)> | 2010-05-25 07:51:33 +0200 |
---|---|---|
committer | Johan "Papa" Cwiklinski <trasher@odysseus.(none)> | 2010-05-25 07:51:33 +0200 |
commit | 8f6f256d8538e9ae9dde38fa38ed11b3c6c3e9cb (patch) | |
tree | 9d1f2a24c7e6341fba86da91ebb385a11e1ffaff | |
parent | b76086add9ffb0cbd9ddf54955df51db436ed07a (diff) |
There are no text filter ; styling table legend
-rw-r--r-- | css/rpmphp.css | 4 | ||||
-rw-r--r-- | rpm.php | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/css/rpmphp.css b/css/rpmphp.css index 89ce374..f312290 100644 --- a/css/rpmphp.css +++ b/css/rpmphp.css @@ -176,6 +176,10 @@ p{ list-style:none; width:20%; text-align:center; + background-color:#E5E5E5; + -moz-border-radius:5px 5px 5px 5px; + -webkit-border-radius:5px 5px 5px 5px; + padding:.5em 2em; } .error { @@ -161,7 +161,7 @@ include '_header.php'; <fieldset> <legend>Filter <?php echo strtoupper($type); ?> packages</legend> <input type="hidden" name='type' value="<?php echo $type; ?>" /> - <label for="what">Where to search: </label> + <label for="what">Criteria: </label> <select name="what" id="what"> <optgroup label="Pakages"> <option value="%fedora"<?php if ($what=='%fedora') echo " selected=\"selected\""; ?>>In fedora</option> @@ -188,9 +188,7 @@ try { } ?> </optgroup> - </select><br/> - <label for="rpmf">Criteria: </label> - <input type="text" name="rpmf" id="rpmf" size="20" /> + </select> <input type="submit" value="Filter" /> </fieldset> </form> |