diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-10-25 23:46:09 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-10-25 23:46:09 -0600 |
commit | 2b7a21dcbc39c8e11b46feb36fbf899e0a76bd8e (patch) | |
tree | d929f521697dcfc51d8bad541b6bd2ef4b02bd2a | |
parent | 76aa4bd1efc3db62326fa2c008de568b53b8710e (diff) |
Add clearfix to search results gallery-grid to clear the pager navigation. Other minor search results style updates. Don't display legends in short forms.
-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; } |