diff options
| author | Chad Kieffer <chad@2tbsp.com> | 2009-02-12 04:25:43 +0000 |
|---|---|---|
| committer | Chad Kieffer <chad@2tbsp.com> | 2009-02-12 04:25:43 +0000 |
| commit | d4875583690dbf8b532427755d76aca33d4c63ae (patch) | |
| tree | 1f733ab150267b1e6062ebcb804a3029d16d9766 /themes/default/views | |
| parent | 886fd07bc209e525a8e3e9b11f904bb6b346deab (diff) | |
Fixed gViewMenu button issues. Fixed major admin_default theme issues, content now clears the menu. Added IE-specific stylesheet to admin theme.
Diffstat (limited to 'themes/default/views')
| -rw-r--r-- | themes/default/views/page.html.php | 2 | ||||
| -rw-r--r-- | themes/default/views/sidebar.html.php | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/themes/default/views/page.html.php b/themes/default/views/page.html.php index 418be89c..d463af1b 100644 --- a/themes/default/views/page.html.php +++ b/themes/default/views/page.html.php @@ -20,7 +20,7 @@ media="screen,print,projection" /> <link rel="stylesheet" type="text/css" href="<?= $theme->url("css/screen.css") ?>" media="screen,print,projection" /> - <!--[if lt IE 8]> + <!--[if IE]> <link rel="stylesheet" type="text/css" href="<?= $theme->url("css/fix-ie.css") ?>" media="screen,print,projection" /> <![endif]--> diff --git a/themes/default/views/sidebar.html.php b/themes/default/views/sidebar.html.php index d454804d..13bd3ce0 100644 --- a/themes/default/views/sidebar.html.php +++ b/themes/default/views/sidebar.html.php @@ -1,10 +1,12 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> -<div id="gViewMenu"> -<? if ($page_type == "album"):?> - <?= $theme->album_menu() ?> -<? elseif ($page_type == "photo") : ?> - <?= $theme->photo_menu() ?> -<? endif ?> +<div class="gToolbar"> + <div id="gViewMenu" class="gButtonSet"> + <? if ($page_type == "album"):?> + <?= $theme->album_menu() ?> + <? elseif ($page_type == "photo") : ?> + <?= $theme->photo_menu() ?> + <? endif ?> + </div> </div> <?= $theme->sidebar_blocks() ?> |
