From 8e528fd7bf2e2bd1e20c7e7de5eefb26bf6b19d9 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Wed, 23 May 2012 14:09:57 -0400
Subject: [PATCH] hide_blockquote - a new plugin for hiding citation blocks

---
 skins/default/common.css |  179 +++++++++++++++++++++++++++++++++++++++++++++--------------
 1 files changed, 135 insertions(+), 44 deletions(-)

diff --git a/skins/default/common.css b/skins/default/common.css
index e052552..7f13a85 100644
--- a/skins/default/common.css
+++ b/skins/default/common.css
@@ -2,14 +2,16 @@
 
 body
 {
+  font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
   margin: 8px;
   background-color: #F6F6F6;
-  color: #000000;
+  color: #000;
+  font-size: 12px;
 }
 
 body.iframe
 {
-  margin: 0px;
+  margin: 20px 0 0 0;
   background-color: #FFF;
 }
 
@@ -18,10 +20,10 @@
   margin: 10px;
 }
 
-body, td, th, div, p, h3, select, input, textarea
+td, th, div, p, select, input, textarea
 {
-  font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
   font-size: 12px;
+  font-family: inherit;
 }
 
 th
@@ -36,13 +38,13 @@
 
 a, a:active, a:visited
 {
-  color: #000000;
+  color: #000;
   outline: none;
 }
 
 a.button, a.button:visited, a.tab, a.tab:visited, a.axislist
 {
-  color: #000000;
+  color: #000;
   text-decoration: none;
 }
 
@@ -56,7 +58,7 @@
 hr
 {
   height: 1px;
-  background-color: #666666;
+  background-color: #666;
   border-style: none;
 }
 
@@ -65,15 +67,23 @@
 input[type="password"],
 textarea
 {
-  border: 1px solid #666666;
-  color: #333333;
-  background-color: #ffffff;
+  border: 1px solid #666;
+  color: #333;
+  background-color: #FFF;
 }
 
 input, textarea
 {
   color: black;
   padding: 1px 3px;
+}
+
+input.placeholder,
+textarea.placeholder,
+input:-moz-placeholder,
+textarea:-moz-placeholder
+{
+  color: #aaa;
 }
 
 input.button
@@ -90,6 +100,13 @@
 input.button:hover
 {
   color: black;
+}
+
+input.button[disabled],
+input.button[disabled]:hover
+{
+  color: #aaa;
+  border-color: #ccc;
 }
 
 input.mainaction
@@ -114,6 +131,20 @@
   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 */
 
 #mainscreen
@@ -125,14 +156,10 @@
   left: 20px;
 }
 
-#header
+body > #logo
 {
-  position: absolute;
-  top: 8px;
-  left: 19px;
-  width: 170px;
-  height: 40px;
-  z-index: 100;
+  margin-left: 12px;
+  cursor: pointer;
 }
 
 #taskbar
@@ -141,9 +168,9 @@
   top: 0px;
   right: 0px;
   height: 24px;
-  width: 100%;
+  left: 250px;
   background: url(images/taskbar.png) top right no-repeat;
-  padding: 10px 4px 5px 0px;
+  padding: 10px 6px 5px 0px;
   text-align: right;
   white-space: nowrap;
   z-index: 2;
@@ -183,7 +210,7 @@
   background-position: 0 -75px;
 }
 
-#message
+body > #message
 {
   position: absolute;
   display: none;
@@ -194,7 +221,7 @@
   opacity: 0.85;
 }
 
-#message div
+body > #message div
 {
   width: 400px;
   margin: 0px;
@@ -202,34 +229,45 @@
   padding: 8px 10px 8px 46px;
 }
 
-#message div.notice,
-#remote-objects-message
+body > #message div.notice,
+body > #messagebody .part-notice,
+#message-objects div.notice
 {
   background: url(images/display/icons.png) 6px 3px no-repeat;
   background-color: #F7FDCB;
   border: 1px solid #C2D071;
 }
 
-#message div.error,
-#message div.warning
+body > #message div.error,
+body > #message div.warning,
+#message-objects div.warning,
+#message-objects div.error
 {
   background: url(images/display/icons.png) 6px -97px no-repeat;
   background-color: #EF9398;
   border: 1px solid #DC5757;
 }
 
-#message div.confirmation
+body > #message div.confirmation,
+#message-objects div.confirmation
 {
   background: url(images/display/icons.png) 6px -47px no-repeat;
   background-color: #A6EF7B;
   border: 1px solid #76C83F;
 }
 
-#message div.loading
+body > #message div.loading,
+#message-objects div.loading
 {
   background: url(images/display/loading.gif) 6px 3px no-repeat;
   background-color: #EBEBEB;
   border: 1px solid #CCCCCC;
+}
+
+body > #message a
+{
+  cursor: pointer;
+  text-decoration: underline;
 }
 
 .box
@@ -246,12 +284,23 @@
   font-size: 11px;
   font-weight: bold;
   overflow: hidden;
+  text-overflow: ellipsis;
+  -o-text-overflow: ellipsis;
+  white-space: nowrap;
   background: url(images/listheader.gif) top left repeat-x #CCC;
 }
 
 .boxtitle .rightalign
 {
   float: right;
+}
+
+body.iframe .boxtitle
+{
+  position: fixed;
+  top: 0;
+  left: 0;
+  width: 100%;
 }
 
 .boxcontent
@@ -326,11 +375,6 @@
   opacity: 0.35;
 }
 
-.pagenav
-{
-  min-width: 250px;
-}
-
 .pagenav span
 {
   color: #444;
@@ -348,6 +392,7 @@
   height: 11px;
   padding: 0;
   margin: 1px;
+  margin-top: 2px;
   overflow: hidden;
   background: url(images/pagenav.gif) 0 0 no-repeat transparent;
   opacity: 0.99; /* this is needed to make buttons appear correctly in Chrome */
@@ -447,6 +492,7 @@
   padding: 2px 10px;
   text-decoration: none;
   min-height: 14px;
+  background: transparent;
 }
 
 .popupmenu li a.active,
@@ -456,10 +502,26 @@
   color: #333;
 }
 
-.popupmenu li a.active:hover
+.popupmenu li a.active:hover,
+.popupmenu.selectable li a.selected:hover
 {
   color: #fff;
   background-color: #c00;
+}
+
+.popupmenu li.block input
+{
+  float: left;
+}
+
+.popupmenu.selectable li a.selected
+{
+  background: url(images/messageicons.png) 2px -372px no-repeat;
+}
+
+.popupmenu.selectable li a
+{
+  padding-left: 20px;
 }
 
 .darkbg
@@ -491,6 +553,11 @@
   background-position: -74px 0;
 }
 
+img.uploading
+{
+  width: 16px;
+  height: 16px;
+}
 
 /***** common table settings ******/
 
@@ -545,8 +612,8 @@
 {
   position: absolute;
   top: 55px;
-  right: 20px;
-  width: 182px;
+  right: 10px;
+  width: 190px;
   height: 20px;
   text-align: right;
   background: url(images/searchfield.gif) top left no-repeat;
@@ -556,7 +623,7 @@
 {
   position: absolute;
   top: 3px;
-  right: 4px;
+  right: 12px;
   text-decoration: none;
 }
 
@@ -564,7 +631,7 @@
 {
  position: absolute;
  top: 3px;
- right: 160px;
+ right: 168px;
 }
 
 #quicksearchbar img
@@ -583,7 +650,6 @@
   padding: 0px;
   border: none;
 }
-
 
 /***** roundcube webmail pre-defined classes *****/
 
@@ -693,9 +759,18 @@
   margin: auto;
 }
 
-#rcmloginuser, #rcmloginpwd, #rcmloginhost
+#login-form table td.input input
 {
   width: 200px;
+}
+
+#login-bottomline
+{
+	width: 400px;
+	margin: 5em auto;
+	font-size: 85%;
+	text-align: center;
+	color: #333;
 }
 
 #console
@@ -703,7 +778,8 @@
   opacity: 0.8;
 }
 
-.disabled
+.disabled,
+a.disabled
 {
   color: #999;
 }
@@ -782,6 +858,21 @@
   padding-top: 2px;
 }
 
+#searchmenu
+{
+  width: 160px;
+}
+
+#searchmenu ul.toolbarmenu
+{
+  margin: 0;
+}
+
+#searchmenu ul.toolbarmenu li
+{
+  margin: 1px 4px 1px;
+}
+
 
 /***** tabbed interface elements *****/
 
@@ -828,7 +919,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 +965,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