aqua updated

This commit is contained in:
Sebastian Mendel
2006-05-03 09:43:46 +00:00
parent 71af416145
commit 83d9c1d41a
4 changed files with 1008 additions and 365 deletions

View File

@@ -4,60 +4,111 @@
exit();
}
?>
/* No layer effects neccessary */
body,
body#body_leftFrame {
background-position: right;
background-image: url(../themes/aqua/img/bg_aquaGrad.png);
background-repeat: repeat-y;
background-color: #3E7BB6;
color: #ffffff;
/******************************************************************************/
/* general tags */
<?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
* {
font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
}
<?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#leftframelinks,
div#databaseList {
text-align: center;
border-bottom: 0.05em solid #669999;
margin-bottom: 0.5em;
padding-bottom: 0.5em;
text-align: center;
border-bottom: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
margin-bottom: 0.5em;
padding-bottom: 0.5em;
}
div#leftframelinks img {
vertical-align: middle;
div#leftframelinks .icon {
padding: 0;
margin: 0;
}
div#leftframelinks a {
margin: 0.1em;
padding: 0.2em;
border: 0.05em solid #669999;
div#leftframelinks a img.icon {
margin: 0;
padding: 0.2em;
border: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
}
div#leftframelinks a:hover {
background-color: Aqua;
}
div#databaseList form {
display: inline;
background-color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
}
/* leftdatabaselist */
div#left_tableList {
list-style-type: none;
div#left_tableList ul {
list-style-type: none;
list-style-position: outside;
margin: 0;
padding: 0;
font-size: <?php echo $font_smaller; ?>;
margin: 0;
padding: 0;
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 {
color: #ffffff;
text-decoration: none;
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
text-decoration: none;
}
div#left_tableList a:hover {
color: #FFff00;
text-decoration: underline;
color: #FFff00;
text-decoration: underline;
}
div#left_tableList li {
@@ -67,30 +118,21 @@ div#left_tableList li {
}
<?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?>
div#left_tableList li:hover a,
div#left_tableList li:hover {
background-color: Aqua;
color: #3E7BB6;
background-color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
color: #3E7BB6;
}
<?php } ?>
div#left_tableList img {
padding: 0;
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 {
margin-left: 0em;
padding-left: 0.1em;
border-left: 0.1em solid #669999;
padding-bottom: 0.1em;
border-bottom: 0.1em solid #669999;
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']; ?>;
}

File diff suppressed because it is too large Load Diff

View File

@@ -2,6 +2,5 @@
/* $Id$ */
/* Theme information */
$theme_name = 'Aqua';
$theme_version = 2;
$theme_generation = 2;
$theme_full_version = '2.8';
?>

View File

@@ -1,27 +1,87 @@
<?php
/**
* configures general layout
* for detailed layout configuration please refer to the css files
*/
$cfg['LeftWidth'] = 175; // left frame width
/* colors */
$cfg['LeftBgColor'] = '#4F8ABA'; // background color for the left frame
$cfg['RightBgColor'] = '#EEEEEE'; // 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'] = '#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
/**
* navi frame
*/
// navi frame width
$GLOBALS['cfg']['NaviWidth'] = 175;
$cfg['QueryWindowWidth'] = 550; // Width of Query window
$cfg['QueryWindowHeight'] = 310; // Height of Query window
// foreground (text) color for the navi frame
$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
* Syntax colouring data
*/
$cfg['SQP']['fmtColor'] = array( // Syntax colouring data
$GLOBALS['cfg']['SQP']['fmtColor'] = array(
'comment' => '#808000',
'comment_mysql' => '',
'comment_ansi' => '',