diff options
author | Zaphod <zaphod@piwigo.org> | 2012-03-27 21:05:28 +0000 |
---|---|---|
committer | Zaphod <zaphod@piwigo.org> | 2012-03-27 21:05:28 +0000 |
commit | dc882859018c5c01b15fee242e8ff14e74329ab3 (patch) | |
tree | 162e621193a5481b9040992ee4083870c0ab83eb /themes/elegant | |
parent | 0db5a354adf4531a852b539c11913d888fa2f4d6 (diff) |
feature 2587: compatibility with ie7
git-svn-id: http://piwigo.org/svn/trunk@13777 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/elegant')
-rw-r--r-- | themes/elegant/fix-ie7.css | 3 | ||||
-rw-r--r-- | themes/elegant/local_head.tpl | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/themes/elegant/fix-ie7.css b/themes/elegant/fix-ie7.css new file mode 100644 index 000000000..380666696 --- /dev/null +++ b/themes/elegant/fix-ie7.css @@ -0,0 +1,3 @@ +#theImage.infoshown { float: left;} +#theImage.infohidden { float: right;} +#imageToolBar .actionButtons { float: right;}
\ No newline at end of file diff --git a/themes/elegant/local_head.tpl b/themes/elegant/local_head.tpl index bdb3ca729..0be176629 100644 --- a/themes/elegant/local_head.tpl +++ b/themes/elegant/local_head.tpl @@ -2,4 +2,7 @@ {combine_script id='elegant.scripts_pp' load='footer' require='jquery' path='themes/elegant/scripts_pp.js'}
{else}
{combine_script id='elegant.scripts' load='footer' require='jquery' path='themes/elegant/scripts.js'}
-{/if}
\ No newline at end of file +{/if}
+ <!--[if IE 7]>
+ <link rel="stylesheet" type="text/css" href="{$ROOT_URL}themes/elegant/fix-ie7.css">
+ <![endif]-->
|