Show 'More' link in top menu
[phpmyadmin-themes.git] / clearview3 / layout.inc.php
blob0b02bb68c397eb315932ac6887ab41e1b3f34912
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 ClearView3
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'] = '#333';
21 // background for the navi frame
22 $GLOBALS['cfg']['NaviBackground'] = '#fff';
24 // foreground (text) color of the pointer in navi frame
25 $GLOBALS['cfg']['NaviPointerColor'] = '#333';
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'] = '#333';
37 // background for the main frame
38 $GLOBALS['cfg']['MainBackground'] = '#fff';
39 //$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
41 // zebra background (uncomment second line if you want zebra tables)
42 //$GLOBALS['cfg']['zebra'] = '#f5f5f5';
44 // foreground (text) color of the pointer in browse mode
45 $GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
47 // background of the pointer in browse mode
48 $GLOBALS['cfg']['BrowsePointerBackground'] = '#CCFFCC';
50 // foreground (text) color of the marker (visually marks row by clicking on it) in browse mode
51 $GLOBALS['cfg']['BrowseMarkerColor'] = '#000000';
53 // background of the marker (visually marks row by clicking on it) in browse mode
54 $GLOBALS['cfg']['BrowseMarkerBackground'] = '#FFCC99';
56 /**
57 * fonts
59 /**
60 * the font family as a valid css font family value,
61 * if not set the browser default will be used
62 * (depending on browser, DTD and system settings)
64 $GLOBALS['cfg']['FontFamily'] = '"Lucida Grande", Arial, sans-serif';
65 /**
66 * fixed width font family, used in textarea
68 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
70 /**
71 * tables
73 // border
74 $GLOBALS['cfg']['Border'] = 0;
75 // table header and footer color
76 $GLOBALS['cfg']['ThBackground'] = '#D3DCE3';
77 // table header and footer background
78 $GLOBALS['cfg']['ThColor'] = '#000000';
79 // table data row background
80 $GLOBALS['cfg']['BgOne'] = '#E5E5E5';
81 // table data row background, alternate
82 $GLOBALS['cfg']['BgTwo'] = '#D5D5D5';
84 /**
85 * query window
87 // Width of Query window
88 $GLOBALS['cfg']['QueryWindowWidth'] = 600;
89 // Height of Query window
90 $GLOBALS['cfg']['QueryWindowHeight'] = 400;
92 /**
93 * SQL Parser Settings
94 * Syntax colouring data
96 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
97 'comment' => '#808000',
98 'comment_mysql' => '',
99 'comment_ansi' => '',
100 'comment_c' => '',
101 'digit' => '',
102 'digit_hex' => 'teal',
103 'digit_integer' => 'teal',
104 'digit_float' => 'aqua',
105 'punct' => 'fuchsia',
106 'alpha' => '',
107 'alpha_columnType' => '#FF9900',
108 'alpha_columnAttrib' => '#0000FF',
109 'alpha_reservedWord' => '#990099',
110 'alpha_functionName' => '#FF0000',
111 'alpha_identifier' => 'black',
112 'alpha_charset' => '#6495ed',
113 'alpha_variable' => '#800000',
114 'quote' => '#008000',
115 'quote_double' => '',
116 'quote_single' => '',
117 'quote_backtick' => ''