2.8 uses font size stored in cookie */ // for pma <2.9 : $GLOBALS['cfg']['FontSize'] = '90%'; /** * tables */ // border strenght ( e.g. .05em(min!)|1px|3pt| 0 but NOT 1) $GLOBALS['cfg']['Border'] = '.1em'; // table header,footer and "OK box" color $GLOBALS['cfg']['ThBackground'] = '#ddd'; // table header and footer background $GLOBALS['cfg']['ThColor'] = '#000'; // table data row background $GLOBALS['cfg']['BgOne'] = '#f5f5f5'; // table data row background, alternate $GLOBALS['cfg']['BgTwo'] = '#fff'; // table outer border color $GLOBALS['cfg']['TblBorderColor'] = 'blue'; /** * query window */ // Width of Query window $GLOBALS['cfg']['QueryWindowWidth'] = 600; // Height of Query window $GLOBALS['cfg']['QueryWindowHeight'] = 300; /** * SQL Parser Settings * Syntax colouring data */ $GLOBALS['cfg']['SQP']['fmtColor'] = array( 'comment' => '#808000', 'comment_mysql' => '', 'comment_ansi' => '', 'comment_c' => '', 'digit' => '', 'digit_hex' => 'teal', 'digit_integer' => 'teal', 'digit_float' => 'aqua', 'punct' => 'fuchsia', 'alpha' => '', 'alpha_columnType' => '#F90', 'alpha_columnAttrib' => 'blue', 'alpha_reservedWord' => '#909', 'alpha_functionName' => 'red', 'alpha_identifier' => 'black', 'alpha_charset' => '#6495ed', 'alpha_variable' => '#800000', 'quote' => '#008000', 'quote_double' => '', 'quote_single' => '', 'quote_backtick' => '' ); // Settings from .../phpmyadmin/config.inc.php // See libraries/config.default.php for similar settings // ~~~~~~~ alternate COLOR/FONT SETS choosable in config.inc.php ~~~~~~~~~~~ // (default settings from above are simply overridden) if (isset($GLOBALS['cfg']['customGrid'])) { if('old' == $GLOBALS['cfg']['customGrid']) { $GLOBALS['cfg']['NaviBackground'] = '#efefef'; $GLOBALS['cfg']['MainBackgroundColor'] = '#ddd'; $GLOBALS['cfg']['BrowseMarkerBackground']= '#ee9'; $GLOBALS['cfg']['TblBorderColor'] = '#ddddde'; } elseif('originalColors' == $GLOBALS['cfg']['customGrid']) { $GLOBALS['cfg']['NaviBackground'] = '#D0DCE0'; $GLOBALS['cfg']['NaviPointerColor'] = '#000'; $GLOBALS['cfg']['NaviPointerBackground'] = '#99C'; $GLOBALS['cfg']['NaviMarkedColor'] = '#000'; $GLOBALS['cfg']['NaviMarkedBackground']= '#99c'; $GLOBALS['cfg']['MainColor'] = '#000'; $GLOBALS['cfg']['MainBackgroundColor'] = '#F5F5F5';//'MainBackground' $GLOBALS['cfg']['BrowsePointerColor'] = '#000'; $GLOBALS['cfg']['BrowsePointerBackground'] = '#CFC'; $GLOBALS['cfg']['BrowseMarkerColor'] = '#000'; $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FC9'; $GLOBALS['cfg']['FontFamily'] = 'sans-serif'; $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace'; $GLOBALS['cfg']['Border'] = 0; $GLOBALS['cfg']['ThBackground'] = '#D3DCE3'; $GLOBALS['cfg']['ThColor'] = '#000'; $GLOBALS['cfg']['BgOne'] = '#E5E5E5'; $GLOBALS['cfg']['BgTwo'] = '#D5D5D5'; $GLOBALS['cfg']['QueryWindowWidth'] = 600; $GLOBALS['cfg']['QueryWindowHeight'] = 400; } elseif('tan' == $GLOBALS['cfg']['customGrid']) { $GLOBALS['cfg']['FontFamily'] = 'verdana,sans-serif'; $GLOBALS['cfg']['NaviBackground'] = '#dfc7a0';//white looks ugly,'#e7e7e7';// like IE6 scrollbar Am.:gray Br.:grey $GLOBALS['cfg']['NaviLinkColor'] = '#00a'; $GLOBALS['cfg']['NaviLinkBackground'] = '#fff'; $GLOBALS['cfg']['NaviPointerColor'] = '#00f'; $GLOBALS['cfg']['NaviPointerBackground'] = '#fff'; //'#d9f5ff'; //~cyan/tuerkis $GLOBALS['cfg']['NaviMarkedColor'] = '#000'; $GLOBALS['cfg']['NaviMarkedBackground']= '#ff9'; $GLOBALS['cfg']['NaviFontPercentage'] = '90%'; $GLOBALS['cfg']['MainBackgroundColor'] = '#edb'; //~tan $GLOBALS['cfg']['MainGridColor'] = '#eeddbc'; $GLOBALS['cfg']['MainLinkColor'] = '#00c'; $GLOBALS['cfg']['MainLinkBackground'] = '#fff'; $GLOBALS['cfg']['BrowsePointerColor'] = '#000'; $GLOBALS['cfg']['BrowsePointerBackground'] = '#cfc'; $GLOBALS['cfg']['BrowseMarkerColor'] = '#000'; $GLOBALS['cfg']['BrowseMarkerBackground'] = '#ffb'; $GLOBALS['cfg']['ThBackground'] = '#dca'; // ff9 too yellowish $GLOBALS['cfg']['ThColor'] = '#000'; $GLOBALS['cfg']['BgOne'] = '#fffcfa';#fffaf5 a bit too reddish $GLOBALS['cfg']['BgTwo'] = '#fff'; } } ?>