mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
68b194965e
Author: phpnut Date: 8:52:12 PM, Sunday, October 23, 2005 Message: adding cakephp power image [1177] Author: phpnut Date: 8:48:32 PM, Sunday, October 23, 2005 Message: Updated scaffold to use new layout template. [1176] Author: phpnut Date: 7:09:27 PM, Sunday, October 23, 2005 Message: renaming cake/conf to cake/config [1175] Author: phpnut Date: 7:06:04 PM, Sunday, October 23, 2005 Message: moving tags.ini.php to cake/conf/tags.ini.php [1174] Author: phpnut Date: 6:52:19 PM, Sunday, October 23, 2005 Message: updating css/cake.scaffold.css [1173] Author: phpnut Date: 6:46:07 PM, Sunday, October 23, 2005 Message: updating css/cake.deafult.css and default layout [1172] Author: phpnut Date: 6:42:48 PM, Sunday, October 23, 2005 Message: updating css/cake.scaffold.css [1171] Author: phpnut Date: 6:41:00 PM, Sunday, October 23, 2005 Message: Adding spaces to tags.ini file [1170] Author: phpnut Date: 6:37:17 PM, Sunday, October 23, 2005 Message: Removing code that is no longer used [1169] Author: phpnut Date: 6:34:24 PM, Sunday, October 23, 2005 Message: removing files that are no longer used [1168] Author: phpnut Date: 6:19:46 PM, Sunday, October 23, 2005 Message: Cleaning up Scaffold class. [1167] Author: phpnut Date: 5:26:27 PM, Sunday, October 23, 2005 Message: Changes are added to remove the $this->models array that would hold the instance of the models. Now they are available as $this->ModelName; This should be CamelCased. Added check in the Scaffold to return forms when accessing the actions update, create without a form being submitted. [1166] Author: phpnut Date: 3:53:08 PM, Sunday, October 23, 2005 Message: Making change to allow setting the name of a class camel cased to fix issues with PHP 4. In both the model and the controllers: Model: var $name = 'ModelName'; Controller: var $name = 'ControllerName'; ControllerName not ControllerNameController. [1165] Author: phpnut Date: 1:45:17 PM, Sunday, October 23, 2005 Message: Fix added for problems with key name that was added to the class registry when underscored git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1179 3807eeeb-6ff5-0310-8944-8be069107fe0
122 lines
No EOL
1.9 KiB
CSS
122 lines
No EOL
1.9 KiB
CSS
/* CSS Document */
|
|
code, pre {
|
|
color:#44a;
|
|
font-family:monospace;
|
|
font-size:1.15em;
|
|
}
|
|
code {
|
|
color:#227;
|
|
margin:0 .2em;
|
|
white-space:nowrap;
|
|
}
|
|
pre {
|
|
margin-left:1em;
|
|
}
|
|
acronym {
|
|
border-bottom:1px dotted #666;
|
|
}
|
|
ul {
|
|
margin-top:1em;
|
|
list-style:none;
|
|
}
|
|
li {
|
|
margin-left:2em;
|
|
list-style:none;
|
|
list-style-image: none;
|
|
}
|
|
|
|
.notice {
|
|
background: #71300F;
|
|
border: solid 2px #eeb;
|
|
display: block;
|
|
font-family: Verdana;
|
|
padding: 1em;
|
|
}
|
|
.tip {
|
|
background: #71300F;
|
|
border: solid 2px #333;
|
|
padding: 1em;
|
|
}
|
|
.error {
|
|
color: #DBA941
|
|
background: #f4f4f4;
|
|
border: solid 2px #333;
|
|
padding: 1em;
|
|
}
|
|
ul.actions {
|
|
list-style: none;
|
|
text-align:right;
|
|
margin:2em 0;
|
|
}
|
|
ul.actions li {
|
|
border: 1px solid #333;
|
|
margin-left:1em;
|
|
width:10em;
|
|
list-style: none;
|
|
}
|
|
ul.actions li a, ul.actions li input {
|
|
background-color:#71300F;
|
|
border:1px solid #71300F;
|
|
clear: both;
|
|
color: #fff;
|
|
display:block;
|
|
font-weight: bold;
|
|
text-align:center;
|
|
text-decoration: none;
|
|
}
|
|
td.listactions {
|
|
width:17em;
|
|
}
|
|
td.listactions a {
|
|
float: left;
|
|
text-align:center;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
background-color:#71300F;
|
|
display:block;
|
|
text-decoration: none;
|
|
margin-bottom:3px;
|
|
margin-right: 3px;
|
|
border: 1px;
|
|
width:5em;
|
|
}
|
|
table {
|
|
background-color: #fff;
|
|
border: 1px solid #333;
|
|
clear:both;
|
|
margin: 1em 0 2em 0;
|
|
white-space: normal;
|
|
}
|
|
th {
|
|
background-color: #ccc;
|
|
border-top: 1px solid #fff;
|
|
border-right: 1px solid #666;
|
|
border-bottom: 1px solid #666;
|
|
text-align: left;
|
|
padding:3px;
|
|
}
|
|
table tr td {
|
|
border-right: 1px solid #ccc;
|
|
padding:2px 4px;
|
|
vertical-align:top;
|
|
}
|
|
table tr.altRow td {
|
|
background: #f4f4f4;
|
|
}
|
|
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;
|
|
} |