aqua updated
This commit is contained in:
@@ -4,60 +4,111 @@
|
|||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
/* No layer effects neccessary */
|
/******************************************************************************/
|
||||||
body,
|
/* general tags */
|
||||||
body#body_leftFrame {
|
<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
|
||||||
background-position: right;
|
* {
|
||||||
background-image: url(../themes/aqua/img/bg_aquaGrad.png);
|
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
|
||||||
background-repeat: repeat-y;
|
|
||||||
background-color: #3E7BB6;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
}
|
||||||
|
<?php } if (! empty($GLOBALS['cfg']['FontSize'])) { ?>
|
||||||
|
body, table, tbody, tr, td {
|
||||||
|
font-size: <?php echo $GLOBALS['cfg']['FontSize']; ?>;
|
||||||
|
}
|
||||||
|
select, input, textarea {
|
||||||
|
font-size: 0.7em;
|
||||||
|
}
|
||||||
|
<?php } ?>
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
|
||||||
|
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0.2em 0 0.2em 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
a img {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
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#pmalogo,
|
||||||
div#leftframelinks,
|
div#leftframelinks,
|
||||||
div#databaseList {
|
div#databaseList {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-bottom: 0.05em solid #669999;
|
border-bottom: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
margin-bottom: 0.5em;
|
margin-bottom: 0.5em;
|
||||||
padding-bottom: 0.5em;
|
padding-bottom: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#leftframelinks img {
|
div#leftframelinks .icon {
|
||||||
vertical-align: middle;
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#leftframelinks a {
|
div#leftframelinks a img.icon {
|
||||||
margin: 0.1em;
|
margin: 0;
|
||||||
padding: 0.2em;
|
padding: 0.2em;
|
||||||
border: 0.05em solid #669999;
|
border: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#leftframelinks a:hover {
|
div#leftframelinks a:hover {
|
||||||
background-color: Aqua;
|
background-color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
|
||||||
}
|
|
||||||
|
|
||||||
div#databaseList form {
|
|
||||||
display: inline;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* leftdatabaselist */
|
/* leftdatabaselist */
|
||||||
div#left_tableList {
|
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%;
|
||||||
|
background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
|
||||||
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
div#left_tableList ul ul {
|
||||||
|
font-size: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#left_tableList a {
|
div#left_tableList a {
|
||||||
color: #ffffff;
|
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#left_tableList a:hover {
|
div#left_tableList a:hover {
|
||||||
color: #FFff00;
|
color: #FFff00;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#left_tableList li {
|
div#left_tableList li {
|
||||||
@@ -67,30 +118,21 @@ div#left_tableList li {
|
|||||||
}
|
}
|
||||||
|
|
||||||
<?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?>
|
<?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?>
|
||||||
div#left_tableList li:hover a,
|
|
||||||
div#left_tableList li:hover {
|
div#left_tableList li:hover {
|
||||||
background-color: Aqua;
|
background-color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
|
||||||
color: #3E7BB6;
|
color: #3E7BB6;
|
||||||
}
|
}
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
div#left_tableList img {
|
div#left_tableList img {
|
||||||
|
padding: 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* leftdatabaselist */
|
|
||||||
div#left_tableList ul {
|
|
||||||
list-style-type: none;
|
|
||||||
list-style-position: outside;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#left_tableList ul ul {
|
div#left_tableList ul ul {
|
||||||
margin-left: 0em;
|
margin-left: 0;
|
||||||
padding-left: 0.1em;
|
padding-left: 0.1em;
|
||||||
border-left: 0.1em solid #669999;
|
border-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']; ?>;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -2,6 +2,5 @@
|
|||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
/* Theme information */
|
/* Theme information */
|
||||||
$theme_name = 'Aqua';
|
$theme_name = 'Aqua';
|
||||||
$theme_version = 2;
|
$theme_full_version = '2.8';
|
||||||
$theme_generation = 2;
|
|
||||||
?>
|
?>
|
||||||
|
@@ -1,27 +1,87 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* configures general layout
|
||||||
|
* for detailed layout configuration please refer to the css files
|
||||||
|
*/
|
||||||
|
|
||||||
$cfg['LeftWidth'] = 175; // left frame width
|
/**
|
||||||
/* colors */
|
* navi frame
|
||||||
$cfg['LeftBgColor'] = '#4F8ABA'; // background color for the left frame
|
*/
|
||||||
$cfg['RightBgColor'] = '#EEEEEE'; // background color for the right frame
|
// navi frame width
|
||||||
$cfg['RightBgImage'] = ''; // path to a background image for the right frame
|
$GLOBALS['cfg']['NaviWidth'] = 175;
|
||||||
// (leave blank for no background image)
|
|
||||||
$cfg['LeftPointerColor'] = '#CCFFCC'; // color of the pointer in left frame
|
|
||||||
$cfg['Border'] = 0; // border width on tables
|
|
||||||
$cfg['ThBgcolor'] = '#D3DCE3'; // table header row colour
|
|
||||||
$cfg['BgcolorOne'] = '#e9e9e9'; // table data row colour
|
|
||||||
$cfg['BgcolorTwo'] = '#FAFAFA'; // table data row colour, alternate
|
|
||||||
$cfg['BrowsePointerColor'] = '#DAEAFF'; // color of the pointer in browse mode
|
|
||||||
$cfg['BrowseMarkerColor'] = '#B5D5FF'; // color of the marker (visually marks row
|
|
||||||
// by clicking on it) in browse mode
|
|
||||||
|
|
||||||
$cfg['QueryWindowWidth'] = 550; // Width of Query window
|
// foreground (text) color for the navi frame
|
||||||
$cfg['QueryWindowHeight'] = 310; // Height of Query window
|
$GLOBALS['cfg']['NaviColor'] = '#ffffff';
|
||||||
|
|
||||||
|
// background for the navi frame
|
||||||
|
$GLOBALS['cfg']['NaviBackground'] = '#3E7BB6 right repeat-y url(../themes/aqua/img/bg_aquaGrad.png)';
|
||||||
|
|
||||||
|
// color of the pointer in navi frame
|
||||||
|
$GLOBALS['cfg']['NaviPointerColor'] = 'Navy';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* main frame
|
||||||
|
*/
|
||||||
|
// foreground (text) color for the main frame
|
||||||
|
$GLOBALS['cfg']['MainColor'] = '#000000';
|
||||||
|
|
||||||
|
// background for the main frame
|
||||||
|
//$GLOBALS['cfg']['MainBackground'] = '#3E7BB6 right repeat url(../themes/aqua/img/bg_main.png)';
|
||||||
|
$GLOBALS['cfg']['MainBackground'] = 'white';
|
||||||
|
|
||||||
|
// color of the pointer in browse mode
|
||||||
|
$GLOBALS['cfg']['BrowsePointerColor'] = '#DAEAFF';
|
||||||
|
|
||||||
|
// color of the marker (visually marks row by clicking on it) in browse mode
|
||||||
|
$GLOBALS['cfg']['BrowseMarkerColor'] = '#B5D5FF';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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'] = '';
|
||||||
|
/**
|
||||||
|
* fixed width font family, used in textarea
|
||||||
|
*/
|
||||||
|
$GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
|
||||||
|
/**
|
||||||
|
* font size as a valid css font size value,
|
||||||
|
* if not set the browser default will be used
|
||||||
|
* (depending on browser, DTD and system settings)
|
||||||
|
*/
|
||||||
|
$GLOBALS['cfg']['FontSize'] = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* tables
|
||||||
|
*/
|
||||||
|
// border
|
||||||
|
$GLOBALS['cfg']['Border'] = 0;
|
||||||
|
// table header and footer color
|
||||||
|
$GLOBALS['cfg']['ThBackground'] = '#cacaca repeat-x url(../themes/aqua/img/bg_tblHeaders.png)';
|
||||||
|
// table header and footer background
|
||||||
|
$GLOBALS['cfg']['ThColor'] = '#000000';
|
||||||
|
// table data row background
|
||||||
|
$GLOBALS['cfg']['BgOne'] = '#e9e9e9';
|
||||||
|
// table data row background, alternate
|
||||||
|
$GLOBALS['cfg']['BgTwo'] = '#FAFAFA';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* query window
|
||||||
|
*/
|
||||||
|
// Width of Query window
|
||||||
|
$GLOBALS['cfg']['QueryWindowWidth'] = 550;
|
||||||
|
// Height of Query window
|
||||||
|
$GLOBALS['cfg']['QueryWindowHeight'] = 310;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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' => '',
|
||||||
|
Reference in New Issue
Block a user