summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Unterkircher <unki@netshadow.at>2007-07-14 12:44:13 +0000
committerAndreas Unterkircher <unki@netshadow.at>2007-07-14 12:44:13 +0000
commite0bc5fe26524fb7cfe00baf586549e0bf0cf4bf5 (patch)
tree44265bad4ca62c1adce8e5de12cbfeddf5a8cebb
parentdd253c45192457c2e029fb957d7778eedf675f0d (diff)
some style improvements
git-svn-id: file:///var/lib/svn/phpfspot/trunk@200 fa6a889d-dae6-447d-9e79-4ba9a3039384
-rw-r--r--stylesheet.css15
-rw-r--r--templates/search.tpl41
2 files changed, 42 insertions, 14 deletions
diff --git a/stylesheet.css b/stylesheet.css
index 20c1974..a1c380e 100644
--- a/stylesheet.css
+++ b/stylesheet.css
@@ -1,7 +1,7 @@
body {
background-color: #000000;
color: rgb(26,151,15);
- font-family: verdana;
+ font-family: sans-serif;
font-style: normal;
border: solid 1px #ffffff;
border-color: rgb(15,15,15);
@@ -23,7 +23,7 @@ td.options {
border-right: solid 1px #000000;
}
-td.available_tags,td.selected_tags,td.searchfor {
+td.available_tags,td.selected_tags {
border-bottom: solid 1px #000000;
padding-top: 10px;
padding-bottom: 10px;
@@ -31,6 +31,16 @@ td.available_tags,td.selected_tags,td.searchfor {
line-height: 21px;
}
+td.searchfor {
+ border-bottom: solid 1px #000000;
+ padding-top: 10px;
+ padding-bottom: 10px;
+ padding-right: 10px;
+ line-height: 21px;
+ font-size: 12px;
+ vertical-align: middle;
+}
+
td.logo {
font-weight: bolder;
height: 40px;
@@ -73,7 +83,6 @@ a:hover {
a.tag {
color: #000000;
text-decoration: underline;
- font-style: italic;
}
a.tag:hover {
diff --git a/templates/search.tpl b/templates/search.tpl
index 51c1877..f0f8c0d 100644
--- a/templates/search.tpl
+++ b/templates/search.tpl
@@ -6,17 +6,36 @@
</tr>
<tr>
<td class="searchfor">
- <form action="" onsubmit="startTagSearch(document.getElementsByName('searchfor')[0].value); return false;">
- Tag: <input type="text" name="searchfor" value="{$searchfor}" size="15" />
- <input type="image" src="resources/doit.png" alt="Tag-Search" />
- </form>
- <form action="" onsubmit="startDateSearch(); return false;">
- Date:<br />
- {$from_date} <a href="javascript:showCalendar('from');"><img src="resources/date.png" id="frompic"/></a><br />
- {$to_date} <a href="javascript:showCalendar('to');"><img src="resources/date.png" id="topic" /></a><br />
- <input type="image" src="resources/doit.png" alt="Tag-Search" />
- <div id='calendar'></div>
- </form>
+ <table>
+ <form action="" onsubmit="startTagSearch(document.getElementsByName('searchfor')[0].value); return false;">
+ <tr>
+ <td>Tag:</td>
+ <td>
+ <input type="text" name="searchfor" value="{$searchfor}" size="15" />
+ </td>
+ <td>
+ <input type="image" src="resources/doit.png" alt="Tag-Search" />
+ </td>
+ </tr>
+ </form>
+ <form action="" onsubmit="startDateSearch(); return false;">
+ <tr>
+ <td>Date:</td>
+ <td>{$from_date} <a href="javascript:showCalendar('from');"><img src="resources/date.png" id="frompic"/></a></td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>&nbsp;</td>
+ <td>
+ {$to_date} <a href="javascript:showCalendar('to');"><img src="resources/date.png" id="topic" /></a>
+ </td>
+ <td>
+ <input type="image" src="resources/doit.png" alt="Tag-Search" />
+ </td>
+ </tr>
+ </form>
+ </table>
+ <div id='calendar'></div>
</td>
</tr>
</table>