PMAhomme theme
240
pmahomme/css/theme_left.css.php
Normal file
@@ -0,0 +1,240 @@
|
||||
<?php
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* navigation css file from theme Original
|
||||
*
|
||||
* @version $Id: theme_left.css.php 11409 2008-07-19 14:46:28Z lem9 $
|
||||
* @package phpMyAdmin-theme
|
||||
* @subpackage Original
|
||||
*/
|
||||
|
||||
// unplanned execution path
|
||||
if (!defined('PMA_MINIMUM_COMMON')) {
|
||||
exit();
|
||||
}
|
||||
?>
|
||||
/******************************************************************************/
|
||||
/* general tags */
|
||||
html {
|
||||
font-size: <?php echo (null !== $_SESSION['PMA_Config']->get('fontsize') ? $_SESSION['PMA_Config']->get('fontsize') : $_COOKIE['pma_fontsize']); ?>;
|
||||
}
|
||||
|
||||
input, select, textarea {
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
body {
|
||||
<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
|
||||
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
|
||||
<?php } ?>
|
||||
background: url(./themes/pmahomme/img/left_nav_bg.png) repeat-y right 0% #f3f3f3;
|
||||
border-right: 1px solid #aaa;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
a:link,
|
||||
a:visited,
|
||||
a:active {
|
||||
text-decoration: none;
|
||||
color: #0000FF;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin:0;
|
||||
}
|
||||
|
||||
form {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
select#select_server,
|
||||
select#lightm_db {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* buttons in some browsers (eg. Konqueror) are block elements,
|
||||
this breaks design */
|
||||
button {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
|
||||
/******************************************************************************/
|
||||
/* classes */
|
||||
|
||||
/* leave some space between icons and text */
|
||||
.icon {
|
||||
vertical-align: middle;
|
||||
margin-right: 0.3em;
|
||||
margin-left: 0.3em;
|
||||
}
|
||||
|
||||
.navi_dbName {
|
||||
font-weight: bold;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviDatabaseNameColor']; ?>;
|
||||
}
|
||||
|
||||
/******************************************************************************/
|
||||
/* specific elements */
|
||||
|
||||
div#pmalogo {
|
||||
<?php //better echo $GLOBALS['cfg']['logoBGC']; ?>
|
||||
padding:.3em;
|
||||
}
|
||||
div#pmalogo,
|
||||
div#leftframelinks,
|
||||
div#databaseList {
|
||||
text-align: center;
|
||||
margin: 20px 10px 0px 10px;
|
||||
}
|
||||
|
||||
ul#databaseList {
|
||||
margin-bottom: 0.5em;
|
||||
padding-bottom: 0.5em;
|
||||
padding:20px 0;
|
||||
}
|
||||
|
||||
#databaseList li {
|
||||
list-style-type:none;
|
||||
text-indent:29px;
|
||||
|
||||
}
|
||||
|
||||
ul#databaseList a {
|
||||
display: block;
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
div#navidbpageselector a,
|
||||
ul#databaseList a {
|
||||
background:url(./themes/pmahomme/img/database.png) no-repeat 5% 50% transparent;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
ul#databaseList a:hover {
|
||||
background:url(./themes/pmahomme/img/database.png) no-repeat 5% 50% #e3e3e3;
|
||||
}
|
||||
|
||||
ul#databaseList li.selected a {
|
||||
background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
|
||||
}
|
||||
|
||||
div#leftframelinks .icon {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div#leftframelinks a img.icon {
|
||||
margin: 10px 10px 0 0;
|
||||
padding: 0.2em;
|
||||
}
|
||||
|
||||
div#leftframelinks a:hover {
|
||||
|
||||
}
|
||||
|
||||
/* serverlist */
|
||||
#body_leftFrame #list_server {
|
||||
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_host.png);
|
||||
list-style-position: inside;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#body_leftFrame #list_server li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
div#left_tableList ul {
|
||||
list-style-type: none;
|
||||
list-style-position: outside;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: <?php echo (isset($_SESSION['userconf']['custom_color']) ? $_SESSION['userconf']['custom_color'] : $GLOBALS['cfg']['NaviBackground']); ?>;
|
||||
}
|
||||
|
||||
div#left_tableList ul ul {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
div#left_tableList a {
|
||||
background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#left_tableList{
|
||||
display:none;
|
||||
}
|
||||
|
||||
|
||||
div#left_tableList a:hover {
|
||||
background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
div#left_tableList li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
select{
|
||||
-moz-border-radius:2px 2px 2px 2px;
|
||||
-moz-box-shadow:0 1px 2px #DDDDDD;
|
||||
border:1px solid #aaa;
|
||||
color:#333333;
|
||||
padding:3px;
|
||||
background:url(./themes/pmahomme/img/input_bg.gif);
|
||||
}
|
||||
|
||||
<?php if ($GLOBALS['cfg']['BrowseMarkerColor']) { ?>
|
||||
/* marked items */
|
||||
div#left_tableList > ul li.marked > a,
|
||||
div#left_tableList > ul li.marked {
|
||||
background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($GLOBALS['cfg']['LeftPointerEnable']) { ?>
|
||||
div#left_tableList > ul li:hover > a,
|
||||
div#left_tableList > ul li:hover {
|
||||
background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
div#left_tableList img {
|
||||
padding: 0;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
div#left_tableList ul ul {
|
||||
margin-<?php echo $left; ?>: 0;
|
||||
padding-<?php echo $left; ?>: 0.1em;
|
||||
border-<?php echo $left; ?>: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||
padding-bottom: 0.1em;
|
||||
border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||
}
|
||||
|
||||
/* for the servers list in navi panel */
|
||||
#serverinfo .item {
|
||||
white-space: nowrap;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||
}
|
||||
#serverinfo a:hover {
|
||||
background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
|
||||
}
|
39
pmahomme/css/theme_print.css.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* print css file from theme Original
|
||||
*
|
||||
* @version $Id: theme_print.css.php 10145 2007-03-20 13:39:12Z cybot_tm $
|
||||
* @package phpMyAdmin-theme
|
||||
* @subpackage Original
|
||||
*/
|
||||
?>
|
||||
/* For printview */
|
||||
body, table, th, td {
|
||||
color: #000000;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
table, th, td {
|
||||
border-width: 0.1em;
|
||||
border-color: #000000;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
th, td {
|
||||
padding: 0.2em;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: bold;
|
||||
background-color: #e5e5e5;
|
||||
}
|
1299
pmahomme/css/theme_right.css.php
Normal file
BIN
pmahomme/img/arrow_ltr.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
pmahomme/img/arrow_rtl.png
Normal file
After Width: | Height: | Size: 278 B |
BIN
pmahomme/img/asc_order.png
Normal file
After Width: | Height: | Size: 201 B |
BIN
pmahomme/img/b_bookmark.png
Normal file
After Width: | Height: | Size: 714 B |
BIN
pmahomme/img/b_browse.png
Normal file
After Width: | Height: | Size: 566 B |
BIN
pmahomme/img/b_calendar.png
Normal file
After Width: | Height: | Size: 675 B |
BIN
pmahomme/img/b_comment.png
Normal file
After Width: | Height: | Size: 413 B |
BIN
pmahomme/img/b_dbstatistics.png
Normal file
After Width: | Height: | Size: 541 B |
BIN
pmahomme/img/b_deltbl.png
Normal file
After Width: | Height: | Size: 660 B |
BIN
pmahomme/img/b_docs.png
Normal file
After Width: | Height: | Size: 786 B |
BIN
pmahomme/img/b_docsql.png
Normal file
After Width: | Height: | Size: 283 B |
BIN
pmahomme/img/b_drop.png
Normal file
After Width: | Height: | Size: 700 B |
BIN
pmahomme/img/b_edit.png
Normal file
After Width: | Height: | Size: 450 B |
BIN
pmahomme/img/b_empty.png
Normal file
After Width: | Height: | Size: 363 B |
BIN
pmahomme/img/b_engine.png
Normal file
After Width: | Height: | Size: 468 B |
BIN
pmahomme/img/b_export.png
Normal file
After Width: | Height: | Size: 641 B |
BIN
pmahomme/img/b_firstpage (2).png
Normal file
After Width: | Height: | Size: 522 B |
BIN
pmahomme/img/b_firstpage.png
Normal file
After Width: | Height: | Size: 745 B |
BIN
pmahomme/img/b_ftext.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
pmahomme/img/b_help.png
Normal file
After Width: | Height: | Size: 229 B |
BIN
pmahomme/img/b_home.png
Normal file
After Width: | Height: | Size: 806 B |
BIN
pmahomme/img/b_import.png
Normal file
After Width: | Height: | Size: 629 B |
BIN
pmahomme/img/b_index.png
Normal file
After Width: | Height: | Size: 315 B |
BIN
pmahomme/img/b_info.png
Normal file
After Width: | Height: | Size: 234 B |
BIN
pmahomme/img/b_insrow.png
Normal file
After Width: | Height: | Size: 283 B |
BIN
pmahomme/img/b_lastpage (2).png
Normal file
After Width: | Height: | Size: 524 B |
BIN
pmahomme/img/b_lastpage.png
Normal file
After Width: | Height: | Size: 736 B |
BIN
pmahomme/img/b_minus.png
Normal file
After Width: | Height: | Size: 207 B |
BIN
pmahomme/img/b_newdb.png
Normal file
After Width: | Height: | Size: 658 B |
BIN
pmahomme/img/b_newtbl.png
Normal file
After Width: | Height: | Size: 409 B |
BIN
pmahomme/img/b_nextpage.png
Normal file
After Width: | Height: | Size: 395 B |
BIN
pmahomme/img/b_pdfdoc.png
Normal file
After Width: | Height: | Size: 591 B |
BIN
pmahomme/img/b_plus.png
Normal file
After Width: | Height: | Size: 209 B |
BIN
pmahomme/img/b_prevpage.png
Normal file
After Width: | Height: | Size: 389 B |
BIN
pmahomme/img/b_primary.png
Normal file
After Width: | Height: | Size: 612 B |
BIN
pmahomme/img/b_print.png
Normal file
After Width: | Height: | Size: 731 B |
BIN
pmahomme/img/b_props.png
Normal file
After Width: | Height: | Size: 663 B |
BIN
pmahomme/img/b_relations.png
Normal file
After Width: | Height: | Size: 280 B |
BIN
pmahomme/img/b_save.png
Normal file
After Width: | Height: | Size: 620 B |
BIN
pmahomme/img/b_sbrowse.png
Normal file
After Width: | Height: | Size: 197 B |
BIN
pmahomme/img/b_sdb.png
Normal file
After Width: | Height: | Size: 232 B |
BIN
pmahomme/img/b_search.png
Normal file
After Width: | Height: | Size: 615 B |
BIN
pmahomme/img/b_selboard.png
Normal file
After Width: | Height: | Size: 698 B |
BIN
pmahomme/img/b_select.png
Normal file
After Width: | Height: | Size: 680 B |
BIN
pmahomme/img/b_sql.png
Normal file
After Width: | Height: | Size: 748 B |
BIN
pmahomme/img/b_sqldoc.png
Normal file
After Width: | Height: | Size: 290 B |
BIN
pmahomme/img/b_sqlhelp.png
Normal file
After Width: | Height: | Size: 579 B |
BIN
pmahomme/img/b_tblanalyse.png
Normal file
After Width: | Height: | Size: 296 B |
BIN
pmahomme/img/b_tblexport.png
Normal file
After Width: | Height: | Size: 641 B |
BIN
pmahomme/img/b_tblimport.png
Normal file
After Width: | Height: | Size: 629 B |
BIN
pmahomme/img/b_tblops.png
Normal file
After Width: | Height: | Size: 610 B |
BIN
pmahomme/img/b_tbloptimize.png
Normal file
After Width: | Height: | Size: 300 B |
BIN
pmahomme/img/b_tipp.png
Normal file
After Width: | Height: | Size: 782 B |
BIN
pmahomme/img/b_unique.png
Normal file
After Width: | Height: | Size: 281 B |
BIN
pmahomme/img/b_usradd.png
Normal file
After Width: | Height: | Size: 746 B |
BIN
pmahomme/img/b_usrcheck.png
Normal file
After Width: | Height: | Size: 793 B |
BIN
pmahomme/img/b_usrdrop.png
Normal file
After Width: | Height: | Size: 767 B |
BIN
pmahomme/img/b_usredit.png
Normal file
After Width: | Height: | Size: 833 B |
BIN
pmahomme/img/b_usrlist.png
Normal file
After Width: | Height: | Size: 753 B |
BIN
pmahomme/img/b_view.png
Normal file
After Width: | Height: | Size: 885 B |
BIN
pmahomme/img/b_views.png
Normal file
After Width: | Height: | Size: 477 B |
BIN
pmahomme/img/bd_browse.png
Normal file
After Width: | Height: | Size: 265 B |
BIN
pmahomme/img/bd_deltbl.png
Normal file
After Width: | Height: | Size: 424 B |
BIN
pmahomme/img/bd_drop.png
Normal file
After Width: | Height: | Size: 337 B |
BIN
pmahomme/img/bd_empty.png
Normal file
After Width: | Height: | Size: 298 B |
BIN
pmahomme/img/bd_firstpage.png
Normal file
After Width: | Height: | Size: 238 B |
BIN
pmahomme/img/bd_ftext.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
pmahomme/img/bd_index.png
Normal file
After Width: | Height: | Size: 315 B |
BIN
pmahomme/img/bd_insrow.png
Normal file
After Width: | Height: | Size: 347 B |
BIN
pmahomme/img/bd_lastpage.png
Normal file
After Width: | Height: | Size: 236 B |
BIN
pmahomme/img/bd_nextpage.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
pmahomme/img/bd_prevpage.png
Normal file
After Width: | Height: | Size: 225 B |
BIN
pmahomme/img/bd_primary.png
Normal file
After Width: | Height: | Size: 389 B |
BIN
pmahomme/img/bd_sbrowse.png
Normal file
After Width: | Height: | Size: 197 B |
BIN
pmahomme/img/bd_select.png
Normal file
After Width: | Height: | Size: 524 B |
BIN
pmahomme/img/bd_unique.png
Normal file
After Width: | Height: | Size: 287 B |
BIN
pmahomme/img/body_bg.png
Normal file
After Width: | Height: | Size: 372 B |
BIN
pmahomme/img/database.png
Normal file
After Width: | Height: | Size: 390 B |
BIN
pmahomme/img/error.ico
Normal file
After Width: | Height: | Size: 318 B |
BIN
pmahomme/img/input_bg.gif
Normal file
After Width: | Height: | Size: 162 B |
BIN
pmahomme/img/item.png
Normal file
After Width: | Height: | Size: 206 B |
BIN
pmahomme/img/item_ltr.png
Normal file
After Width: | Height: | Size: 173 B |
BIN
pmahomme/img/item_rtl.png
Normal file
After Width: | Height: | Size: 173 B |
BIN
pmahomme/img/left_nav_bg.png
Normal file
After Width: | Height: | Size: 215 B |
BIN
pmahomme/img/logo_left.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
pmahomme/img/logo_right.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
pmahomme/img/php_sym.png
Normal file
After Width: | Height: | Size: 249 B |
BIN
pmahomme/img/pma_logo2.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
pmahomme/img/s_asc.png
Normal file
After Width: | Height: | Size: 201 B |
BIN
pmahomme/img/s_asci.png
Normal file
After Width: | Height: | Size: 209 B |
BIN
pmahomme/img/s_attention.png
Normal file
After Width: | Height: | Size: 666 B |
BIN
pmahomme/img/s_cancel.png
Normal file
After Width: | Height: | Size: 587 B |
BIN
pmahomme/img/s_cancel2.png
Normal file
After Width: | Height: | Size: 308 B |
BIN
pmahomme/img/s_db.png
Normal file
After Width: | Height: | Size: 390 B |
BIN
pmahomme/img/s_desc.png
Normal file
After Width: | Height: | Size: 201 B |
BIN
pmahomme/img/s_error.png
Normal file
After Width: | Height: | Size: 701 B |
BIN
pmahomme/img/s_error2.png
Normal file
After Width: | Height: | Size: 237 B |