From ae579cee860c90183b3968d9658ffe0b3ba29dd5 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Thu, 18 Sep 2008 16:48:04 -0400
Subject: [PATCH] Also list message/rfc822 parts as attachment if a filename is specified

---
 skins/default/common.css |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

diff --git a/skins/default/common.css b/skins/default/common.css
index 38aebd5..7d3d35f 100644
--- a/skins/default/common.css
+++ b/skins/default/common.css
@@ -18,7 +18,7 @@
   margin: 10px;
 }
 
-body, td, th, span, div, p, h3
+body, td, th, div, p, h3
 {
   font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
   font-size: 12px;
@@ -97,6 +97,12 @@
 input.button:hover
 {
   color: black;
+}
+
+input.mainaction
+{
+  font-weight: bold;
+  border: 1px solid #999;
 }
 
 img
@@ -187,6 +193,8 @@
   right: 200px;
   z-index: 5000;
   opacity: 0.85;
+  /* IE */
+  filter: alpha(opacity=85);
 }
 
 #message div
@@ -230,8 +238,10 @@
 
 .splitter
 {
+  user-select: none;
+  -moz-user-select: none;
+  -khtml-user-select: none;
   position: absolute;
-  padding: 2px;
   background: url(images/dimple.png) center no-repeat;
 }
 
@@ -244,7 +254,7 @@
 .splitter-v
 {
   cursor: e-resize;
-  background-position: 1px center;
+  background-position: 2px center;
 }
 
 .boxtitle
@@ -378,6 +388,8 @@
 
 #rcmdraglayer
 {
+  min-width: 300px;
+  width: auto !important;
   width: 300px;
   border: 1px solid #999999;
   background-color: #F9F9F9;
@@ -386,6 +398,7 @@
   padding-top: 3px;
   padding-bottom: 3px;
   font-size: 11px;
+  white-space: nowrap;
   opacity: 0.7;
   -moz-opacity: 0.7;
   filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);

--
Gitblit v1.9.1