[Cherokee-commits] rev 1052 - cherokee/trunk/admin/static/css
cherokee at cherokee-project.com
cherokee at cherokee-project.com
Wed Feb 13 21:14:23 CET 2008
Author: ion
Date: 2008-02-13 21:14:23 +0100 (Wed, 13 Feb 2008)
New Revision: 1052
Log:
CSS for buttons and dialogs, I'll refactory that later
Get the changeset with:
svn diff -r 1051:1052 svn://svn.cherokee-project.com/
Modified:
cherokee/trunk/admin/static/css/cherokee.css
70 ++++++++++++++++++++++++++-
Modified: cherokee/trunk/admin/static/css/cherokee.css
===================================================================
--- cherokee/trunk/admin/static/css/cherokee.css 2008-02-13 20:13:48 UTC (rev 1051)
+++ cherokee/trunk/admin/static/css/cherokee.css 2008-02-13 20:14:23 UTC (rev 1052)
@@ -121,7 +121,7 @@
.error {
color: #CC0000;
}
-
+/** HELP **/
#help-area {
}
@@ -140,7 +140,44 @@
padding: 1em 1em 1em 40px;
margin-bottom: 1em;
}
+/** INFO **/
+.dialog-information {
+ background: #dbffb8 url(../images/dialog-information.png) 4px 4px no-repeat;
+ background: #e9ffd4 url(../images/dialog-information.png) 4px 4px no-repeat;
+ border-top: 1px solid #73d216;
+ border-bottom: 1px solid #73d216;
+ padding: 1em 1em 1em 40px;
+ margin: 1em 0;
+}
+/** WARNING **/
+.dialog-warning {
+ background: #fbf7da url(../images/dialog-warning.png) 4px 4px no-repeat;
+ border-top: 1px solid #edd400;
+ border-bottom: 1px solid #edd400;
+ padding: 1em 1em 1em 40px;
+ margin: 1em 0;
+}
+/** ERROR **/
+.dialog-error {
+ background: #ffe7e7 url(../images/dialog-error.png) 4px 4px no-repeat;
+ border-top: 1px solid #c00;
+ border-bottom: 1px solid #c00;
+ padding: 1em 1em 1em 40px;
+ margin: 1em 0;
+}
+.dialog-information h2,
+.dialog-warning h2,
+.dialog-error h2
+{
+ margin: 0 0 0.3em 0;
+ padding: 0;
+ font-size: 100%;
+ font-weight: bold;
+ letter-spacing: 1px;
+ color: #000;
+}
+
.tab dt {
background:#CCCCCC url(../images/collapsed.gif) no-repeat scroll 0px 4px;
color: #204a87;
@@ -154,3 +191,34 @@
.tab dt.selected {
background-image: url(../images/expanded.gif);
}
+
+a.button {
+ background: transparent url('../images/button-right.png') no-repeat scroll top right;
+ color: #486991;
+ display: block;
+ float: left;
+ font: normal 12px arial, sans-serif;
+ height: 24px;
+ overflow: hidden;
+ margin-right: 6px;
+ padding-right: 18px;
+ text-decoration: none;
+}
+
+a.button span {
+ background: transparent url('../images/button-left.png') no-repeat;
+ display: block;
+ line-height: 14px;
+ padding: 5px 0 5px 18px;
+}
+
+a.button:active {
+ background-position: bottom right;
+ color: #122c4d;
+ outline: none;
+}
+
+a.button:active span {
+ background-position: bottom left;
+ padding: 6px 0 4px 18px;
+}
More information about the Cherokee-commits
mailing list