Updated cake.generic.css to remove validation warnings. closes #4527.

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7085 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
mark_story 2008-06-02 03:32:50 +00:00
parent 7820d639b8
commit 7fbf73d53d

View file

@ -24,26 +24,26 @@
*/ */
* { * {
margin:0; margin:0;
padding:0; padding:0;
} }
/* General Style Info */ /* General Style Info */
body { body {
background-color: #003d4c; background: #003d4c;
color: #fff; color: #fff;
font-family:'lucida grande',verdana,helvetica,arial,sans-serif; font-family:'lucida grande',verdana,helvetica,arial,sans-serif;
font-size:90%; font-size:90%;
margin: 0; margin: 0;
} }
a { a {
background-color: inherit; background:#fff;
color: #003d4c; color: #003d4c;
text-decoration: underline; text-decoration: underline;
font-weight: bold; font-weight: bold;
} }
a:hover { a:hover {
background-color: inherit; background:#fff;
color: #003d4c; color: #003d4c;
text-decoration:none; text-decoration:none;
} }
@ -51,15 +51,16 @@ a img {
border:none; border:none;
} }
h1, h2, h3, h4 { h1, h2, h3, h4 {
background-color: inherit;
font-weight: normal; font-weight: normal;
} }
h1 { h1 {
background:#fff;
color: #003d4c; color: #003d4c;
font-size: 100%; font-size: 100%;
margin: 0.1em 0; margin: 0.1em 0;
} }
h2 { h2 {
background:#fff;
color: #e32; color: #e32;
font-family:'Gill Sans','lucida grande',helvetica, arial, sans-serif; font-family:'Gill Sans','lucida grande',helvetica, arial, sans-serif;
font-size: 190%; font-size: 190%;
@ -90,23 +91,23 @@ ul, li {
padding: 10px 20px; padding: 10px 20px;
} }
#header h1 { #header h1 {
background: url('../img/cake.icon.gif') no-repeat left; background: #003d4c url('../img/cake.icon.gif') no-repeat left;
color: #ffffff; color: #fff;
padding: 0px 30px; padding: 0px 30px;
} }
#header h1 a { #header h1 a {
color: #ffffff; color: #fff;
background: #003d4c; background: #003d4c;
font-weight: normal; font-weight: normal;
text-decoration: none; text-decoration: none;
} }
#header h1 a:hover { #header h1 a:hover {
color: #ffffff; color: #fff;
background: #003d4c; background: #003d4c;
text-decoration: underline; text-decoration: underline;
} }
#content{ #content{
background-color: #fff; background: #fff;
clear: both; clear: both;
color: #333; color: #333;
padding: 10px 20px 40px 20px; padding: 10px 20px 40px 20px;
@ -120,30 +121,29 @@ ul, li {
/* Tables */ /* Tables */
table { table {
background-color: #fff; background: #fff;
border-top: 1px solid #ccc; border:1px solid #ccc;
border-left: 1px solid #ccc; border-right:0;
border-bottom: 1px solid #ccc;
clear: both; clear: both;
color: #333; color: #333;
margin-bottom: 10px; margin-bottom: 10px;
width: 100%; width: 100%;
} }
th { th {
background-color: #f2f2f2; background: #f2f2f2;
border:1px solid #bbb;
border-top: 1px solid #fff; border-top: 1px solid #fff;
border-left: 1px solid #fff; border-left: 1px solid #fff;
border-right: 1px solid #bbb;
border-bottom: 1px solid #bbb;
text-align: center; text-align: center;
} }
th a { th a {
background:#f2f2f2;
display: block; display: block;
padding: 2px 4px; padding: 2px 4px;
text-decoration: none; text-decoration: none;
} }
th a:hover { th a:hover {
background-color: #ccc; background: #ccc;
color: #333; color: #333;
text-decoration: none; text-decoration: none;
} }
@ -162,7 +162,6 @@ td.actions {
white-space: nowrap; white-space: nowrap;
} }
td.actions a { td.actions a {
display: inline;
margin: 0px 6px; margin: 0px 6px;
} }
.cake-sql-log table { .cake-sql-log table {
@ -175,6 +174,7 @@ td.actions a {
/* Paging */ /* Paging */
div.paging { div.paging {
background:#fff;
color: #ccc; color: #ccc;
margin-bottom: 2em; margin-bottom: 2em;
} }
@ -223,6 +223,7 @@ fieldset {
padding: 16px 20px; padding: 16px 20px;
} }
fieldset legend { fieldset legend {
background:#fff;
color: #e32; color: #e32;
font-size: 160%; font-size: 160%;
font-weight: bold; font-weight: bold;
@ -327,7 +328,7 @@ p.error em {
line-height: 140%; line-height: 140%;
} }
.notice { .notice {
background-color: #ffcc00; background: #ffcc00;
color: #000; color: #000;
display: block; display: block;
font-family: Courier, monospace; font-family: Courier, monospace;
@ -337,8 +338,8 @@ p.error em {
margin: 1em 0; margin: 1em 0;
} }
.success { .success {
background-color: green; background: green;
color: #FFF; color: #fff;
} }
/* Actions */ /* Actions */
@ -354,6 +355,7 @@ div.actions li {
white-space: nowrap; white-space: nowrap;
} }
div.actions ul li a { div.actions ul li a {
background:#fff;
color: #003d4c; color: #003d4c;
text-decoration: none; text-decoration: none;
} }
@ -398,7 +400,7 @@ div.cake-code-dump pre {
overflow: auto; overflow: auto;
} }
div.cake-stack-trace pre, div.cake-code-dump pre { div.cake-stack-trace pre, div.cake-code-dump pre {
color: #000000; color: #000;
background-color: #F0F0F0; background-color: #F0F0F0;
margin: 0px; margin: 0px;
padding: 1em; padding: 1em;
@ -413,7 +415,7 @@ div.cake-code-dump pre, div.cake-code-dump pre code {
overflow: auto; overflow: auto;
} }
div.cake-code-dump span.code-highlight { div.cake-code-dump span.code-highlight {
background-color: #FFFF00; background-color: #ff0;
padding: 4px; padding: 4px;
} }
div.code-coverage-results div.code-line { div.code-coverage-results div.code-line {