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 / original / layout.inc.php < prev    next >
Encoding:
PHP Script  |  2008-06-23  |  3.5 KB  |  117 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 10515 2007-07-22 16:22:54Z lem9 $
  8.  * @package phpMyAdmin-theme
  9.  * @subpackage Original
  10.  */
  11.  
  12. /**
  13.  * navi frame
  14.  */
  15. // navi frame width
  16. $GLOBALS['cfg']['NaviWidth']                = 200;
  17.  
  18. // foreground (text) color for the navi frame
  19. $GLOBALS['cfg']['NaviColor']                = '#000000';
  20.  
  21. // background for the navi frame
  22. $GLOBALS['cfg']['NaviBackground']           = '#D0DCE0';
  23.  
  24. // foreground (text) color of the pointer in navi frame
  25. $GLOBALS['cfg']['NaviPointerColor']         = '#000000';
  26. // background of the pointer in navi frame
  27. $GLOBALS['cfg']['NaviPointerBackground']    = '#9999CC';
  28. // text color of the selected database name (when showing the table list)
  29. $GLOBALS['cfg']['NaviDatabaseNameColor']    = '#0000FF';
  30.  
  31. /**
  32.  * main frame
  33.  */
  34. // foreground (text) color for the main frame
  35. $GLOBALS['cfg']['MainColor']                = '#000000';
  36.  
  37. // background for the main frame
  38. $GLOBALS['cfg']['MainBackground']           = '#F5F5F5';
  39. //$GLOBALS['cfg']['MainBackground']       = '#F5F5F5 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
  40.  
  41. // foreground (text) color of the pointer in browse mode
  42. $GLOBALS['cfg']['BrowsePointerColor']       = '#000000';
  43.  
  44. // background of the pointer in browse mode
  45. $GLOBALS['cfg']['BrowsePointerBackground']  = '#CCFFCC';
  46.  
  47. // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
  48. $GLOBALS['cfg']['BrowseMarkerColor']        = '#000000';
  49.  
  50. // background of the marker (visually marks row by clicking on it) in browse mode
  51. $GLOBALS['cfg']['BrowseMarkerBackground']   = '#FFCC99';
  52.  
  53. /**
  54.  * fonts
  55.  */
  56. /**
  57.  * the font family as a valid css font family value,
  58.  * if not set the browser default will be used
  59.  * (depending on browser, DTD and system settings)
  60.  */
  61. $GLOBALS['cfg']['FontFamily']           = 'sans-serif';
  62. /**
  63.  * fixed width font family, used in textarea
  64.  */
  65. $GLOBALS['cfg']['FontFamilyFixed']      = 'monospace';
  66.  
  67. /**
  68.  * tables
  69.  */
  70. // border
  71. $GLOBALS['cfg']['Border']               = 0;
  72. // table header and footer color
  73. $GLOBALS['cfg']['ThBackground']         = '#D3DCE3';
  74. // table header and footer background
  75. $GLOBALS['cfg']['ThColor']              = '#000000';
  76. // table data row background
  77. $GLOBALS['cfg']['BgOne']                = '#E5E5E5';
  78. // table data row background, alternate
  79. $GLOBALS['cfg']['BgTwo']                = '#D5D5D5';
  80.  
  81. /**
  82.  * query window
  83.  */
  84. // Width of Query window
  85. $GLOBALS['cfg']['QueryWindowWidth']     = 600;
  86. // Height of Query window
  87. $GLOBALS['cfg']['QueryWindowHeight']    = 400;
  88.  
  89. /**
  90.  * SQL Parser Settings
  91.  * Syntax colouring data
  92.  */
  93. $GLOBALS['cfg']['SQP']['fmtColor']      = array(
  94.     'comment'            => '#808000',
  95.     'comment_mysql'      => '',
  96.     'comment_ansi'       => '',
  97.     'comment_c'          => '',
  98.     'digit'              => '',
  99.     'digit_hex'          => 'teal',
  100.     'digit_integer'      => 'teal',
  101.     'digit_float'        => 'aqua',
  102.     'punct'              => 'fuchsia',
  103.     'alpha'              => '',
  104.     'alpha_columnType'   => '#FF9900',
  105.     'alpha_columnAttrib' => '#0000FF',
  106.     'alpha_reservedWord' => '#990099',
  107.     'alpha_functionName' => '#FF0000',
  108.     'alpha_identifier'   => 'black',
  109.     'alpha_charset'      => '#6495ed',
  110.     'alpha_variable'     => '#800000',
  111.     'quote'              => '#008000',
  112.     'quote_double'       => '',
  113.     'quote_single'       => '',
  114.     'quote_backtick'     => ''
  115. );
  116. ?>
  117.