From 445a4ca04dfcd255f9d89ee76757b04c2d87bbfc Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Fri, 13 May 2011 13:51:28 -0400
Subject: [PATCH] Fix empty name in search results and error when creating a new contact
---
skins/default/common.css | 38 +++++++++++++++++++++++++++++++++-----
1 files changed, 33 insertions(+), 5 deletions(-)
diff --git a/skins/default/common.css b/skins/default/common.css
index e052552..b1696ef 100644
--- a/skins/default/common.css
+++ b/skins/default/common.css
@@ -9,7 +9,7 @@
body.iframe
{
- margin: 0px;
+ margin: 20px 0 0 0;
background-color: #FFF;
}
@@ -76,6 +76,12 @@
padding: 1px 3px;
}
+input.placeholder,
+textarea.placeholder
+{
+ color: #aaa;
+}
+
input.button
{
height: 20px;
@@ -112,6 +118,20 @@
{
color: #666;
font-size: 11px;
+}
+
+.formlinks a,
+.formlinks a:visited
+{
+ color: #CC0000;
+ font-size: 11px;
+ text-decoration: none;
+}
+
+.formlinks a.disabled,
+.formlinks a.disabled:visited
+{
+ color: #999999;
}
/** common user interface objects */
@@ -252,6 +272,14 @@
.boxtitle .rightalign
{
float: right;
+}
+
+body.iframe .boxtitle
+{
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
}
.boxcontent
@@ -828,7 +856,7 @@
span.tablink a,
span.tablink-selected a
{
- display: block;
+ display: inline-block;
padding: 5px 10px 0 5px;
margin-left: 5px;
height: 23px;
@@ -874,9 +902,9 @@
cursor: default;
}
.quota_bg { background-color: white; }
-.quota_high { background-color: #F33131; }
-.quota_mid { background-color: #F5AD3C; }
-.quota_low { background-color: #91E164; }
+.quota_high { background: url(images/quota-colors.png) repeat-x 0 -28px #f90509; }
+.quota_mid { background: url(images/quota-colors.png) repeat-x 0 -14px #e3e909; }
+.quota_low { background: url(images/quota-colors.png) repeat-x 0 0px #05f905; }
.quota_text_high { color: white; }
.quota_text_mid { color: #666; }
.quota_text_low { color: #666; }
--
Gitblit v1.9.1