home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / themes / darkblue_orange / layout.inc.php < prev    next >
Encoding:
PHP Script  |  2008-06-23  |  3.7 KB  |  124 lines

  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4.  * configures general layout
  5.  * for detailed layout configuration please refer to the css files
  6.  *
  7.  * @version $Id: layout.inc.php 11036 2008-01-05 14:30:41Z lem9 $
  8.  * @package phpMyAdmin-theme
  9.  * @subpackage Darkblue_orange
  10.  */
  11.  
  12. // protect against path disclosure
  13. if (empty($_SESSION['PMA_Theme'])) {
  14.     exit;
  15. }
  16.  
  17. /**
  18.  * navi frame
  19.  */
  20. // navi frame width
  21. $GLOBALS['cfg']['NaviWidth']                = 180;
  22.  
  23. // foreground (text) color for the navi frame
  24. $GLOBALS['cfg']['NaviColor']                = '#ffffff';
  25.  
  26. // background for the navi frame
  27. $GLOBALS['cfg']['NaviBackground']           = '#666699';
  28.  
  29. // foreground (text) color of the pointer in navi frame
  30. $GLOBALS['cfg']['NaviPointerColor']         = '#000000';
  31.  
  32. // background of the pointer in navi frame
  33. $GLOBALS['cfg']['NaviPointerBackground']    = '#9999cc';
  34.  
  35. // text color of the selected database name (when showing the table list)
  36. $GLOBALS['cfg']['NaviDatabaseNameColor']    = '#ff9900';
  37.  
  38. /**
  39.  * main frame
  40.  */
  41. // foreground (text) color for the main frame
  42. $GLOBALS['cfg']['MainColor']                = '#000000';
  43.  
  44. // background for the main frame
  45. $GLOBALS['cfg']['MainBackground']           = '#ffffff';
  46. //$GLOBALS['cfg']['MainBackground']       = '#ffffff url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
  47.  
  48. // foreground (text) color of the pointer in browse mode
  49. $GLOBALS['cfg']['BrowsePointerColor']       = '#000000';
  50.  
  51. // background of the pointer in browse mode
  52. $GLOBALS['cfg']['BrowsePointerBackground']  = '#ccffcc';
  53.  
  54. // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
  55. $GLOBALS['cfg']['BrowseMarkerColor']        = '#000000';
  56.  
  57. // background of the marker (visually marks row by clicking on it) in browse mode
  58. $GLOBALS['cfg']['BrowseMarkerBackground']   = '#ffcc99';
  59.  
  60. /**
  61.  * fonts
  62.  */
  63. /**
  64.  * the font family as a valid css font family value,
  65.  * if not set the browser default will be used
  66.  * (depending on browser, DTD and system settings)
  67.  */
  68. $GLOBALS['cfg']['FontFamily']           = 'Verdana, Arial, Helvetica, sans-serif';
  69. /**
  70.  * fixed width font family, used in textarea
  71.  */
  72. $GLOBALS['cfg']['FontFamilyFixed']      = 'monospace';
  73.  
  74. /**
  75.  * tables
  76.  */
  77. // border
  78. $GLOBALS['cfg']['Border']               = 0;
  79. // table header and footer color
  80. $GLOBALS['cfg']['ThBackground']         = '#ff9900 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'tbl_th.png) repeat-x top';
  81. // table header and footer background
  82. $GLOBALS['cfg']['ThColor']              = '#000000';
  83. // table data row background
  84. $GLOBALS['cfg']['BgOne']                = '#E5E5E5';
  85. // table data row background, alternate
  86. $GLOBALS['cfg']['BgTwo']                = '#D5D5D5';
  87.  
  88. /**
  89.  * query window
  90.  */
  91. // Width of Query window
  92. $GLOBALS['cfg']['QueryWindowWidth']     = 600;
  93. // Height of Query window
  94. $GLOBALS['cfg']['QueryWindowHeight']    = 400;
  95.  
  96. /**
  97.  * SQL Parser Settings
  98.  * Syntax colouring data
  99.  */
  100. $GLOBALS['cfg']['SQP']['fmtColor']      = array(
  101.     'comment'            => '#808000',
  102.     'comment_mysql'      => '',
  103.     'comment_ansi'       => '',
  104.     'comment_c'          => '',
  105.     'digit'              => '',
  106.     'digit_hex'          => 'teal',
  107.     'digit_integer'      => 'teal',
  108.     'digit_float'        => 'aqua',
  109.     'punct'              => 'fuchsia',
  110.     'alpha'              => '',
  111.     'alpha_columnType'   => '#FF9900',
  112.     'alpha_columnAttrib' => '#0000FF',
  113.     'alpha_reservedWord' => '#990099',
  114.     'alpha_functionName' => '#FF0000',
  115.     'alpha_identifier'   => 'black',
  116.     'alpha_charset'      => '#6495ed',
  117.     'alpha_variable'     => '#800000',
  118.     'quote'              => '#008000',
  119.     'quote_double'       => '',
  120.     'quote_single'       => '',
  121.     'quote_backtick'     => ''
  122. );
  123. ?>
  124.