Skip to content

Commit

Permalink
new silkline
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Delisle committed Oct 9, 2007
1 parent 37e9d42 commit 162c5d6
Show file tree
Hide file tree
Showing 131 changed files with 737 additions and 0 deletions.
156 changes: 156 additions & 0 deletions silkline/css/theme_left.css.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* navigation css file from theme
*
* @version $Id$
* @package phpMyAdmin-theme
* @subpackage Silkline
*/

// unplanned execution path
if (!defined('PMA_MINIMUM_COMMON')) {
exit();
}
?>
html {
height:100%;
border-right:1px solid #AAA;
}
html,body{padding-top:0;margin:0;}
body, input, select {
font-family: Tahoma, Arial, Helvetica, Verdana, sans-serif;
font-size: 11px;
color: #333333;
}

body#body_leftFrame {
color: #000000;
height:100%;
overflow:auto;
background: <?php echo $GLOBALS['cfg']['LeftBgColor']; ?> url(themes/silkline/img/silkline_light.png) top left repeat-x;
}

select {
background-color: #ffffff;
color: #000000;
}


div#leftframelinks,
div#databaseList {
text-align: center;
border-bottom: 0.05em solid #FFF;
margin-bottom: 0.5em;
padding-bottom: 0.5em;
color: #000000;

}
div#pmalogo{
background:#FFF url(themes/silkline/img/logo_background.png) top left repeat-x;
padding:0;
margin:0;
border-bottom:0px;
}
div#leftframelinks img {
vertical-align: middle;
}

div#leftframelinks a {
margin: 0.5em;
padding: 0.2em;
border: 0.05em solid #FFF;
color: #000000;
}

div#leftframelinks a:hover {
background-color: #669999;
color:#FFF;
}

div#databaseList form {
display: inline;
}

/* leftdatabaselist */
div#left_tableList {
list-style-type: none;
list-style-position: outside;
margin: 0;
padding: 0;
font-size: <?php echo $font_smaller; ?>;
color:#FFF;

}
div#left_tableList p a.item, form#left label{
font-weight:bold;
color:#000;
font-size:110%;
text-align:left;
}
div#left_tableList a {
color: #505050;
text-decoration: none;
}

div#left_tableList a:hover {
color: #FFF;
background-color:#505050;
text-decoration:none;
}

div#left_tableList li {
margin: 0;
padding: 0;
white-space: nowrap;
line-height:1.5;
}

<?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?>
div#left_tableList li:hover, div#left_tableList li:hover a {
background-color: <?php echo $GLOBALS['cfg']['LeftPointerColor']; ?>;
color:#FFF;
}
<?php } ?>

div#left_tableList img {
vertical-align: middle;
}
div#left_tableList p {color:#333;padding:10px;}
div#left_tableList ul ul {
margin-left: 0em;
padding-left: 0.1em;
border-left: 0.1em solid #669999;
padding-bottom: 0.1em;
border-bottom: 0.1em solid #669999;
background-color:#FEFEFE;
}

/** Thanks Vince ;) - [email protected]**/
ul#databaseList{
list-style:none;

}
ul#databaseList li{
line-height:1.5em;
font-weight:bold;

}
ul#databaseList li a{
font-weight:normal;
text-decoration:none;
color:#333;
}
ul#databaseList li a:hover, ul#databaseList li a:active, ul#databaseList li a:focus{
font-weight:bold;
}
ul#databaseList li ul{
padding-left:10px;
margin-left:0px;

list-style:none;
padding-bottom:1em;
}
ul#databaseList li ul li a{
border-left:1px solid #333;
}
51 changes: 51 additions & 0 deletions silkline/css/theme_print.css.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* print css file from theme
*
* @version $Id$
* @package phpMyAdmin-theme
* @subpackage Silkline
*/
?>
/* For printview */
body{
font-family: Tahoma, Verdana, Arial, Hevetica, sans-serif;
font-size: 10px;
color: #FFFFFF;
background-color: #ffffff;
}
h1{
font-family: Tahoma, Verdana, Arial, Hevetica, sans-serif;
font-size: 16px;
font-weight: bold;
color: #FFFFFF;
}
table{
border-width: 1px;
border-color: #FFFFFF;
border-style: solid;
border-collapse: collapse;
border-spacing: 0;
}
th{
font-family: Tahoma, Verdana, Arial, Hevetica, sans-serif;
font-size: 10px;
font-weight: bold;
color: #FFFFFF;
background-color: #e5e5e5;
border-width: 1px;
border-color: #FFFFFF;
border-style: solid;
padding: 2px;
}
td{
font-family: Tahoma, Verdana, Arial, Hevetica, sans-serif;
font-size: 10px;
color: #FFFFFF;
background-color: #ffffff;
border-width: 1px;
border-color: #FFFFFF;
border-style: solid;
padding: 2px;
}
Loading

0 comments on commit 162c5d6

Please sign in to comment.