Add .editorconfig file (close #151)
[openemr.git] / phpmyadmin / themes / pmahomme / layout.inc.php
blob6ac5ddce5bb19253a39f1d443473aad0738c03e7
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
7 * @package PhpMyAdmin-theme
8 * @subpackage PMAHomme
9 */
11 /**
12 * navi frame
14 // navi frame width
15 $GLOBALS['cfg']['NaviWidth'] = 240;
17 // foreground (text) color for the navi frame
18 $GLOBALS['cfg']['NaviColor'] = '#000';
20 // background for the navi frame
21 $GLOBALS['cfg']['NaviBackground'] = '#f3f3f3';
23 // foreground (text) color of the pointer in navi frame
24 $GLOBALS['cfg']['NaviPointerColor'] = '#000';
26 // background of the pointer in navi frame
27 $GLOBALS['cfg']['NaviPointerBackground'] = '#ddd';
29 /**
30 * main frame
32 // foreground (text) color for the main frame
33 $GLOBALS['cfg']['MainColor'] = '#444';
35 // background for the main frame
36 $GLOBALS['cfg']['MainBackground'] = '#fff';
38 // foreground (text) color of the pointer in browse mode
39 $GLOBALS['cfg']['BrowsePointerColor'] = '#000';
41 // background of the pointer in browse mode
42 $GLOBALS['cfg']['BrowsePointerBackground'] = '#cfc';
44 // foreground (text) color of the marker (visually marks row by clicking on it)
45 // in browse mode
46 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000';
48 // background of the marker (visually marks row by clicking on it) in browse mode
49 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#fc9';
51 /**
52 * fonts
54 /**
55 * the font family as a valid css font family value,
56 * if not set the browser default will be used
57 * (depending on browser, DTD and system settings)
59 $GLOBALS['cfg']['FontFamily'] = 'sans-serif';
60 /**
61 * fixed width font family, used in textarea
63 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
65 /**
66 * tables
68 // border
69 $GLOBALS['cfg']['Border'] = 0;
70 // table header and footer color
71 $GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
72 // table header and footer background
73 $GLOBALS['cfg']['ThColor'] = '#000';
74 // table data row background
75 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
76 // table data row background, alternate
77 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';