diff options
author | thomascube <thomas@roundcube.net> | 2012-02-25 17:47:44 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-02-25 17:47:44 +0000 |
commit | ec366b32d328106d0a68602c0b12924a24da4634 (patch) | |
tree | ea1ba8b59f9acb88448e49c9671f1502dbe81174 /skins/larry/mail.css | |
parent | c0806c6dfbe21d466bfd9344cd2caeef0ba7cdfa (diff) |
PNG with alpha channel + filter:alpha() don't go well together on IE7
Diffstat (limited to 'skins/larry/mail.css')
-rw-r--r-- | skins/larry/mail.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 6e76ce0f8..a396d89b8 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -748,11 +748,11 @@ div.hide-headers { -moz-box-shadow: 0px 3px 4px 0px rgba(80, 80, 80, 0.6); box-shadow: 0px 3px 4px 0px rgba(80, 80, 80, 0.6); background: #fff; - background: -moz-linear-gradient(top, #f3f3f3 0%, #fff 8px, #fff 100%); - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3f3f3), color-stop(8px,#fff), color-stop(100%,#fff)); - background: -o-linear-gradient(top, #f3f3f3 0%, #fff 8px, #fff 100%); - background: -ms-linear-gradient(top, #f3f3f3 0%, #fff 8px, #fff 100%); - background: linear-gradient(top, #f3f3f3 0%, #fff 8px, #fff 100%); + background: -moz-linear-gradient(top, #f0f0f0 0%, #fff 8%, #fff 100%); + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(8%,#fff), color-stop(100%,#fff)); + background: -o-linear-gradient(top, #f0f0f0 0%, #fff 8%, #fff 100%); + background: -ms-linear-gradient(top, #f0f0f0 0%, #fff 8%, #fff 100%); + background: linear-gradient(top, #f0f0f0 0%, #fff 8%, #fff 100%); } #all-headers .ui-resizable-s { |