mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
4a8c03ef1c
Revision: [2618] Adding fix for Ticket #609 Revision: [2617] Added fix for Ticket #684 Revision: [2616] Adding patch from Ticket #649 Revision: [2615] Adding fix for Ticket #608 Revision: [2614] Additional fix for Ticket #584 Revision: [2613] Adding fix for Ticket #584 Revision: [2612] Added fix for undefined index notices Revision: [2609] Adding fix for Ticket #658 Revision: [2608] Adding fix for Ticket #635, and code formatting fixes in FormHelper Revision: [2607] Adding fix for Ticket #636 Revision: [2606] Adding fix to allow associations to be defined through non-associative arrays Revision: [2605] Adding fix for Ticket #672 Revision: [2604] Adding fix for Ticket #708 Revision: [2603] Adding fix for Ticket #687 Revision: [2602] Refactoring database drivers, and adding fix for Ticket #398 Revision: [2601] Merging change from model_php5.php Revision: [2600] Adding ODBC driver Revision: [2599] Adding fix for Ticket #702 Revision: [2598] Adding fix for Ticket #699 Revision: [2597] Fixing an issue in Model::set(), and moving limit() to DboSource Revision: [2595] Fixing unit test download URL in Bake Revision: [2594] Adding fix for Ticket #698 Revision: [2593] Adding fox for Ticket #231 Revision: [2592] Adding fix for Ticket #630, and updating MS SQL driver docstring Revision: [2577] Adding $alias property to enable future Oracle support Revision: [2568] Merging changes to bake from old sandboxes git-svn-id: https://svn.cakephp.org/repo/trunk/cake/1.x.x.x@2620 3807eeeb-6ff5-0310-8944-8be069107fe0
198 lines
No EOL
2.8 KiB
CSS
198 lines
No EOL
2.8 KiB
CSS
/* CSS Document */
|
|
@import url("cake.forms.css");
|
|
|
|
* {
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
body {
|
|
font: 76% Verdana, Arial, Sans-serif;
|
|
color: #333;
|
|
}
|
|
img {
|
|
border:0;
|
|
}
|
|
#wrapper {
|
|
text-align:left;
|
|
}
|
|
#header {
|
|
height: 101px;
|
|
background: #0D5087 url(../img/cake.header_bg.png) repeat-x left top;
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
#content {
|
|
min-height:400px;
|
|
background-color: #fff;
|
|
padding:2em 4em;
|
|
}
|
|
#footer {
|
|
text-align:center;
|
|
padding:1em 0;
|
|
font-size:smaller;
|
|
border-top:1px solid #333;
|
|
background-color: #063260;
|
|
color:#fff;
|
|
line-height:1.5;
|
|
}
|
|
#footer a {
|
|
color:#fff;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
padding-bottom:0.5em;
|
|
}
|
|
h1 {
|
|
font-family:"Trebuchet MS",Verdana,Arial,Sans-serif;
|
|
}
|
|
h1, a {
|
|
color:#DB8101;
|
|
}
|
|
h1 em, a em {
|
|
color:#008BCC;
|
|
font-style: normal;
|
|
}
|
|
ul.colored a em
|
|
h2 {
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
color:#666;
|
|
}
|
|
a:hover, a:hover em {
|
|
color:#A22424;
|
|
text-decoration:none;
|
|
}
|
|
#content p, #content ul, #content ol {
|
|
line-height:1.5;
|
|
padding-bottom:1em;
|
|
}
|
|
ul, ol {
|
|
margin-left:3em;
|
|
}
|
|
|
|
/* tables */
|
|
|
|
table {
|
|
width: 100%;
|
|
background-color: #fff;
|
|
border: 1px solid #333;
|
|
border-collapse: collapse;
|
|
clear:both;
|
|
margin: 0 0 2em 0;
|
|
white-space: normal;
|
|
}
|
|
tbody {
|
|
height: 400px;
|
|
overflow: auto;
|
|
}
|
|
th {
|
|
border: 1px solid #666;
|
|
text-align: center;
|
|
padding:3px;
|
|
border-bottom: 1px solid #666;
|
|
}
|
|
table tr td {
|
|
padding:4px 4px;
|
|
vertical-align:top;
|
|
text-align: center;
|
|
border-bottom: 1px solid #666;
|
|
}
|
|
table tr.altRow td {
|
|
background: #f4f4f4;
|
|
}
|
|
|
|
/* scaffold show */
|
|
|
|
|
|
div.related {
|
|
clear:both;
|
|
display:block;
|
|
}
|
|
dl {
|
|
line-height:2em;
|
|
margin:1em;
|
|
}
|
|
dt {
|
|
font-weight: bold;
|
|
vertical-align:top;
|
|
}
|
|
dd {
|
|
margin-left:10em;
|
|
margin-top:-2em;
|
|
vertical-align:top;
|
|
}
|
|
|
|
/* scaffold buttons */
|
|
|
|
|
|
.notice {
|
|
color: #DB8101;
|
|
background-color: #ddd;
|
|
display: block;
|
|
padding: 1em;
|
|
}
|
|
.tip {
|
|
color: #DB8101;
|
|
background-color: #ddd;
|
|
display: block;
|
|
padding: 1em;
|
|
}
|
|
|
|
ul.actions {
|
|
list-style: none;
|
|
text-align:left;
|
|
margin:2em 0;
|
|
padding: 0;
|
|
}
|
|
ul.actions li {
|
|
margin-left:1em;
|
|
list-style: none;
|
|
display: inline;
|
|
}
|
|
ul.actions li a, ul.actions li input {
|
|
padding: 2px 12px;
|
|
color: #DB8101;
|
|
background-color:#ccc;
|
|
text-decoration: none;
|
|
border: 1px solid #666;
|
|
line-height: 24px;
|
|
font-weight: bold;
|
|
text-align:center;
|
|
text-decoration: none;
|
|
}
|
|
ul.actions li a:hover {
|
|
color: #DB8101;
|
|
background-color:#fff;
|
|
text-decoration: none;
|
|
}
|
|
td.listactions {
|
|
width: 14em;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
}
|
|
td.listactions a {
|
|
padding: 0px 8px;
|
|
text-align:center;
|
|
font-weight: bold;
|
|
color: #DB8101;
|
|
background-color:#ccc;
|
|
text-decoration: none;
|
|
border: 1px solid #666;
|
|
white-space: nowrap;
|
|
}
|
|
td.listactions a:hover {
|
|
color: #fff;
|
|
background-color:#DB8101;
|
|
}
|
|
|
|
/* index links */
|
|
|
|
ul.colored a {
|
|
|
|
}
|
|
ul.colored a em {
|
|
|
|
}
|
|
|
|
a {
|
|
font-weight: bold;
|
|
} |