diff options
author | Stef Walter <stef@memberwebs.com> | 2006-01-21 00:53:15 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2006-01-21 00:53:15 +0000 |
commit | 13461e5282ede2470d24bec06ebbffd104290d07 (patch) | |
tree | f16f3edb4b01b69bfb1acf18104323a22b9f2b83 /html/style.css | |
parent | 5818b8a46be86ea42d2f558e43117907e654b266 (diff) |
Internet Explorer compatibility plus some fixes.
Diffstat (limited to 'html/style.css')
-rw-r--r-- | html/style.css | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/html/style.css b/html/style.css index 6b45978..fdacb1b 100644 --- a/html/style.css +++ b/html/style.css @@ -58,7 +58,7 @@ body /* Our sample header (which gets copied for each group) is hidden */ #header-template - { display: none; } + { visibility: hidden; } /* ----------------------------------------------------------------------------- * GRAPHS/FRAME @@ -105,11 +105,14 @@ img.graph display: none; } -img.action +.action { margin: 3px; cursor: pointer; - filter: alpha(opacity=75); + + /* COMPAT: IE doesn't support :hover on anything but links + so transparency has no use whatsover */ + -moz-opacity: 0.75; -khtml-opacity: 0.75; opacity: 0.75; @@ -117,7 +120,6 @@ img.action img.action:hover { - filter: alpha(opacity=100); -moz-opacity: 1; -khtml-opacity: 1; opacity: 1; |