updated themes;

fixed bug #1452131 Fonts too large;
fixed bug #1446211 Colors hardcoded in theme css files;
This commit is contained in:
Sebastian Mendel
2006-04-26 11:32:29 +00:00
parent c8d47ae624
commit eb847fee11
9 changed files with 688 additions and 136 deletions

View File

@@ -1,27 +1,70 @@
<?php
/**
* configures general layout
* for detailed layout configuration please refer to the css files
*/
$cfg['LeftWidth'] = 200; // left frame width
/**
* navi frame
*/
$GLOBALS['cfg']['LeftWidth'] = 200; // navi frame width
/* colors */
$cfg['LeftBgColor'] = '#D0DCE0'; // background color for the left frame
$cfg['RightBgColor'] = '#F5F5F5'; // 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'] = '#E5E5E5'; // table data row colour
$cfg['BgcolorTwo'] = '#D5D5D5'; // table data row colour, alternate
$cfg['BrowsePointerColor'] = '#CCFFCC'; // color of the pointer in browse mode
$cfg['BrowseMarkerColor'] = '#FFCC99'; // color of the marker (visually marks row
// by clicking on it) in browse mode
$GLOBALS['cfg']['LeftColor'] = '#000000'; // foreground (text) color for the navi frame
$GLOBALS['cfg']['LeftBgColor'] = '#D0DCE0'; // background color for the navi frame
$GLOBALS['cfg']['LeftPointerColor'] = '#CCFFCC'; // color of the pointer in navi frame
$cfg['QueryWindowWidth'] = 600; // Width of Query window
$cfg['QueryWindowHeight'] = 400; // Height of Query window
/**
* main frame
*/
$GLOBALS['cfg']['RightColor'] = '#000000'; // foreground (text) color for the Main frame
$GLOBALS['cfg']['RightBgColor'] = '#F5F5F5'; // background color for the Main frame
/**
* path to a background image for the Main frame
* (leave blank for no background image)
*/
$GLOBALS['cfg']['RightBgImage'] = 'url(../' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png)';
/**
* 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'] = '';
/**
* 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
*/
$GLOBALS['cfg']['Border'] = 0; // border width on tables
$GLOBALS['cfg']['ThBgcolor'] = '#D3DCE3'; // table header row colour
$GLOBALS['cfg']['BgcolorOne'] = '#E5E5E5'; // table data row colour
$GLOBALS['cfg']['BgcolorTwo'] = '#D5D5D5'; // table data row colour, alternate
$GLOBALS['cfg']['BrowsePointerColor'] = '#CCFFCC'; // color of the pointer in browse mode
$GLOBALS['cfg']['BrowseMarkerColor'] = '#FFCC99'; // color of the marker (visually marks row
// by clicking on it) in browse mode
/**
* query window
*/
$GLOBALS['cfg']['QueryWindowWidth'] = 600; // Width of Query window
$GLOBALS['cfg']['QueryWindowHeight'] = 400; // Height of Query window
/**
* SQL Parser Settings
*/
$cfg['SQP']['fmtColor'] = array( // Syntax colouring data
$GLOBALS['cfg']['SQP']['fmtColor'] = array( // Syntax colouring data
'comment' => '#808000',
'comment_mysql' => '',
'comment_ansi' => '',