Update of /cvsroot/php-blog/serendipity/templates/default/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10304/templates/default/admin
Added Files:
style.css
Log Message:
- Merged author and admin suites
- New separated layout for Administration Suite
- Fixed lots of layout quirks, make the admin look more unified
- Fixed some invalid HTML (unclosed/excess tags)
- Remove some unneeded session_start() functions in included admin files
- Allow $plugin->get_config() to return the default value as defined in introspect_config_item, when only given one argument
- Fixed bug in upgrader, not allowing multiple upgrade functions for a single version
- Killed serendipity_printLogin() and moved it to serendipity_admin.php
- Pretty up the iframe stuff
- Added aliases to some adminModules
--- NEW FILE: style.css ---
body {
font-family: Verdana;
margin: 0px 0px 0px 0px;
background-color: #597599;
}
#serendipityAdminFrame {
width: 777px;
margin: auto;
}
#serendipityAdminMainpane {
background-color: #FFFFFF;
border-bottom: 1px solid #CCCCCC;
border-right: 1px solid #CCCCCC;
border-left: 1px solid #CCCCCC;
height: 400px;
}
#serendipityAdminInfopane {
background-color: #F8F9FA;
font-size: x-small;
padding: 5px;
padding-left: 5px;
border-right: 1px solid #CCCCCC;
border-left: 1px solid #CCCCCC;
border-bottom: 1px solid #C2C2C2;
border-top: 1px solid #C2C2C2;
vertical-align: middle;
text-align: right;
color: #5E5E5E;
}
#serendipityAdminBanner {
background-color: #FFFFFF;
border-right: 1px solid #CCCCCC;
border-left: 1px solid #CCCCCC;
height: 80px;
}
#serendipityAdminBanner h1 {
padding-top: 20px;
padding-left: 20px;
font-size: large;
margin: 0;
}
#serendipityAdminBanner h2 {
padding-left: 30px;
font-size: small;
color: #BBBBBB;
margin: 0;
}
#serendipitySideBar {
font-size: small;
width: 150px;
padding-top: 10px;
}
#serendipityAdminFooter {
font-size: x-small;
text-align: center;
color: #FFFFFF;
}
.serendipitySideBarTitle {
padding-left: 2px;
font-weight: bold;
font-size: small;
}
.serendipitySideBarContent {
padding-left: 10px;
font-size: x-small;
}
.serendipitySideBarItem {
margin-bottom: 10px;
}
.serendipity_admin_title {
font-size: large;
margin-bottom: 5px;
}
.serendipityAdminContent {
font-size: small;
padding-top: 10px;
padding-right: 5px;
padding-left: 5px;
}
.serendipity_admin_list_item.serendipity_admin_list_item_uneven {
border: 1px solid #294366;
background-color: #F8F9FA;
margin-bottom: 5px;
}
.serendipity_admin_list_item.serendipity_admin_list_item_even {
border: 1px solid #294366;
background-color: #F2F3F2;
margin-bottom: 5px;
}
.serendipityAdminMsgError {
color: #FF0000;
text-align: center;
font-weight: bold;
margin: 10px;
}
.serendipityAdminMsgSuccess {
color: #00BB00;
text-align: center;
font-weight: bold;
margin: 10px;
}
td, th {
font-size: small;
}
a:visited,
a:link {
color: #294366;
text-decoration: underline;
}
a:hover {
color: #D40041;
}
input, select, textarea {
background-color: #F8F9FA;
font-family: verdana;
font-size: small;
border: 1px solid #294366;
}
#serendipity_iframe {
border: 1px solid #294366;
text-align: center;
margin: auto;
}
|