layout.inc.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. * @package PhpMyAdmin-theme
  8. * @subpackage Original
  9. */
  10. /**
  11. * navi frame
  12. */
  13. // navi frame width
  14. $GLOBALS['cfg']['NaviWidth'] = 240;
  15. // foreground (text) color for the navi frame
  16. $GLOBALS['cfg']['NaviColor'] = '#000000';
  17. // background for the navi frame
  18. $GLOBALS['cfg']['NaviBackground'] = '#D0DCE0';
  19. // foreground (text) color of the pointer in navi frame
  20. $GLOBALS['cfg']['NaviPointerColor'] = '#000000';
  21. // background of the pointer in navi frame
  22. $GLOBALS['cfg']['NaviPointerBackground'] = '#9999CC';
  23. /**
  24. * main frame
  25. */
  26. // foreground (text) color for the main frame
  27. $GLOBALS['cfg']['MainColor'] = '#000000';
  28. // background for the main frame
  29. $GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
  30. // foreground (text) color of the pointer in browse mode
  31. $GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
  32. // background of the pointer in browse mode
  33. $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
  34. // foreground (text) color of the marker (visually marks row by clicking on it)
  35. // in browse mode
  36. $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
  37. // background of the marker (visually marks row by clicking on it) in browse mode
  38. $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
  39. /**
  40. * fonts
  41. */
  42. /**
  43. * the font family as a valid css font family value,
  44. * if not set the browser default will be used
  45. * (depending on browser, DTD and system settings)
  46. */
  47. $GLOBALS['cfg']['FontFamily'] = 'sans-serif';
  48. /**
  49. * fixed width font family, used in textarea
  50. */
  51. $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
  52. /**
  53. * tables
  54. */
  55. // border
  56. $GLOBALS['cfg']['Border'] = 0;
  57. // table header and footer color
  58. $GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
  59. // table header and footer background
  60. $GLOBALS['cfg']['ThColor'] = '#000000';
  61. // table data row background
  62. $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
  63. // table data row background, alternate
  64. $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
  65. /**
  66. * query window
  67. */
  68. // Width of Query window
  69. $GLOBALS['cfg']['QueryWindowWidth'] = 600;
  70. // Height of Query window
  71. $GLOBALS['cfg']['QueryWindowHeight'] = 400;
  72. /**
  73. * Chart colors
  74. */
  75. $GLOBALS['cfg']['chartColor'] = array(
  76. 'gradientIntensity' => 0,
  77. // The style of the chart title.
  78. 'titleColor' => '#000000',
  79. 'titleBgColor' => $GLOBALS['cfg']['ThBackground'],
  80. // Chart border (0 for no border)
  81. 'border' => '#CCCCCC',
  82. // Chart background color.
  83. 'bgColor' => $GLOBALS['cfg']['BgTwo'],
  84. // when graph area gradient is used, this is the color of the graph
  85. // area border
  86. 'graphAreaColor' => '#D5D9DD',
  87. // the background color of the inner graph area
  88. 'graphAreaGradientColor' => $GLOBALS['cfg']['BgOne'],
  89. // the color of the grid lines in the graph area
  90. 'gridColor' => '#E6E6E6',
  91. // the color of the scale and the labels
  92. 'scaleColor' => '#D5D9DD',
  93. );
  94. ?>