new theme
156
original_small/css/theme_left.css.php
Normal file
@@ -0,0 +1,156 @@
|
|||||||
|
<?php
|
||||||
|
// unplanned execution path
|
||||||
|
if (!defined('PMA_MINIMUM_COMMON')) {
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
/******************************************************************************/
|
||||||
|
/* general tags */
|
||||||
|
|
||||||
|
body {
|
||||||
|
<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
|
||||||
|
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
|
||||||
|
<?php } ?>
|
||||||
|
background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
|
||||||
|
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.2em 0.2em 0.2em 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
a img {
|
||||||
|
border: 0;
|
||||||
|
margin: 0px 0px 0px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
select {
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/******************************************************************************/
|
||||||
|
/* specific elements */
|
||||||
|
|
||||||
|
div#pmalogo,
|
||||||
|
div#leftframelinks,
|
||||||
|
div#databaseList {
|
||||||
|
text-align: center;
|
||||||
|
border-bottom: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#leftframelinks .icon {
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#leftframelinks a img.icon {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.2em;
|
||||||
|
border: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#leftframelinks a:hover {
|
||||||
|
background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
|
||||||
|
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 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;
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* leftdatabaselist */
|
||||||
|
div#left_tableList ul {
|
||||||
|
list-style-type: none;
|
||||||
|
list-style-position: outside;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-size: 80%;
|
||||||
|
background: <?php echo $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;
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
<?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-left: 0;
|
||||||
|
padding-left: 0.1em;
|
||||||
|
border-left: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
|
padding-bottom: 0.1em;
|
||||||
|
border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
|
}
|
29
original_small/css/theme_print.css.php
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
/* 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;
|
||||||
|
}
|
1106
original_small/css/theme_right.css.php
Normal file
BIN
original_small/img/arrow_ltr.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
original_small/img/arrow_rtl.png
Normal file
After Width: | Height: | Size: 278 B |
BIN
original_small/img/asc_order.png
Normal file
After Width: | Height: | Size: 124 B |
BIN
original_small/img/b_bookmark.png
Normal file
After Width: | Height: | Size: 372 B |
BIN
original_small/img/b_browse.png
Normal file
After Width: | Height: | Size: 265 B |
BIN
original_small/img/b_calendar.png
Normal file
After Width: | Height: | Size: 308 B |
BIN
original_small/img/b_comment.png
Normal file
After Width: | Height: | Size: 552 B |
BIN
original_small/img/b_dbstatistics.png
Normal file
After Width: | Height: | Size: 263 B |
BIN
original_small/img/b_deltbl.png
Normal file
After Width: | Height: | Size: 364 B |
BIN
original_small/img/b_docs.png
Normal file
After Width: | Height: | Size: 292 B |
BIN
original_small/img/b_docsql.png
Normal file
After Width: | Height: | Size: 283 B |
BIN
original_small/img/b_drop.png
Normal file
After Width: | Height: | Size: 311 B |
BIN
original_small/img/b_edit.png
Normal file
After Width: | Height: | Size: 451 B |
BIN
original_small/img/b_empty.png
Normal file
After Width: | Height: | Size: 298 B |
BIN
original_small/img/b_engine.png
Normal file
After Width: | Height: | Size: 362 B |
BIN
original_small/img/b_export.png
Normal file
After Width: | Height: | Size: 313 B |
BIN
original_small/img/b_firstpage.png
Normal file
After Width: | Height: | Size: 238 B |
BIN
original_small/img/b_ftext.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
original_small/img/b_help.png
Normal file
After Width: | Height: | Size: 229 B |
BIN
original_small/img/b_home.png
Normal file
After Width: | Height: | Size: 370 B |
BIN
original_small/img/b_import.png
Normal file
After Width: | Height: | Size: 310 B |
BIN
original_small/img/b_index.png
Normal file
After Width: | Height: | Size: 315 B |
BIN
original_small/img/b_info.png
Normal file
After Width: | Height: | Size: 234 B |
BIN
original_small/img/b_insrow.png
Normal file
After Width: | Height: | Size: 283 B |
BIN
original_small/img/b_lastpage.png
Normal file
After Width: | Height: | Size: 236 B |
BIN
original_small/img/b_minus.png
Normal file
After Width: | Height: | Size: 183 B |
BIN
original_small/img/b_newdb.png
Normal file
After Width: | Height: | Size: 408 B |
BIN
original_small/img/b_newtbl.png
Normal file
After Width: | Height: | Size: 409 B |
BIN
original_small/img/b_nextpage.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
original_small/img/b_pdfdoc.png
Normal file
After Width: | Height: | Size: 298 B |
BIN
original_small/img/b_plus.png
Normal file
After Width: | Height: | Size: 185 B |
BIN
original_small/img/b_prevpage.png
Normal file
After Width: | Height: | Size: 225 B |
BIN
original_small/img/b_primary.png
Normal file
After Width: | Height: | Size: 416 B |
BIN
original_small/img/b_print.png
Normal file
After Width: | Height: | Size: 574 B |
BIN
original_small/img/b_props.png
Normal file
After Width: | Height: | Size: 294 B |
BIN
original_small/img/b_relations.png
Normal file
After Width: | Height: | Size: 280 B |
BIN
original_small/img/b_save.png
Normal file
After Width: | Height: | Size: 385 B |
BIN
original_small/img/b_sbrowse.png
Normal file
After Width: | Height: | Size: 197 B |
BIN
original_small/img/b_sdb.png
Normal file
After Width: | Height: | Size: 232 B |
BIN
original_small/img/b_search.png
Normal file
After Width: | Height: | Size: 605 B |
BIN
original_small/img/b_selboard.png
Normal file
After Width: | Height: | Size: 274 B |
BIN
original_small/img/b_select.png
Normal file
After Width: | Height: | Size: 540 B |
BIN
original_small/img/b_sql.png
Normal file
After Width: | Height: | Size: 322 B |
BIN
original_small/img/b_sqldoc.png
Normal file
After Width: | Height: | Size: 290 B |
BIN
original_small/img/b_sqlhelp.png
Normal file
After Width: | Height: | Size: 287 B |
BIN
original_small/img/b_tblanalyse.png
Normal file
After Width: | Height: | Size: 296 B |
BIN
original_small/img/b_tblexport.png
Normal file
After Width: | Height: | Size: 283 B |
BIN
original_small/img/b_tblimport.png
Normal file
After Width: | Height: | Size: 280 B |
BIN
original_small/img/b_tblops.png
Normal file
After Width: | Height: | Size: 345 B |
BIN
original_small/img/b_tbloptimize.png
Normal file
After Width: | Height: | Size: 300 B |
BIN
original_small/img/b_tipp.png
Normal file
After Width: | Height: | Size: 308 B |
BIN
original_small/img/b_unique.png
Normal file
After Width: | Height: | Size: 281 B |
BIN
original_small/img/b_usradd.png
Normal file
After Width: | Height: | Size: 523 B |
BIN
original_small/img/b_usrcheck.png
Normal file
After Width: | Height: | Size: 400 B |
BIN
original_small/img/b_usrdrop.png
Normal file
After Width: | Height: | Size: 438 B |
BIN
original_small/img/b_usredit.png
Normal file
After Width: | Height: | Size: 493 B |
BIN
original_small/img/b_usrlist.png
Normal file
After Width: | Height: | Size: 401 B |
BIN
original_small/img/b_view.png
Normal file
After Width: | Height: | Size: 885 B |
BIN
original_small/img/b_views.png
Normal file
After Width: | Height: | Size: 477 B |
BIN
original_small/img/bd_browse.png
Normal file
After Width: | Height: | Size: 265 B |
BIN
original_small/img/bd_deltbl.png
Normal file
After Width: | Height: | Size: 424 B |
BIN
original_small/img/bd_drop.png
Normal file
After Width: | Height: | Size: 337 B |
BIN
original_small/img/bd_empty.png
Normal file
After Width: | Height: | Size: 298 B |
BIN
original_small/img/bd_firstpage.png
Normal file
After Width: | Height: | Size: 238 B |
BIN
original_small/img/bd_ftext.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
original_small/img/bd_index.png
Normal file
After Width: | Height: | Size: 315 B |
BIN
original_small/img/bd_insrow.png
Normal file
After Width: | Height: | Size: 347 B |
BIN
original_small/img/bd_lastpage.png
Normal file
After Width: | Height: | Size: 236 B |
BIN
original_small/img/bd_nextpage.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
original_small/img/bd_prevpage.png
Normal file
After Width: | Height: | Size: 225 B |
BIN
original_small/img/bd_primary.png
Normal file
After Width: | Height: | Size: 389 B |
BIN
original_small/img/bd_sbrowse.png
Normal file
After Width: | Height: | Size: 197 B |
BIN
original_small/img/bd_select.png
Normal file
After Width: | Height: | Size: 524 B |
BIN
original_small/img/bd_unique.png
Normal file
After Width: | Height: | Size: 287 B |
BIN
original_small/img/error.ico
Normal file
After Width: | Height: | Size: 318 B |
BIN
original_small/img/item.png
Normal file
After Width: | Height: | Size: 206 B |
BIN
original_small/img/item_ltr.png
Normal file
After Width: | Height: | Size: 173 B |
BIN
original_small/img/item_rtl.png
Normal file
After Width: | Height: | Size: 173 B |
BIN
original_small/img/logo_left.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
original_small/img/logo_right.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
original_small/img/php_sym.png
Normal file
After Width: | Height: | Size: 249 B |
BIN
original_small/img/pma_logo2.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
original_small/img/s_asc.png
Normal file
After Width: | Height: | Size: 213 B |
BIN
original_small/img/s_asci.png
Normal file
After Width: | Height: | Size: 254 B |
BIN
original_small/img/s_attention.png
Normal file
After Width: | Height: | Size: 247 B |
BIN
original_small/img/s_cancel.png
Normal file
After Width: | Height: | Size: 449 B |
BIN
original_small/img/s_cancel2.png
Normal file
After Width: | Height: | Size: 234 B |
BIN
original_small/img/s_db.png
Normal file
After Width: | Height: | Size: 285 B |
BIN
original_small/img/s_desc.png
Normal file
After Width: | Height: | Size: 221 B |
BIN
original_small/img/s_error.png
Normal file
After Width: | Height: | Size: 272 B |
BIN
original_small/img/s_error2.png
Normal file
After Width: | Height: | Size: 237 B |
BIN
original_small/img/s_fulltext.png
Normal file
After Width: | Height: | Size: 308 B |
BIN
original_small/img/s_host.png
Normal file
After Width: | Height: | Size: 316 B |
BIN
original_small/img/s_info.png
Normal file
After Width: | Height: | Size: 247 B |
BIN
original_small/img/s_lang.png
Normal file
After Width: | Height: | Size: 422 B |
BIN
original_small/img/s_loggoff.png
Normal file
After Width: | Height: | Size: 262 B |
BIN
original_small/img/s_notice.png
Normal file
After Width: | Height: | Size: 247 B |