Fix for the Open in New Window in Patient/Client->Patients search gui, take 2.
[openemr.git] / phpmyadmin / themes / original / layout.inc.php
blob909320a361ae67d2b3879f3c1e280b86260fe474
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 * @version $Id$
8 * @package phpMyAdmin-theme
9 * @subpackage Original
12 /**
13 * navi frame
15 // navi frame width
16 $GLOBALS['cfg']['NaviWidth'] = 200;
18 // foreground (text) color for the navi frame
19 $GLOBALS['cfg']['NaviColor'] = '#000000';
21 // background for the navi frame
22 $GLOBALS['cfg']['NaviBackground'] = '#D0DCE0';
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';
31 /**
32 * main frame
34 // foreground (text) color for the main frame
35 $GLOBALS['cfg']['MainColor'] = '#000000';
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';
41 // foreground (text) color of the pointer in browse mode
42 $GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
44 // background of the pointer in browse mode
45 $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
47 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
48 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
50 // background of the marker (visually marks row by clicking on it) in browse mode
51 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
53 /**
54 * fonts
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)
61 $GLOBALS['cfg']['FontFamily'] = 'sans-serif';
62 /**
63 * fixed width font family, used in textarea
65 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
67 /**
68 * tables
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';
81 /**
82 * query window
84 // Width of Query window
85 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
86 // Height of Query window
87 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
89 /**
90 * SQL Parser Settings
91 * Syntax colouring data
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' => ''