Improvements in the translation table building script, take 2.
[openemr.git] / phpmyadmin / themes / darkblue_orange / layout.inc.php
blob50ed7bf1d03fe0a73266f87e42dc54c985ef87a2
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 Darkblue_orange
12 // protect against path disclosure
13 if (empty($_SESSION['PMA_Theme'])) {
14 exit;
17 /**
18 * navi frame
20 // navi frame width
21 $GLOBALS['cfg']['NaviWidth'] = 180;
23 // foreground (text) color for the navi frame
24 $GLOBALS['cfg']['NaviColor'] = '#ffffff';
26 // background for the navi frame
27 $GLOBALS['cfg']['NaviBackground'] = '#666699';
29 // foreground (text) color of the pointer in navi frame
30 $GLOBALS['cfg']['NaviPointerColor'] = '#000000';
32 // background of the pointer in navi frame
33 $GLOBALS['cfg']['NaviPointerBackground'] = '#9999cc';
35 // text color of the selected database name (when showing the table list)
36 $GLOBALS['cfg']['NaviDatabaseNameColor'] = '#ff9900';
38 /**
39 * main frame
41 // foreground (text) color for the main frame
42 $GLOBALS['cfg']['MainColor'] = '#000000';
44 // background for the main frame
45 $GLOBALS['cfg']['MainBackground'] = '#ffffff';
46 //$GLOBALS['cfg']['MainBackground'] = '#ffffff url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
48 // foreground (text) color of the pointer in browse mode
49 $GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
51 // background of the pointer in browse mode
52 $GLOBALS['cfg']['BrowsePointerBackground'] = '#ccffcc';
54 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
55 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
57 // background of the marker (visually marks row by clicking on it) in browse mode
58 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#ffcc99';
60 /**
61 * fonts
63 /**
64 * the font family as a valid css font family value,
65 * if not set the browser default will be used
66 * (depending on browser, DTD and system settings)
68 $GLOBALS['cfg']['FontFamily'] = 'Verdana, Arial, Helvetica, sans-serif';
69 /**
70 * fixed width font family, used in textarea
72 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
74 /**
75 * tables
77 // border
78 $GLOBALS['cfg']['Border'] = 0;
79 // table header and footer color
80 $GLOBALS['cfg']['ThBackground'] = '#ff9900 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'tbl_th.png) repeat-x top';
81 // table header and footer background
82 $GLOBALS['cfg']['ThColor'] = '#000000';
83 // table data row background
84 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
85 // table data row background, alternate
86 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
88 /**
89 * query window
91 // Width of Query window
92 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
93 // Height of Query window
94 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
96 /**
97 * SQL Parser Settings
98 * Syntax colouring data
100 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
101 'comment' => '#808000',
102 'comment_mysql' => '',
103 'comment_ansi' => '',
104 'comment_c' => '',
105 'digit' => '',
106 'digit_hex' => 'teal',
107 'digit_integer' => 'teal',
108 'digit_float' => 'aqua',
109 'punct' => 'fuchsia',
110 'alpha' => '',
111 'alpha_columnType' => '#FF9900',
112 'alpha_columnAttrib' => '#0000FF',
113 'alpha_reservedWord' => '#990099',
114 'alpha_functionName' => '#FF0000',
115 'alpha_identifier' => 'black',
116 'alpha_charset' => '#6495ed',
117 'alpha_variable' => '#800000',
118 'quote' => '#008000',
119 'quote_double' => '',
120 'quote_single' => '',
121 'quote_backtick' => ''