diff options
-rw-r--r-- | lib/gallery.common.css | 3 | ||||
-rw-r--r-- | modules/search/views/search.html.php | 2 | ||||
-rw-r--r-- | themes/wind/css/screen.css | 4 |
3 files changed, 3 insertions, 6 deletions
diff --git a/lib/gallery.common.css b/lib/gallery.common.css index be12af55..f6d5bf26 100644 --- a/lib/gallery.common.css +++ b/lib/gallery.common.css @@ -55,7 +55,6 @@ legend { #g-banner legend, #g-sidebar legend, -#g-content #g-search-form legend, input[type="hidden"] { display: none; } @@ -132,6 +131,7 @@ input[type="reset"] { /* Short forms ~~~~~~~~~~~~~~~~~~~~~~~ */ +.g-short-form legend, .g-short-form label { display: none; } @@ -151,6 +151,7 @@ input[type="reset"] { .g-short-form input[type=text] { color: #666; padding: .3em .6em; + width: 100%; } .g-short-form .textbox.g-error { diff --git a/modules/search/views/search.html.php b/modules/search/views/search.html.php index ac9f3c92..af14520b 100644 --- a/modules/search/views/search.html.php +++ b/modules/search/views/search.html.php @@ -21,7 +21,7 @@ <h1><?= t("Search Results") ?></h1> <? if (count($items)): ?> - <ul id="g-album-grid"> + <ul id="g-album-grid" class="ui-helper-clearfix"> <? foreach ($items as $item): ?> <? $item_class = "g-photo"; ?> <? if ($item->is_album()): ?> diff --git a/themes/wind/css/screen.css b/themes/wind/css/screen.css index 4ba56ba1..7d304837 100644 --- a/themes/wind/css/screen.css +++ b/themes/wind/css/screen.css @@ -40,10 +40,6 @@ h1 { font-size: 1.7em; } -#g-search-results h1 { - margin-bottom: 1em; -} - #g-progress h1 { font-size: 1.1em; } |