diff options
author | thomascube <thomas@roundcube.net> | 2012-02-25 17:57:24 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-02-25 17:57:24 +0000 |
commit | a1bd76232a662a4ec3468305f8e66632c6c92479 (patch) | |
tree | ea5134f38d572448d6330a515afe690645be1544 /skins/larry | |
parent | 589385f37fa1de64327cbc037b30ce4efc18a3cc (diff) |
Same problems with PNG and filter:alpha() on IE8
Diffstat (limited to 'skins/larry')
-rw-r--r-- | skins/larry/ie7hacks.css | 8 | ||||
-rw-r--r-- | skins/larry/iehacks.css | 7 | ||||
-rw-r--r-- | skins/larry/ui.js | 2 |
3 files changed, 8 insertions, 9 deletions
diff --git a/skins/larry/ie7hacks.css b/skins/larry/ie7hacks.css index e73e0a64a..e56e1e349 100644 --- a/skins/larry/ie7hacks.css +++ b/skins/larry/ie7hacks.css @@ -44,14 +44,6 @@ a.deletebutton, display: inline; } -.toolbar a.button.disabled, -.boxpagenav a.icon.disabled, -.pagenav a.button.disabled span.inner, -.boxfooter .listbutton.disabled .inner, -.dropbutton a.button.disabled + .dropbuttontip { - background-image: url(images/buttons.gif); -} - .dropbutton .dropbuttontip { right: -2px; } diff --git a/skins/larry/iehacks.css b/skins/larry/iehacks.css index b77396788..8a775ac5c 100644 --- a/skins/larry/iehacks.css +++ b/skins/larry/iehacks.css @@ -109,6 +109,13 @@ ul.toolbarmenu li a.active:hover, filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#efefef', GradientType=0); } +.toolbar a.button.disabled, +.boxpagenav a.icon.disabled, +.pagenav a.button.disabled span.inner, +.boxfooter .listbutton.disabled .inner, +.dropbutton a.button.disabled + .dropbuttontip { + background-image: url(images/buttons.gif); +} /*** addressbook.css ***/ diff --git a/skins/larry/ui.js b/skins/larry/ui.js index 759bfabe1..979ed05c7 100644 --- a/skins/larry/ui.js +++ b/skins/larry/ui.js @@ -153,7 +153,7 @@ function rcube_mail_ui() } /*** login page ***/ else if (rcmail.env.task == 'login') { - if (bw.ie && bw.vendver < 9) { + if (bw.ie && bw.vendver < 8) { var popup = $('<div>') .addClass('readtext') .html("Roundcube will not work well with the crappy browser ya' using. Get yourself a new internet browsing software and don't come back without!<p>Sincerly,<br/>the Roundcube Dev Team</p>") |