You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2008/06/09 23:35:47 UTC

svn commit: r665902 - /ofbiz/trunk/framework/images/webapp/images/maincss.css

Author: jleroux
Date: Mon Jun  9 14:35:47 2008
New Revision: 665902

URL: http://svn.apache.org/viewvc?rev=665902&view=rev
Log:
A 1st patch for calendar colors from "Colors and localisation for the calendar" (https://issues.apache.org/jira/browse/OFBIZ-1825) - OFBIZ-1825

Modified:
    ofbiz/trunk/framework/images/webapp/images/maincss.css

Modified: ofbiz/trunk/framework/images/webapp/images/maincss.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/maincss.css?rev=665902&r1=665901&r2=665902&view=diff
==============================================================================
--- ofbiz/trunk/framework/images/webapp/images/maincss.css (original)
+++ ofbiz/trunk/framework/images/webapp/images/maincss.css Mon Jun  9 14:35:47 2008
@@ -1994,10 +1994,10 @@
 /* ================================= */
 
 .calendar_date_select {
-  color:white;
-  border:#777 1px solid;
-  display:block;
-  width:195px;
+  color: #fff;
+  border: #777 1px solid;
+  display: block;
+  width: 200px;
   z-index: 1000;
 }
 /* this is a fun ie6 hack to get drop downs to stay behind the popup window.  This should always be just underneath .calendar_date_select */
@@ -2008,20 +2008,20 @@
 
 .calendar_date_select thead th {
   font-weight:bold;
-  background-color: #000;
+  background-color: #4682B4;
   border-top:1px solid #777;
-  border-bottom:2px solid #333;
+  border-bottom:2px solid #777;
   color: white !important;
 }
 
 .calendar_date_select .cds_buttons {
   text-align:center;
   padding:5px 0px;
-  background-color: #555;
+  background-color: #4682B4;
 }
 
 .calendar_date_select .cds_footer {
-  background-color: black;
+  background-color: #4682B4;
   padding:3px;
   font-size:12px;
   text-align:center;
@@ -2032,30 +2032,29 @@
   padding: 0px;
 }
 
-
 .calendar_date_select .cds_header {
-  background-color: #ccc;
-  border-bottom: 2px solid #aaa;
+  background-color: #87CEEB;
+  border-bottom: 2px solid #87CEEB;
   text-align:center;
 }
 
 .calendar_date_select .cds_header span {
   font-size:15px;
-  color: black;
+  color: #000;
   font-weight: bold;
 }
 
 .calendar_date_select select { font-size:11px;}
 
 .calendar_date_select .cds_header a:hover {
-  color: white;
+  color: #fff;
 }
 .calendar_date_select .cds_header a {
   width:22px;
   height:20px;
   text-decoration: none;
   font-size:14px;
-  color:black !important;
+  color: #000 !important;
 }
 
 .calendar_date_select .cds_header a.prev {
@@ -2078,7 +2077,7 @@
 }
 
 .calendar_date_select .cds_buttons a {
-  color: white;
+  color: #fff;
   font-size: 9px;
 }
 .calendar_date_select td {
@@ -2087,10 +2086,10 @@
   height: 21px;
   text-align:center;
   vertical-align: middle;
-  background-color: #666666;
+  background-color: #87CEEB;
 }
 .calendar_date_select td.weekend {
-  background-color: #606060;
+  background-color: #ADD8E6;
 }
 
 .calendar_date_select td div {
@@ -2100,22 +2099,22 @@
   color: #888;
 }
 .calendar_date_select td.selected div {
-  color:black;
+  color: #000;
 }
 
 .calendar_date_select tbody td {
-  border-bottom: 1px solid #555;
+  border-bottom: 1px solid #FFD700;
 }
 .calendar_date_select td.selected {
-  background-color:white;
+  background-color: #fff;
 }
 
 .calendar_date_select td:hover {
-  background-color:#ccc;
+  background-color:#00BFFF;
 }
 
 .calendar_date_select td.today {
-  border: 1px dashed #999;
+  border: 1px dashed #FFFF00;
 }
 
 .calendar_date_select td.disabled div {
@@ -2124,5 +2123,5 @@
 
 
 .fieldWithErrors .calendar_date_select {
-  border: 2px solid red;
-}
\ No newline at end of file
+  border: 2px solid #FF0000;
+}