diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-12-29 16:26:36 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-12-29 16:26:36 +0100 |
commit | 6f3c97c5d32f93bb81b157bc4340fef8ee0b60ea (patch) | |
tree | b22f02a15ade46f519c650103362815a2c0ce21c /skins/larry/ie7hacks.css | |
parent | 49437c123a4435ce98e62edd084442ff20aaef1d (diff) | |
parent | b26171227804a135b8ba4fef605753ee2121be67 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'skins/larry/ie7hacks.css')
-rw-r--r-- | skins/larry/ie7hacks.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/skins/larry/ie7hacks.css b/skins/larry/ie7hacks.css index f07d79a65..d383c1e3e 100644 --- a/skins/larry/ie7hacks.css +++ b/skins/larry/ie7hacks.css @@ -17,6 +17,14 @@ height: expression((parseInt(document.documentElement.clientHeight)-150)+'px'); } +.minimal #mainscreen { + height: expression((parseInt(document.documentElement.clientHeight)-82)+'px'); +} + +.minimal #mainscreen.offset { + height: expression((parseInt(document.documentElement.clientHeight)-120)+'px'); +} + input.button { display: inline; font-size: 90%; @@ -29,7 +37,8 @@ a.deletebutton, .boxfooter .listbutton .inner, .attachmentslist li a.delete, .attachmentslist li a.cancelupload, -.previewheader .iconlink { +.previewheader .iconlink, +.minimal #taskbar .button-inner { /* workaround for text-indent which also offsets the background image */ text-indent: 0; font-size: 0; @@ -183,3 +192,16 @@ ul.toolbarmenu li label { padding: 0 1px 0 0; } +.minimal #topline { + width: 100%; + height: 18px; + box-sizing: border-box; +} + + +.minimal #taskbar a:hover .tooltip { + right: 34px; + top: 1px; +} + + |