aboutsummaryrefslogtreecommitdiffstats
path: root/template/yoga/header.tpl
diff options
context:
space:
mode:
authorchrisaga <chrisaga@piwigo.org>2006-07-22 09:21:40 +0000
committerchrisaga <chrisaga@piwigo.org>2006-07-22 09:21:40 +0000
commite3c4d79f5be8d732185c151f9ac84ff0ddb51166 (patch)
tree192dd18d159e705c5998dda7a8f09ad15fce1112 /template/yoga/header.tpl
parenta15839b18305b53d9767dd58ae03b1e6d690ac67 (diff)
fix bugs 244: different display of checkbox in IE/firefox and 484: Missing onfocus/onblur
in some user section *.tpl and many admin section *.tpl handle FORM elements with a behaviour (inputfix.htc) in IE the behaviour sets onfocus and onblur events too (no longer needed in *.tpl) other browsers use css selector :focus and [type=___] git-svn-id: http://piwigo.org/svn/trunk@1491 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/header.tpl')
-rw-r--r--template/yoga/header.tpl5
1 files changed, 4 insertions, 1 deletions
diff --git a/template/yoga/header.tpl b/template/yoga/header.tpl
index 050857ad0..1684c6cd1 100644
--- a/template/yoga/header.tpl
+++ b/template/yoga/header.tpl
@@ -27,7 +27,10 @@ the "text/nonsense" prevents gecko based browsers to load it -->
<style>
/* only because we need \{pwg_root\} otherwise use fix-ie5-ie6.css */
BODY { behavior:url("{pwg_root}template-common/csshover.htc"); }
- A IMG, .button, .icon { behavior:url("{pwg_root}template-common/tooltipfix.htc"); }
+ A IMG, .button, .icon {
+ behavior:url("{pwg_root}template-common/tooltipfix.htc");
+ }
+ FORM { behavior: url("{pwg_root}template-common/inputfix.htc"); }
</style>
<script type="text/javascript" src="{pwg_root}include/pngfix.js"></script>
<![endif]-->