Update of /cvsroot/php-blog/serendipity/templates/default/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12047/templates/default/admin
Modified Files:
style.css
Log Message:
- Add pretty sidebar to administration
- Rename "Admin interface" to "Frontpage"
- Small CSS tweak to admin header
TODO: There is a small gap between each <ul>, this needs to go
TODO: Apparently you cannot style <lh> (without as class or id) in IE, anyone?
Index: style.css
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/admin/style.css,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- style.css 13 Jan 2005 22:46:16 -0000 1.16
+++ style.css 20 Jan 2005 22:02:58 -0000 1.17
@@ -21,7 +21,6 @@
margin: auto;
background-color: #FFFFFF;
border: 2px solid #0F3353;
- padding:2px;
}
#serendipityAdminBanner {
@@ -56,7 +55,6 @@
}
#serendipityAdminBanner h1 {
- padding-top: 20px;
padding-left: 20px;
font-size: 20px;
margin: 0;
@@ -71,9 +69,7 @@
#serendipitySideBar {
- font-size: 12px;
width: 150px;
- padding-top: 10px;
}
#serendipityAdminFooter {
@@ -190,22 +186,40 @@
}
ul.serendipitySideBarMenu {
- padding-left: 0px;
- margin-left: 0px;
- font-weight: bold;
+ padding: 0px;
+ margin: 0px;
}
ul.serendipitySideBarMenu lh {
- font-size: 0.9em;
+ font-size: 11px;
+ list-style: none;
+ display: block;
font-weight: bold;
+ background: url({TEMPLATE_PATH}img/menuheader_background.png) no-repeat;
+ height: 20px;
+ padding-top: 3px;
+ padding-left: 3px;
}
ul.serendipitySideBarMenu li {
- font-size: 0.8em;
- margin-left: 1.8em;
+ font-size: 10px;
font-weight: normal;
+ background:url({TEMPLATE_PATH}img/menu_background.png) no-repeat;
+ padding-top: 2px;
+ padding-left: 5px;
+ height: 20px;
+ list-style:none;
+ display:block;
+ margin:0;
+}
+
+ul.serendipitySideBarMenu a:link,
+ul.serendipitySideBarMenu a:visited {
+ text-decoration: none;
+ font-weight: bold;
}
+
.serendipityImageButton {
cursor: pointer;
}
|