diff options
| author | Chad Kieffer <chad@2tbsp.com> | 2008-11-13 03:39:18 +0000 |
|---|---|---|
| committer | Chad Kieffer <chad@2tbsp.com> | 2008-11-13 03:39:18 +0000 |
| commit | c63ddc34329075293b5a7130f5ab0677631ab3af (patch) | |
| tree | 1fbc3c4dd08bc1337da542039124f830176f192c /themes/default/views | |
| parent | 74216a3c636673fd49e82a7c31c0c9ed1de60e7f (diff) | |
Major updates to form CSS. Now using unordered lists for layouts. Added .gInline for forms like login, search, tags. Updated comment, login, search, and tagging forms. All form styles live in screen.css now. Still a lot to do, but this is a good foundation.
Diffstat (limited to 'themes/default/views')
| -rw-r--r-- | themes/default/views/header.html.php | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php index 52c3992b..e427838b 100644 --- a/themes/default/views/header.html.php +++ b/themes/default/views/header.html.php @@ -16,8 +16,7 @@ <?= _("Login") ?> | <a href="javascript:close_login()">X</a> </span> <? endif; ?> - <span id="gLoginForm" class="gDisplayNone" formSrc="<?= url::site("login") ?>" > - </span> + <span id="gLoginForm" class="gDisplayNone" formSrc="<?= url::site("login") ?>"></span> </div> <ul id="gSiteMenu"> <li><a href="<?= url::base() ?>"><?= _("HOME") ?></a></li> @@ -27,9 +26,11 @@ <li><a href="#"><?= _("ADMIN") ?></a></li> </ul> -<form id="gSearchForm"> - <input type="text" class="text" value="<?= _("Search Gallery ...") ?>"/> - <input type="submit" class="submit" value="search" /> +<form id="gSearchForm" class="gInline"> + <ul class="gNoLabels"> + <li><input type="text" value="<?= _("Search Gallery ...") ?>"/></li> + <li><input type="submit" value="search" /></li> + </ul> </form> <ul id="gBreadcrumbs"> |
