2007-11-04 07:03:57 +00:00
|
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
|
2008-01-01 22:18:17 +00:00
|
|
|
* Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-11-04 07:03:57 +00:00
|
|
|
* 1785 E. Sahara Avenue, Suite 490-204
|
|
|
|
* Las Vegas, Nevada 89104
|
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
|
|
|
* @filesource
|
2008-01-01 22:18:17 +00:00
|
|
|
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc.
|
2007-11-04 07:03:57 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.app.webroot.css
|
|
|
|
* @since CakePHP(tm)
|
|
|
|
* @version $Revision$
|
|
|
|
* @modifiedby $LastChangedBy$
|
|
|
|
* @lastmodified $Date$
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
|
*/
|
|
|
|
|
2007-01-10 22:53:52 +00:00
|
|
|
* {
|
2006-05-09 02:15:47 +00:00
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
|
2006-10-10 18:24:25 +00:00
|
|
|
/* General Style Info */
|
2007-01-10 22:53:52 +00:00
|
|
|
body {
|
2007-10-21 23:49:28 +00:00
|
|
|
background-color: #003d4c;
|
2007-11-04 07:03:57 +00:00
|
|
|
color: #fff;
|
2007-10-21 23:49:28 +00:00
|
|
|
font-family:'lucida grande',verdana,helvetica,arial,sans-serif;
|
2007-11-04 07:03:57 +00:00
|
|
|
font-size:90%;
|
2007-10-21 23:49:28 +00:00
|
|
|
margin: 0;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
a {
|
2007-05-10 16:19:23 +00:00
|
|
|
background-color: inherit;
|
2007-01-10 22:53:52 +00:00
|
|
|
color: #003d4c;
|
|
|
|
text-decoration: underline;
|
2007-05-10 16:19:23 +00:00
|
|
|
font-weight: bold;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
a:hover {
|
2007-05-10 16:19:23 +00:00
|
|
|
background-color: inherit;
|
2007-01-10 22:53:52 +00:00
|
|
|
color: #003d4c;
|
|
|
|
text-decoration:none;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
a img {
|
|
|
|
border:none;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
h1, h2, h3, h4 {
|
2007-05-10 16:19:23 +00:00
|
|
|
background-color: inherit;
|
2007-10-21 23:49:28 +00:00
|
|
|
font-weight: normal;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
h1 {
|
|
|
|
color: #003d4c;
|
2007-11-04 07:03:57 +00:00
|
|
|
font-size: 100%;
|
2007-05-10 16:19:23 +00:00
|
|
|
margin: 0.1em 0;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
h2 {
|
2007-10-21 23:49:28 +00:00
|
|
|
color: #e32;
|
|
|
|
font-family:'Gill Sans','lucida grande',helvetica, arial, sans-serif;
|
2007-11-04 07:03:57 +00:00
|
|
|
font-size: 190%;
|
2007-01-10 22:53:52 +00:00
|
|
|
margin: 0.3em 0;
|
2007-11-04 07:03:57 +00:00
|
|
|
padding-top: 0.8em;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
h3 {
|
2007-11-04 07:03:57 +00:00
|
|
|
color: #993;
|
2007-10-21 23:49:28 +00:00
|
|
|
font-family:'Gill Sans','lucida grande',helvetica, arial, sans-serif;
|
2007-11-04 07:03:57 +00:00
|
|
|
font-size: 165%;
|
|
|
|
padding-top: 1.5em;
|
2006-10-10 18:24:25 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
h4 {
|
2007-11-04 07:03:57 +00:00
|
|
|
color: #993;
|
2007-01-10 22:53:52 +00:00
|
|
|
font-weight: normal;
|
|
|
|
padding-top: 0.5em;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
|
|
|
ul, li {
|
2007-01-10 22:53:52 +00:00
|
|
|
margin: 0 12px;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
|
|
|
|
2006-10-10 18:24:25 +00:00
|
|
|
/* Layout */
|
2007-01-10 22:53:52 +00:00
|
|
|
#container {
|
|
|
|
text-align: left;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#header{
|
2007-10-21 23:49:28 +00:00
|
|
|
padding: 10px 20px;
|
2007-01-10 22:53:52 +00:00
|
|
|
}
|
2007-09-24 23:49:54 +00:00
|
|
|
#header h1 {
|
2007-10-21 23:49:28 +00:00
|
|
|
background: url('../img/cake.icon.gif') no-repeat left;
|
2007-01-10 22:53:52 +00:00
|
|
|
color: #ffffff;
|
2007-10-21 23:49:28 +00:00
|
|
|
padding: 0px 30px;
|
2007-01-10 22:53:52 +00:00
|
|
|
}
|
2007-09-24 23:49:54 +00:00
|
|
|
#header h1 a {
|
2007-01-10 22:53:52 +00:00
|
|
|
color: #ffffff;
|
2007-10-21 23:49:28 +00:00
|
|
|
background: #003d4c;
|
|
|
|
font-weight: normal;
|
2007-01-10 22:53:52 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2007-09-24 23:49:54 +00:00
|
|
|
#header h1 a:hover {
|
2007-01-10 22:53:52 +00:00
|
|
|
color: #ffffff;
|
|
|
|
background: #003d4c;
|
2007-10-21 23:49:28 +00:00
|
|
|
text-decoration: underline;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2006-10-10 18:24:25 +00:00
|
|
|
#content{
|
2007-01-10 22:53:52 +00:00
|
|
|
background-color: #fff;
|
|
|
|
clear: both;
|
|
|
|
color: #333;
|
2007-11-04 07:03:57 +00:00
|
|
|
padding: 10px 20px 40px 20px;
|
2007-01-10 22:53:52 +00:00
|
|
|
overflow: auto;
|
2006-05-26 05:29:17 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
#footer {
|
|
|
|
clear: both;
|
|
|
|
padding: 6px 10px;
|
|
|
|
text-align: right;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2006-05-26 05:29:17 +00:00
|
|
|
|
2007-01-10 22:53:52 +00:00
|
|
|
/* Tables */
|
2006-05-26 05:29:17 +00:00
|
|
|
table {
|
2007-01-10 22:53:52 +00:00
|
|
|
background-color: #fff;
|
|
|
|
border-top: 1px solid #ccc;
|
|
|
|
border-left: 1px solid #ccc;
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
clear: both;
|
|
|
|
color: #333;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
width: 100%;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
|
|
|
th {
|
2007-01-10 22:53:52 +00:00
|
|
|
background-color: #f2f2f2;
|
|
|
|
border-top: 1px solid #fff;
|
|
|
|
border-left: 1px solid #fff;
|
|
|
|
border-right: 1px solid #bbb;
|
|
|
|
border-bottom: 1px solid #bbb;
|
|
|
|
text-align: center;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2007-05-10 16:19:23 +00:00
|
|
|
th a {
|
|
|
|
display: block;
|
|
|
|
padding: 2px 4px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
th a:hover {
|
|
|
|
background-color: #ccc;
|
|
|
|
color: #333;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2006-05-09 02:15:47 +00:00
|
|
|
table tr td {
|
2007-05-10 16:19:23 +00:00
|
|
|
background: #fff;
|
|
|
|
border-right: 1px solid #ccc;
|
|
|
|
padding: 4px;
|
2007-01-10 22:53:52 +00:00
|
|
|
text-align: center;
|
|
|
|
vertical-align: top;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2006-11-28 21:14:28 +00:00
|
|
|
table tr.altrow td {
|
2007-01-10 22:53:52 +00:00
|
|
|
background: #f4f4f4;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
td.actions {
|
2007-05-10 16:19:23 +00:00
|
|
|
text-align: center;
|
2007-01-10 22:53:52 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
td.actions a {
|
2007-05-10 16:19:23 +00:00
|
|
|
display: inline;
|
|
|
|
margin: 0px 6px;
|
2006-06-22 20:42:53 +00:00
|
|
|
}
|
2007-11-22 17:31:00 +00:00
|
|
|
.cake-sql-log table {
|
2007-05-10 16:19:23 +00:00
|
|
|
background: #f4f4f4;
|
|
|
|
}
|
2007-11-22 17:31:00 +00:00
|
|
|
.cake-sql-log td {
|
2007-01-10 22:53:52 +00:00
|
|
|
padding: 4px 8px;
|
|
|
|
text-align: left;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2006-10-10 18:24:25 +00:00
|
|
|
|
2007-01-17 02:43:15 +00:00
|
|
|
/* Paging */
|
|
|
|
div.paging {
|
|
|
|
color: #ccc;
|
2007-05-10 16:19:23 +00:00
|
|
|
margin-bottom: 2em;
|
2007-01-17 02:43:15 +00:00
|
|
|
}
|
|
|
|
div.paging div.disabled {
|
|
|
|
color: #ddd;
|
|
|
|
display: inline;
|
|
|
|
}
|
2007-12-22 06:03:48 +00:00
|
|
|
div.paging span {
|
|
|
|
}
|
|
|
|
div.paging span.current {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
div.paging span a {
|
|
|
|
}
|
2007-01-17 02:43:15 +00:00
|
|
|
|
2007-01-10 22:53:52 +00:00
|
|
|
/* Scaffold View */
|
|
|
|
dl {
|
|
|
|
line-height: 2em;
|
|
|
|
margin: 0em 0em;
|
2007-10-21 23:49:28 +00:00
|
|
|
width: 60%;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2007-10-21 23:49:28 +00:00
|
|
|
dl.altrow {
|
2007-01-10 22:53:52 +00:00
|
|
|
background: #f4f4f4;
|
2006-10-10 18:24:25 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
padding-left: 4px;
|
|
|
|
vertical-align: top;
|
2006-06-22 20:42:53 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
dd {
|
|
|
|
margin-left: 10em;
|
|
|
|
margin-top: -2em;
|
|
|
|
vertical-align: top;
|
2006-06-14 18:02:37 +00:00
|
|
|
}
|
|
|
|
|
2007-01-10 22:53:52 +00:00
|
|
|
/* Forms */
|
|
|
|
form {
|
2007-05-10 16:19:23 +00:00
|
|
|
clear: both;
|
2007-01-10 22:53:52 +00:00
|
|
|
margin-right: 20px;
|
|
|
|
padding: 0;
|
2007-11-04 07:03:57 +00:00
|
|
|
width: 80%;
|
2007-05-10 16:19:23 +00:00
|
|
|
}
|
|
|
|
fieldset {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
margin-top: 30px;
|
|
|
|
padding: 16px 20px;
|
|
|
|
}
|
|
|
|
fieldset legend {
|
2007-10-21 23:49:28 +00:00
|
|
|
color: #e32;
|
2007-05-10 16:19:23 +00:00
|
|
|
font-size: 160%;
|
|
|
|
font-weight: bold;
|
2007-01-10 22:53:52 +00:00
|
|
|
}
|
2007-12-12 00:46:21 +00:00
|
|
|
fieldset fieldset {
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding: 16px 0;
|
|
|
|
}
|
2007-08-27 00:11:36 +00:00
|
|
|
fieldset fieldset legend {
|
|
|
|
font-size: 120%;
|
|
|
|
font-weight: normal;
|
2007-12-12 00:46:21 +00:00
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
fieldset fieldset div {
|
|
|
|
clear: left;
|
|
|
|
margin: 0 20px;
|
2007-08-27 00:11:36 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
form div {
|
|
|
|
clear: both;
|
|
|
|
margin-bottom: 1em;
|
2007-05-10 16:19:23 +00:00
|
|
|
padding: .5em;
|
2007-01-10 22:53:52 +00:00
|
|
|
vertical-align: text-top;
|
|
|
|
}
|
2007-10-21 23:49:28 +00:00
|
|
|
form div.input {
|
|
|
|
color: #444;
|
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
form div.required {
|
|
|
|
color: #333;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
form div.submit {
|
|
|
|
border: 0;
|
|
|
|
clear: both;
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-left: 140px;
|
2006-05-09 02:15:47 +00:00
|
|
|
}
|
2006-10-10 18:24:25 +00:00
|
|
|
label {
|
2007-01-10 22:53:52 +00:00
|
|
|
display: block;
|
2007-05-10 16:19:23 +00:00
|
|
|
font-size: 110%;
|
2007-01-10 22:53:52 +00:00
|
|
|
padding-right: 20px;
|
2006-06-22 20:42:53 +00:00
|
|
|
}
|
2006-10-10 18:24:25 +00:00
|
|
|
input, textarea {
|
2007-01-10 22:53:52 +00:00
|
|
|
clear: both;
|
|
|
|
display: block;
|
2007-05-10 16:19:23 +00:00
|
|
|
font-size: 140%;
|
|
|
|
font-family: "frutiger linotype", "lucida grande", "verdana", sans-serif;
|
|
|
|
padding: 2px;
|
2007-01-10 22:53:52 +00:00
|
|
|
width: 100%;
|
2006-10-10 18:24:25 +00:00
|
|
|
}
|
2006-06-22 20:42:53 +00:00
|
|
|
select {
|
2007-01-10 22:53:52 +00:00
|
|
|
clear: both;
|
2007-05-10 16:19:23 +00:00
|
|
|
font-size: 120%;
|
2007-01-10 22:53:52 +00:00
|
|
|
vertical-align: text-bottom;
|
2006-10-10 18:24:25 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
select[multiple=multiple] {
|
|
|
|
width: 100%;
|
2006-10-10 18:24:25 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
option {
|
2007-05-10 16:19:23 +00:00
|
|
|
font-size: 120%;
|
|
|
|
padding: 0 3px;
|
2006-10-10 18:24:25 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
input[type=checkbox] {
|
|
|
|
clear: left;
|
|
|
|
float: left;
|
2007-05-10 16:19:23 +00:00
|
|
|
margin: 0px 6px 7px 2px;
|
2007-01-10 22:53:52 +00:00
|
|
|
width: auto;
|
2006-10-10 18:24:25 +00:00
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
input[type=submit] {
|
|
|
|
display: inline;
|
2007-10-21 23:49:28 +00:00
|
|
|
font-size: 110%;
|
2007-05-10 16:19:23 +00:00
|
|
|
padding: 2px 5px;
|
2007-01-10 22:53:52 +00:00
|
|
|
width: auto;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notices and Errors */
|
2007-10-21 23:49:28 +00:00
|
|
|
div.message {
|
|
|
|
clear: both;
|
2007-01-10 22:53:52 +00:00
|
|
|
color: #900;
|
2007-05-10 16:19:23 +00:00
|
|
|
font-size: 140%;
|
2007-01-10 22:53:52 +00:00
|
|
|
font-weight: bold;
|
2007-10-21 23:49:28 +00:00
|
|
|
margin: 1em 0;
|
2007-01-10 22:53:52 +00:00
|
|
|
}
|
|
|
|
div.error-message {
|
|
|
|
clear: both;
|
2007-10-21 23:49:28 +00:00
|
|
|
color: #900;
|
|
|
|
font-weight: bold;
|
2007-01-10 22:53:52 +00:00
|
|
|
}
|
2007-11-04 07:03:57 +00:00
|
|
|
p.error {
|
|
|
|
background-color: #e32;
|
2007-01-10 22:53:52 +00:00
|
|
|
color: #fff;
|
2007-11-04 07:03:57 +00:00
|
|
|
font-family: Courier, monospace;
|
|
|
|
font-size: 120%;
|
|
|
|
line-height: 140%;
|
|
|
|
padding: 0.8em;
|
2007-12-22 06:03:48 +00:00
|
|
|
margin: 1em 0;
|
2007-11-04 07:03:57 +00:00
|
|
|
}
|
|
|
|
p.error em {
|
|
|
|
color: #000;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: 140%;
|
|
|
|
}
|
|
|
|
.notice {
|
|
|
|
background-color: #ffcc00;
|
|
|
|
color: #000;
|
2007-01-10 22:53:52 +00:00
|
|
|
display: block;
|
2007-11-04 07:03:57 +00:00
|
|
|
font-family: Courier, monospace;
|
|
|
|
font-size: 120%;
|
|
|
|
line-height: 140%;
|
|
|
|
padding: 0.8em;
|
2007-01-10 22:53:52 +00:00
|
|
|
margin: 1em 0;
|
|
|
|
}
|
2007-11-04 07:03:57 +00:00
|
|
|
.success {
|
|
|
|
background-color: green;
|
|
|
|
color: #FFF;
|
2007-01-10 22:53:52 +00:00
|
|
|
}
|
2007-11-04 07:03:57 +00:00
|
|
|
|
|
|
|
/* Actions */
|
2007-05-10 16:19:23 +00:00
|
|
|
div.actions ul {
|
2007-10-21 23:49:28 +00:00
|
|
|
margin: 0px 0;
|
2007-01-10 22:53:52 +00:00
|
|
|
padding: 0;
|
|
|
|
}
|
2007-05-10 16:19:23 +00:00
|
|
|
div.actions li {
|
|
|
|
display: inline;
|
2007-01-10 22:53:52 +00:00
|
|
|
list-style-type: none;
|
2007-10-21 23:49:28 +00:00
|
|
|
line-height: 2em;
|
2007-05-10 16:19:23 +00:00
|
|
|
margin: 0 2em 0 0;
|
2007-10-21 23:49:28 +00:00
|
|
|
white-space: nowrap;
|
2007-01-10 22:53:52 +00:00
|
|
|
}
|
2007-05-10 16:19:23 +00:00
|
|
|
div.actions ul li a {
|
|
|
|
color: #003d4c;
|
2007-01-10 22:53:52 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
2007-05-10 16:19:23 +00:00
|
|
|
div.actions ul li a:hover {
|
2007-10-21 23:49:28 +00:00
|
|
|
color: #333;
|
|
|
|
text-decoration: underline;
|
2007-05-10 16:19:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Related */
|
|
|
|
div.related {
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
}
|
2007-01-10 22:53:52 +00:00
|
|
|
|
2007-02-18 20:26:49 +00:00
|
|
|
/* Debugging */
|
2006-10-10 18:24:25 +00:00
|
|
|
pre {
|
2007-05-23 18:22:27 +00:00
|
|
|
color: #000;
|
2007-05-10 16:19:23 +00:00
|
|
|
background: #f0f0f0;
|
2007-01-10 22:53:52 +00:00
|
|
|
padding: 1em;
|
2007-02-18 20:26:49 +00:00
|
|
|
}
|
2007-10-21 23:49:28 +00:00
|
|
|
pre.cake-debug {
|
2007-05-10 16:19:23 +00:00
|
|
|
background: #ffcc00;
|
|
|
|
font-size: 120%;
|
2007-11-04 07:03:57 +00:00
|
|
|
line-height: 140%;
|
|
|
|
margin-top: 1em;
|
2007-05-10 16:19:23 +00:00
|
|
|
overflow: auto;
|
|
|
|
position: relative;
|
2007-02-18 20:26:49 +00:00
|
|
|
}
|
|
|
|
div.cake-stack-trace {
|
2007-05-10 16:19:23 +00:00
|
|
|
background: #fff;
|
2007-11-04 07:03:57 +00:00
|
|
|
border: 4px dotted #ffcc00;
|
2007-05-10 16:19:23 +00:00
|
|
|
color: #333;
|
2007-11-04 07:03:57 +00:00
|
|
|
margin: 0px;
|
|
|
|
padding: 6px;
|
2007-05-10 16:19:23 +00:00
|
|
|
font-size: 120%;
|
2007-11-04 07:03:57 +00:00
|
|
|
line-height: 140%;
|
2007-05-10 16:19:23 +00:00
|
|
|
overflow: auto;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
div.cake-code-dump pre {
|
|
|
|
position: relative;
|
|
|
|
overflow: auto;
|
2007-02-18 20:26:49 +00:00
|
|
|
}
|
2007-02-19 04:30:48 +00:00
|
|
|
div.cake-stack-trace pre, div.cake-code-dump pre {
|
|
|
|
color: #000000;
|
2007-02-18 20:26:49 +00:00
|
|
|
background-color: #F0F0F0;
|
2007-11-04 07:03:57 +00:00
|
|
|
margin: 0px;
|
|
|
|
padding: 1em;
|
2007-05-10 16:19:23 +00:00
|
|
|
overflow: auto;
|
2007-02-18 20:26:49 +00:00
|
|
|
}
|
2007-02-19 04:30:48 +00:00
|
|
|
div.cake-code-dump pre, div.cake-code-dump pre code {
|
|
|
|
clear: both;
|
|
|
|
font-size: 12px;
|
2007-12-24 23:47:46 +00:00
|
|
|
line-height: 15px;
|
2007-05-10 16:19:23 +00:00
|
|
|
margin: 4px 2px;
|
|
|
|
padding: 4px;
|
|
|
|
overflow: auto;
|
2007-02-19 04:30:48 +00:00
|
|
|
}
|
|
|
|
div.cake-code-dump span.code-highlight {
|
|
|
|
background-color: #FFFF00;
|
2007-11-04 07:03:57 +00:00
|
|
|
padding: 4px;
|
2007-05-10 16:19:23 +00:00
|
|
|
}
|