Skip to content

Instantly share code, notes, and snippets.

@midorikocak
Created November 10, 2017 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save midorikocak/733b680bdfa5910d8911c9c941595aef to your computer and use it in GitHub Desktop.
Save midorikocak/733b680bdfa5910d8911c9c941595aef to your computer and use it in GitHub Desktop.
CakePHP 3 Color Override CSS
a:hover {
color: #747474;
}
a {
color: #747474;
}
.side-nav li a:not(.button) {
color: #747474;
}
.side-nav li a:not(.button):hover {
color: #747474;
}
header {
background-color: #D33C44;
color: #ffffff;
}
legend {
color:#747474;
}
.actions.columns {
border-left: 5px solid #747474;
}
.actions.columns h3 {
color:#747474;
}
.header-help span {
background-color: #0097a7;
}
ul.pagination li a {
color: rgba(0, 0 ,0 , 0.54);
}
ul.pagination li.active a {
background-color: #DCE47E;
color: #FFF;
}
.paginator p {
color: rgba(0, 0 ,0 , 0.54);
}
.form .error-message {
color: rgba(0, 0, 0, 0.54);
}
.required > label:after {
color: #C3232D;
}
.error label,
.error label.error {
color: #C3232D;
}
.view h2 {
color: #6F6F6F;
}
.view .numbers {
background-color: #B7E3EC;
}
.view .columns.dates {
background-color:#DCE47E;
color: #fff;
}
.view .columns.booleans {
box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.24);
background-color: #8D6E65;
color: #fff;
}
.view .strings p {
border-bottom: 1px solid #eee;
}
.view .numbers .subheader, .view .dates .subheader {
color:#747474;
}
.view .booleans .subheader {
color: #E9E9E9
}
.view .texts .columns {
margin-top:1.2rem;
border-bottom: 1px solid #eee;
}
.cake-debug,
.notice,
p.notice {
color: #000000;
background: #ffcc00;
}
.cake-error,
p.error {
color: #fff;
background: #C3232D;
}
pre {
background: none repeat scroll 0% 0% #FFF;
color: rgba(0, 0 ,0 , 0.74);
}
.cake-code-dump .code-highlight {
background-color: #FFC600;
}
.cake-error a,
.cake-error a:hover {
color:#fff;
}
.checks {
color: #626262;
background-color: #B7E3EC;
}
.checks .success:before {
color: green;
}
.checks .problem:before {
color: red;
}
.top-bar.expanded .title-area {
background: #626262;
}
.top-bar.expanded, .top-bar,.top-bar-section ul li,.top-bar-section li:not(.has-form) a:not(.button) {
background: #262626;
}
.top-bar-section li:not(.has-form) a:not(.button):hover {
background-color: #000000;
background: #000000;
}
.side-nav li.heading {
color: #626262;
}
#actions-sidebar {
background: #fafafa;
}
table {
background: #fff;
}
table thead tr {
border-bottom: 1px solid #626262;
}
table tr th {
color: #626262;
border-bottom: 2px solid #626262;
}
fieldset legend {
border-bottom: 2px solid #626262;
}
.form button:hover, .form button:focus {
background: #BE840B;
}
button {
background: #966600;
}
div.message {
background-color: #a0d3e8;
color: #626262;
}
div.message:before {
color: #a0d3e8;
}
div.message.error {
background-color: #C3232D;
color: #FFF;
}
div.message.error:before {
color: #C3232D;
}
.vertical-table th {
color: #626262;
}
.content {
padding: 2rem;
}
.content h3 {
color: #be140b;
}
.content h4 {
color: #be140b;
margin-bottom: 20px;
}
.content .related h4 {
color: #4d8f97;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment