diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-08 18:13:26 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-11-08 18:13:26 -0700 |
commit | 46fda847ad625c085b020f719da1c37660ab93b9 (patch) | |
tree | f5af95a39b4af67c765aaa0670e93e49f9cda5cb /themes | |
parent | ed1bdd7b932d6d9b9bbeacc3a355e2f31c25ed15 (diff) |
Moved movie context-menu up to just under the movie. Fixed contextual menu font size on resize and movie pages.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/wind/css/screen.css | 10 | ||||
-rw-r--r-- | themes/wind/views/movie.html.php | 2 |
2 files changed, 5 insertions, 7 deletions
diff --git a/themes/wind/css/screen.css b/themes/wind/css/screen.css index 1a7fc110..bd17e0e4 100644 --- a/themes/wind/css/screen.css +++ b/themes/wind/css/screen.css @@ -73,7 +73,9 @@ h3 { font-size: .8em; } -#g-content #g-album-grid .g-item { +#g-album-grid .g-item, +#g-item #g-photo, +#g-item #g-movie { font-size: .7em; } @@ -284,11 +286,7 @@ td { #g-item #g-photo, #g-item #g-movie { - padding: 1em 0; -} - -#g-item #g-photo, -#g-item #g-movie { + padding: 2.2em 0; position: relative; } diff --git a/themes/wind/views/movie.html.php b/themes/wind/views/movie.html.php index 116fd95e..d91ffbc5 100644 --- a/themes/wind/views/movie.html.php +++ b/themes/wind/views/movie.html.php @@ -26,6 +26,7 @@ <div id="g-movie" class="ui-helper-clearfix"> <?= $item->movie_img(array("class" => "g-movie", "id" => "g-movie-id-{$item->id}")) ?> + <?= $theme->context_menu($item, "#g-movie-id-{$item->id}") ?> </div> <div id="g-info"> @@ -34,5 +35,4 @@ </div> <?= $theme->photo_bottom() ?> - <?= $theme->context_menu($item, "#g-movie-id-{$item->id}") ?> </div> |