layout.inc.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 PMAHomme
  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'] = '#000';
  17. // background for the navi frame
  18. $GLOBALS['cfg']['NaviBackground'] = '#f3f3f3';
  19. // foreground (text) color of the pointer in navi frame
  20. $GLOBALS['cfg']['NaviPointerColor'] = '#000';
  21. // background of the pointer in navi frame
  22. $GLOBALS['cfg']['NaviPointerBackground'] = '#ddd';
  23. /**
  24. * main frame
  25. */
  26. // foreground (text) color for the main frame
  27. $GLOBALS['cfg']['MainColor'] = '#444';
  28. // background for the main frame
  29. $GLOBALS['cfg']['MainBackground'] = '#fff';
  30. // foreground (text) color of the pointer in browse mode
  31. $GLOBALS['cfg']['BrowsePointerColor'] = '#000';
  32. // background of the pointer in browse mode
  33. $GLOBALS['cfg']['BrowsePointerBackground'] = '#cfc';
  34. // foreground (text) color of the marker (visually marks row by clicking on it)
  35. // in browse mode
  36. $GLOBALS['cfg']['BrowseMarkerColor'] = '#000';
  37. // background of the marker (visually marks row by clicking on it) in browse mode
  38. $GLOBALS['cfg']['BrowseMarkerBackground'] = '#fc9';
  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'] = '#000';
  61. // table data row background
  62. $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
  63. // table data row background, alternate
  64. $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';