From bf2f39ea6d2b49c7495a43cca19ab18f27f8292e Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Mon, 29 Sep 2008 09:02:02 -0400 Subject: [PATCH] - #1485290: Fix unread counter when displaying cached massage in preview panel - remove some empty lines in app.js --- skins/default/mail.css | 42 ++++++++++++++++++++++++++++++++++++------ 1 files changed, 36 insertions(+), 6 deletions(-) diff --git a/skins/default/mail.css b/skins/default/mail.css index 1502bd2..0ddff7f 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -52,6 +52,7 @@ border: 1px solid #CCC; padding: 1px; opacity: 0.9; + filter:alpha(opacity=90); z-index: 240; } @@ -439,10 +440,6 @@ width: expression(parseInt(document.getElementById('mailcontframe').clientWidth)+'px'); } -/* safari hack \*/ -html>body*#messagelist[id$="messagelist"]:not([class="none"]) { table-layout: auto; } -/**/ - #messagelist thead tr td { height: 20px; @@ -503,6 +500,11 @@ text-decoration: none; white-space: nowrap; cursor: inherit; +} + +#messagelist tbody tr td.subject a +{ + cursor: default; } #messagelist col @@ -597,6 +599,12 @@ color: #CCCCCC; } +/* safari hacks \*/ +html>body*#messagelist[id$="messagelist"]:not([class="none"]) { width: 99.8%; } +html>body*#messagelist[id$="messagelist"]:not([class="none"]) tr td.flag, +html>body*#messagelist[id$="messagelist"]:not([class="none"]) tr td.icon { width: 20px; } +html>body*input[type$="file"]:not([class="none"]) { background-color: transparent; border: 0; } +/**/ #quotadisplay { @@ -616,6 +624,21 @@ #messageframe +{ + position: absolute; + top: 0px; + left: 170px; + right: 0px; + bottom: 0px; + border: 1px solid #999; + background-color: #FFF; + overflow: auto; + /* css hack for IE */ + width: expression((parseInt(this.parentNode.offsetWidth)-170)+'px'); + height: expression((parseInt(this.parentNode.offsetHeight))+'px'); +} + +#printmessageframe { position: absolute; top: 0px; @@ -665,7 +688,7 @@ table.headers-table td.header-title { - width: 85px; + width: 80px; color: #666666; font-weight: bold; text-align: right; @@ -733,7 +756,6 @@ #messagebody { position:relative; - min-height: 300px; padding-bottom: 10px; background-color: #FFFFFF; } @@ -762,6 +784,8 @@ padding: 0px; font-family: monospace; white-space: -moz-pre-wrap !important; + white-space: -o-pre-wrap !important; + white-space: pre-wrap !important; white-space: pre; word-wrap: break-word; /* IE (and Safari) */ } @@ -1001,6 +1025,12 @@ border-bottom: 0; } +table.headers-table tr td.all +{ + padding: 2px 6px 4px 6px; + border-bottom: 0; +} + td.show-headers { background: url(images/icons/down_small.gif) no-repeat center; -- Gitblit v1.9.1