diff options
Diffstat (limited to 'themes/default')
-rw-r--r-- | themes/default/css/screen.css | 19 | ||||
-rw-r--r-- | themes/default/views/header.html.php | 8 |
2 files changed, 19 insertions, 8 deletions
diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index f8cbe878..a3ccedfc 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -74,7 +74,7 @@ th { /** ******************************************************************* * 2) Base text styles ******************************************************************/ -#gContent { +#gContent { font-size: 1em; } @@ -721,6 +721,23 @@ li.gError select { margin-right: 20px; } +#gSearchForm li { + float: left; + padding: .3em .5em .4em .5em; +} + +#gSearchForm input[type="text"], +#gSearchForm input[type="password"], +#gSearchForm textarea, +#gSearchForm .gValidationRule { + width: 10em; +} + +#gSearchForm input[type="Submit"] { + margin-top: 1em; +} + + #gSearchForm label { display: none; } diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php index c8eb2145..1ca2a952 100644 --- a/themes/default/views/header.html.php +++ b/themes/default/views/header.html.php @@ -12,12 +12,7 @@ </ul> </div> -<form id="gSearchForm" class="gInline"> - <ul class="gNoLabels"> - <li><label for="search">Search</label><input type="text" name="search" value="<?= _("Search Gallery ...") ?>"/></li> - <li><input type="submit" value="<?= _("search") ?>" /></li> - </ul> -</form> +<?= $theme->header_bottom() ?> <ul id="gBreadcrumbs" class="gClearFix"> <? foreach ($parents as $parent): ?> @@ -25,4 +20,3 @@ <? endforeach ?> <li class="active"><?= $item->title_edit ?></li> </ul> -<?= $theme->header_bottom() ?> |