From d2a64865a7089133345dc9eed63ddab691d43575 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Fri, 20 May 2011 02:25:46 -0400
Subject: [PATCH] - Fix func_get_args() usage for PHP<5.3 (#1487928)

---
 skins/default/common.css |   82 ++++++++++++++++++++++++++++++++++++----
 1 files changed, 73 insertions(+), 9 deletions(-)

diff --git a/skins/default/common.css b/skins/default/common.css
index 53e07e1..6f1f264 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 */
@@ -188,8 +208,8 @@
   position: absolute;
   display: none;
   top: -1px;
-  left: 200px;
-  right: 200px;
+  margin-left: -225px;
+  left: 50%;
   z-index: 5000;
   opacity: 0.85;
 }
@@ -197,7 +217,7 @@
 #message div
 {
   width: 400px;
-  margin: 0px auto;
+  margin: 0px;
   min-height: 22px;
   padding: 8px 10px 8px 46px;
 }
@@ -247,6 +267,19 @@
   font-weight: bold;
   overflow: hidden;
   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
@@ -391,13 +424,13 @@
 
 .splitter-h
 {
-  cursor: n-resize;
+  cursor: n-resize; cursor: row-resize;
   background-position: center 2px;
 }
 
 .splitter-v
 {
-  cursor: e-resize;
+  cursor: e-resize; cursor: col-resize;
   background-position: 2px center;
 }
 
@@ -457,6 +490,11 @@
   background-color: #c00;
 }
 
+.popupmenu li input
+{
+  float: left;
+}
+
 .darkbg
 {
   background-color: #F2F2F2 !important;
@@ -471,7 +509,7 @@
 
 .dropbutton:hover
 {
-  background: url(images/dbutton.png) 0 0 no-repeat transparent;
+/*  background: url(images/dbutton.png) 0 0 no-repeat transparent; */
 }
 
 .dropbutton span
@@ -483,7 +521,7 @@
 .dropbutton span:hover
 {
   cursor: pointer;
-  background-position: -64px 0;
+  background-position: -74px 0;
 }
 
 
@@ -823,7 +861,7 @@
 span.tablink a,
 span.tablink-selected a
 {
-  display: block;
+  display: inline-block;
   padding: 5px 10px 0 5px;
   margin-left: 5px;
   height: 23px;
@@ -843,9 +881,35 @@
   background-position: right -23px;
 }
 
+fieldset
+{
+  margin-bottom: 1em;
+  border: 1px solid #999999;
+  padding: 4px 8px 9px 8px; 
+}
+
+legend
+{
+  color: #999999;
+}
+
 fieldset.tabbed
 {
   margin-top: 22px;
   padding-top: 12px;
 }
 
+.quota_text {
+  text-align: center;
+  font-size: 10px;
+  color: #666;
+  border: 1px solid #999;
+  cursor: default;
+}
+.quota_bg { background-color: white; }
+.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