3.0 upgrade, thanks to Tim Golen
@@ -1,11 +1,11 @@
|
|||||||
<?php
|
<?php
|
||||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||||
/**
|
/**
|
||||||
* navigation css file from theme
|
* navigation css file
|
||||||
*
|
*
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @package phpMyAdmin-theme
|
* @package phpMyAdmin-theme
|
||||||
* @subpackage Hillside
|
* @subpackage hillside
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// unplanned execution path
|
// unplanned execution path
|
||||||
@@ -13,148 +13,214 @@ if (!defined('PMA_MINIMUM_COMMON')) {
|
|||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
/******************************************************************************/
|
||||||
|
/* general tags */
|
||||||
html {
|
html {
|
||||||
height:100%;
|
font-size: <?php echo (null !== $_SESSION['PMA_Config']->get('fontsize') ? $_SESSION['PMA_Config']->get('fontsize') : $_COOKIE['pma_fontsize']); ?>;
|
||||||
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 {
|
input, select, textarea {
|
||||||
color: #000000;
|
font-size: 1em;
|
||||||
height:100%;
|
|
||||||
overflow:auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: <?php echo $GLOBALS['cfg']['LeftBgColor']; ?> url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>island_light.png) top left repeat-x;
|
<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
|
||||||
background-color: #65a603;
|
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
|
||||||
background-attachment: fixed;
|
<?php } ?>
|
||||||
}
|
background: <?php echo (isset($_SESSION['userconf']['custom_color']) ? $_SESSION['userconf']['custom_color'] : $GLOBALS['cfg']['NaviBackground']); ?>;
|
||||||
|
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
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(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_background.png) top left repeat-x;
|
|
||||||
padding:0;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
border-bottom:0px;
|
padding: 0.2em 0.2em 0.2em 0.2em;
|
||||||
}
|
|
||||||
div#leftframelinks img {
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div#leftframelinks a {
|
a img {
|
||||||
margin: 0.5em;
|
border: 0;
|
||||||
padding: 0.2em;
|
|
||||||
border: 0.05em solid #FFF;
|
|
||||||
color: #000000;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div#leftframelinks a:hover {
|
a:link,
|
||||||
background-color: transparent;
|
a:visited,
|
||||||
color:#FFF;
|
a:active {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #0000FF;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#databaseList form {
|
ul {
|
||||||
|
margin:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* leftdatabaselist */
|
select#select_server,
|
||||||
div#left_tableList {
|
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 */
|
||||||
|
|
||||||
|
#body_leftFrame {
|
||||||
|
background-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/hillside/img/island_light.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
div#pmalogo {
|
||||||
|
<?php //better echo $GLOBALS['cfg']['logoBGC']; ?>
|
||||||
|
padding:.3em;
|
||||||
|
}
|
||||||
|
div#pmalogo,
|
||||||
|
div#leftframelinks,
|
||||||
|
div#databaseList {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#databaseList {
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
padding-bottom: 0.5em;
|
||||||
|
padding-<?php echo $left; ?>: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#databaseList a {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#navidbpageselector a,
|
||||||
|
ul#databaseList a {
|
||||||
|
background-image:url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/hillside/img/transparent.png);
|
||||||
|
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul#databaseList a:hover {
|
||||||
|
background-image:url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/hillside/img/transparent60.png);
|
||||||
|
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
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: 0;
|
||||||
|
padding: 0.2em;
|
||||||
|
border: 0.05em solid <?php echo $GLOBALS['cfg']['NaviBorderColor']; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#leftframelinks a:hover {
|
||||||
|
background-image:url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/hillside/img/transparent.png);
|
||||||
|
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%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#left_tableList ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
list-style-position: outside;
|
list-style-position: outside;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: <?php echo $font_smaller; ?>;
|
font-size: 80%;
|
||||||
color:#FFF;
|
background-image:url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/hillside/img/transparent.png);
|
||||||
}
|
}
|
||||||
div#left_tableList p a.item, form#left label{
|
|
||||||
font-weight:bold;
|
div#left_tableList ul ul {
|
||||||
color:#000;
|
font-size: 100%;
|
||||||
font-size:110%;
|
|
||||||
text-align:left;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div#left_tableList a {
|
div#left_tableList a {
|
||||||
color: #FFF;
|
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#left_tableList a:hover {
|
div#left_tableList a:hover {
|
||||||
color: #FFF;
|
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
background-color: transparent;
|
text-decoration: underline;
|
||||||
text-decoration:none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
div#left_tableList li {
|
div#left_tableList li {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
line-height:1.5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<?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']) { ?>
|
<?php if ($GLOBALS['cfg']['LeftPointerEnable']) { ?>
|
||||||
div#left_tableList li:hover {
|
div#left_tableList > ul li:hover {
|
||||||
background:#FFF url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>transparent.png) top left repeat-x;
|
background-image:url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/hillside/img/transparent60.png);
|
||||||
background-color: transparent;
|
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
|
||||||
color:#FFF;
|
|
||||||
}
|
}
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
div#left_tableList img {
|
div#left_tableList img {
|
||||||
|
padding: 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
div#left_tableList p {color:#333;padding:10px;}
|
|
||||||
div#left_tableList ul ul {
|
div#left_tableList ul ul {
|
||||||
margin-left: 0em;
|
margin-<?php echo $left; ?>: 0;
|
||||||
padding-left: 0.1em;
|
padding-<?php echo $left; ?>: 0.1em;
|
||||||
border-left: 0.1em solid #669999;
|
border-<?php echo $left; ?>: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
padding-bottom: 0.1em;
|
padding-bottom: 0.1em;
|
||||||
border-bottom: 0.1em solid #669999;
|
border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
background-color:#FEFEFE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Thanks Vince ;) - vincekruger@gmail.com**/
|
/* for the servers list in navi panel */
|
||||||
ul#databaseList{
|
#serverinfo .item {
|
||||||
list-style:none;
|
white-space: nowrap;
|
||||||
|
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
}
|
}
|
||||||
ul#databaseList li{
|
#serverinfo a:hover {
|
||||||
line-height:1.5em;
|
background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
|
||||||
font-weight:bold;
|
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
|
||||||
|
|
||||||
}
|
|
||||||
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;
|
|
||||||
}
|
}
|
||||||
|
@@ -1,51 +1,39 @@
|
|||||||
<?php
|
<?php
|
||||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||||
/**
|
/**
|
||||||
* print css file from theme
|
* print css file from theme Original
|
||||||
*
|
*
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @package phpMyAdmin-theme
|
* @package phpMyAdmin-theme
|
||||||
* @subpackage Hillside
|
* @subpackage Original
|
||||||
*/
|
*/
|
||||||
?>
|
?>
|
||||||
/* For printview */
|
/* For printview */
|
||||||
body{
|
body, table, th, td {
|
||||||
font-family: Tahoma, Verdana, Arial, Hevetica, sans-serif;
|
color: #000000;
|
||||||
font-size: 10px;
|
|
||||||
color: #FFFFFF;
|
|
||||||
background-color: #ffffff;
|
background-color: #ffffff;
|
||||||
}
|
}
|
||||||
h1{
|
|
||||||
font-family: Tahoma, Verdana, Arial, Hevetica, sans-serif;
|
img {
|
||||||
font-size: 16px;
|
border: 0;
|
||||||
font-weight: bold;
|
|
||||||
color: #FFFFFF;
|
|
||||||
}
|
}
|
||||||
table{
|
|
||||||
border-width: 1px;
|
table, th, td {
|
||||||
border-color: #FFFFFF;
|
border-width: 0.1em;
|
||||||
|
border-color: #000000;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
padding: 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
font-family: Tahoma, Verdana, Arial, Hevetica, sans-serif;
|
|
||||||
font-size: 10px;
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #FFFFFF;
|
|
||||||
background-color: #e5e5e5;
|
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;
|
|
||||||
}
|
}
|
||||||
|
BIN
hillside/img/bd_drop.png
Normal file
After Width: | Height: | Size: 337 B |
BIN
hillside/img/bd_insrow.png
Normal file
After Width: | Height: | Size: 347 B |
BIN
hillside/img/error.ico
Normal file
After Width: | Height: | Size: 318 B |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 7.2 KiB |
BIN
hillside/img/s_success.png
Normal file
After Width: | Height: | Size: 612 B |
Before Width: | Height: | Size: 121 B After Width: | Height: | Size: 121 B |
@@ -3,19 +3,14 @@
|
|||||||
/**
|
/**
|
||||||
* Theme information
|
* Theme information
|
||||||
*
|
*
|
||||||
*
|
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @package phpMyAdmin-theme
|
* @package phpMyAdmin-theme
|
||||||
* @subpackage Hillside
|
* @subpackage hillside
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This theme is based on Pixeline, but it uses the famous Silk-icons.
|
*
|
||||||
* Made by Douwe Ikkuh (http://www.douweikkuh.nl)
|
|
||||||
* Fixed (remade) for PMA 2.11 by Lukáš Chmela (http://82.114.202.3/)
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$theme_name = 'Hillside';
|
$theme_name = 'Hillside';
|
||||||
$theme_version = 1;
|
$theme_full_version = '1.0';
|
||||||
$theme_generation = 1;
|
|
||||||
?>
|
?>
|
||||||
|
@@ -6,33 +6,92 @@
|
|||||||
*
|
*
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @package phpMyAdmin-theme
|
* @package phpMyAdmin-theme
|
||||||
* @subpackage Hillside
|
* @subpackage Original
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* navi frame
|
* navi frame
|
||||||
*/
|
*/
|
||||||
|
// navi frame width
|
||||||
|
$GLOBALS['cfg']['NaviWidth'] = 200;
|
||||||
|
|
||||||
|
// foreground (text) color for the navi frame
|
||||||
|
$GLOBALS['cfg']['NaviColor'] = '#000000';
|
||||||
|
$GLOBALS['cfg']['NaviBorderColor'] = '#94b3f2';
|
||||||
|
|
||||||
|
// background for the navi frame
|
||||||
|
$GLOBALS['cfg']['NaviBackground'] = '#D0DCE0';
|
||||||
|
|
||||||
|
// foreground (text) color of the pointer in navi frame
|
||||||
|
$GLOBALS['cfg']['NaviPointerColor'] = '#000000';
|
||||||
|
// background of the pointer in navi frame
|
||||||
|
$GLOBALS['cfg']['NaviPointerBackground'] = '#9999CC';
|
||||||
|
// text color of the selected database name (when showing the table list)
|
||||||
|
$GLOBALS['cfg']['NaviDatabaseNameColor'] = '#ffa113';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* main frame
|
||||||
|
*/
|
||||||
|
// foreground (text) color for the main frame
|
||||||
|
$GLOBALS['cfg']['MainColor'] = '#000000';
|
||||||
|
|
||||||
|
// background for the main frame
|
||||||
|
//$GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
|
||||||
|
$GLOBALS['cfg']['MainBackground'] = '#65a603 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'island_light.png) top left repeat-x';
|
||||||
|
|
||||||
|
// foreground (text) color of the pointer in browse mode
|
||||||
|
$GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
|
||||||
|
|
||||||
|
// background of the pointer in browse mode
|
||||||
|
$GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
|
||||||
|
|
||||||
|
// foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
|
||||||
|
$GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
|
||||||
|
|
||||||
|
// background of the marker (visually marks row by clicking on it) in browse mode
|
||||||
|
$GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* fonts
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* the font family as a valid css font family value,
|
||||||
|
* if not set the browser default will be used
|
||||||
|
* (depending on browser, DTD and system settings)
|
||||||
|
*/
|
||||||
|
$GLOBALS['cfg']['FontFamily'] = '"Tahoma", "Lucida Grande", Verdana, sans-serif';
|
||||||
|
/**
|
||||||
|
* fixed width font family, used in textarea
|
||||||
|
*/
|
||||||
|
$GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* tables
|
||||||
|
*/
|
||||||
|
// border
|
||||||
|
$GLOBALS['cfg']['Border'] = 0;
|
||||||
|
// table header and footer color
|
||||||
|
$GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
|
||||||
|
// table header and footer background
|
||||||
|
$GLOBALS['cfg']['ThColor'] = '#000000';
|
||||||
|
// table data row background
|
||||||
|
$GLOBALS['cfg']['BgOne'] = '#E5E5E5';
|
||||||
|
// table data row background, alternate
|
||||||
|
$GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* query window
|
||||||
|
*/
|
||||||
|
// Width of Query window
|
||||||
|
$GLOBALS['cfg']['QueryWindowWidth'] = 600;
|
||||||
|
// Height of Query window
|
||||||
|
$GLOBALS['cfg']['QueryWindowHeight'] = 400;
|
||||||
|
|
||||||
$cfg['LeftWidth'] = 250; // left frame width
|
|
||||||
/* colors */
|
|
||||||
$cfg['LeftBgColor'] = ''; // background color for the left frame
|
|
||||||
$cfg['RightBgColor'] = '#65a603'; // background color for the right frame
|
|
||||||
$cfg['RightBgImage'] = ''; // path to a background image for the right frame
|
|
||||||
// (leave blank for no background image)
|
|
||||||
$cfg['LeftPointerColor'] = '#525252'; // color of the pointer in left frame
|
|
||||||
$cfg['Border'] = 0; // border width on tables
|
|
||||||
$cfg['ThBgcolor'] = '#DEDEDE'; // table header row colour
|
|
||||||
$cfg['BgcolorOne'] = '#F3F3F3'; // table data row colour
|
|
||||||
$cfg['BgcolorTwo'] = '#FFFFFF'; // table data row colour, alternate
|
|
||||||
$cfg['BrowsePointerColor'] = '#ffffd7'; // color of the pointer in browse mode
|
|
||||||
$cfg['BrowseMarkerColor'] = '#ffffd7'; // color of the marker (visually marks row
|
|
||||||
// by clicking on it) in browse mode
|
|
||||||
$right_font_family = 'Tahoma, Arial, Helvetica, Verdana, sans-serif';
|
|
||||||
$font_size = '11px';
|
|
||||||
/**
|
/**
|
||||||
* SQL Parser Settings
|
* SQL Parser Settings
|
||||||
|
* Syntax colouring data
|
||||||
*/
|
*/
|
||||||
$cfg['SQP']['fmtColor'] = array( // Syntax colouring data
|
$GLOBALS['cfg']['SQP']['fmtColor'] = array(
|
||||||
'comment' => '#808000',
|
'comment' => '#808000',
|
||||||
'comment_mysql' => '',
|
'comment_mysql' => '',
|
||||||
'comment_ansi' => '',
|
'comment_ansi' => '',
|
||||||
|