diff options
author | thomascube <thomas@roundcube.net> | 2009-05-27 15:48:45 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-05-27 15:48:45 +0000 |
commit | a9c813f19226d4e403f90541fc12d4e1c17e30a7 (patch) | |
tree | 9c7dd275fbed8c6797974e6a426ea9296822da5d /skins/default | |
parent | 3d3d1010cc9d03a73471cd095b623c09ed1fad49 (diff) |
Move more proprietary CSS styles to the ie-hacks file
Diffstat (limited to 'skins/default')
-rw-r--r-- | skins/default/common.css | 3 | ||||
-rw-r--r-- | skins/default/iehacks.css | 9 |
2 files changed, 9 insertions, 3 deletions
diff --git a/skins/default/common.css b/skins/default/common.css index 2e16b01bf..046843e94 100644 --- a/skins/default/common.css +++ b/skins/default/common.css @@ -197,8 +197,6 @@ a.button-logout right: 200px; z-index: 5000; opacity: 0.85; - /* IE */ - filter: alpha(opacity=85); } #message div @@ -408,7 +406,6 @@ table.records-table tr.unfocused td white-space: nowrap; opacity: 0.7; -moz-opacity: 0.7; - filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70); } a.rcmContactAddress diff --git a/skins/default/iehacks.css b/skins/default/iehacks.css index eada46846..40f60018f 100644 --- a/skins/default/iehacks.css +++ b/skins/default/iehacks.css @@ -8,6 +8,11 @@ input, textarea background-color: expression(this.type=='checkbox' || this.type=='radio' ? 'transparent' : '#ffffff'); } +#message +{ + filter: alpha(opacity=85); +} + #markmessagemenu, #searchmenu, #messagemenu @@ -173,3 +178,7 @@ body.iframe height: expression((parseInt(document.documentElement.clientHeight)-155)+'px'); } +#rcmdraglayer +{ + filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70); +} |