diff options
author | alecpl <alec@alec.pl> | 2008-09-20 08:32:00 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-09-20 08:32:00 +0000 |
commit | a1f7220e9f23ea81b5b626d20f25039724b3413e (patch) | |
tree | 011d0ec75f2674be368a18f97a7c3c363c8d36e9 /skins/default/mail.css | |
parent | fc1a10b4d5f0128297e2475d09132187da7d08a8 (diff) |
- prevent splitters "jumps" when page is loading (set style reading cookie in skin template, using new 'expression' feature)
Diffstat (limited to 'skins/default/mail.css')
-rw-r--r-- | skins/default/mail.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skins/default/mail.css b/skins/default/mail.css index 0c10ff717..fc47d0047 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -633,8 +633,8 @@ html>body*input[type$="file"]:not([class="none"]) { background-color: transparen background-color: #FFF; overflow: auto; /* css hack for IE */ - width: expression((parseInt(document.documentElement.clientWidth)-220)+'px'); - height: expression((parseInt(document.documentElement.clientHeight)-125)+'px'); + width: expression((parseInt(this.parentNode.offsetWidth)-170)+'px'); + height: expression((parseInt(this.parentNode.offsetHeight))+'px'); } #printmessageframe |