diff options
-rw-r--r-- | themes/wind/css/fix-ie.css | 15 | ||||
-rw-r--r-- | themes/wind/views/page.html.php | 2 |
2 files changed, 15 insertions, 2 deletions
diff --git a/themes/wind/css/fix-ie.css b/themes/wind/css/fix-ie.css index f7f08486..ac100da4 100644 --- a/themes/wind/css/fix-ie.css +++ b/themes/wind/css/fix-ie.css @@ -7,6 +7,10 @@ zoom: 1; } +#g-sidebar { + overflow: hidden; +} + #g-photo, #g-movie { zoom: 1; @@ -22,8 +26,17 @@ input.submit { display: inline !important; } +.g-short-form input[type='submit'] { + line-height: 1em; + padding: .38em .3em; +} + #g-add-tag-form input.textbox { - width: 110px; + width: 110px !important; +} + +#g-add-tag-form input[type='submit'] { + padding: .3em 0 !important; } #g-dialog .g-cancel { diff --git a/themes/wind/views/page.html.php b/themes/wind/views/page.html.php index fd1b3973..9f94b04f 100644 --- a/themes/wind/views/page.html.php +++ b/themes/wind/views/page.html.php @@ -29,7 +29,7 @@ <?= $theme->css("themeroller/ui.base.css") ?> <?= $theme->css("gallery.common.css") ?> <?= $theme->css("screen.css") ?> - <!--[if lt IE 8]> + <!--[if lte IE 8]> <link rel="stylesheet" type="text/css" href="<?= $theme->url("css/fix-ie.css") ?>" media="screen,print,projection" /> <![endif]--> |