From d0b973cf6aed4a7cb705f706624d25b31d19ed52 Mon Sep 17 00:00:00 2001
From: svncommit <devs@roundcube.net>
Date: Thu, 18 Sep 2008 07:54:14 -0400
Subject: [PATCH] Bind cookie gotten over HTTPS to HTTPS only (#1485336).

---
 skins/default/mail.css |   31 +++++++++++++++++++++++++++++--
 1 files changed, 29 insertions(+), 2 deletions(-)

diff --git a/skins/default/mail.css b/skins/default/mail.css
index 1502bd2..2b0990c 100644
--- a/skins/default/mail.css
+++ b/skins/default/mail.css
@@ -440,7 +440,8 @@
 }
 
 /* safari hack \*/
-html>body*#messagelist[id$="messagelist"]:not([class="none"]) { table-layout: auto; }
+html>body*#messagelist[id$="messagelist"]:not([class="none"]) { width: 99%; }
+html>body*input[type$="file"]:not([class="none"]) { background-color: transparent; border:0; }
 /**/
 
 #messagelist thead tr td
@@ -503,6 +504,11 @@
   text-decoration: none;
   white-space: nowrap;
   cursor: inherit;
+}
+
+#messagelist tr td.subject a
+{
+  cursor: default;
 }
 
 #messagelist col
@@ -619,6 +625,21 @@
 {
   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(document.documentElement.clientWidth)-220)+'px');
+  height: expression((parseInt(document.documentElement.clientHeight)-125)+'px');
+}
+
+#printmessageframe
+{
+  position: absolute;
+  top: 0px;
   left: 0px;
   right: 0px;
   bottom: 0px;
@@ -665,7 +686,7 @@
 
 table.headers-table td.header-title
 {
-  width: 85px;
+  width: 80px;
   color: #666666;
   font-weight: bold;
   text-align: right;
@@ -1001,6 +1022,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