b_save icon for 3.4 compatible themes
[phpmyadmin-themes.git] / aqua_brushed / layout.inc.php
blobafc73c1fb609ee1e54ac2d1940a46132fb476b3f
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 Aqua_Brushed
12 /**
13 * navi frame
15 // navi frame width
16 $GLOBALS['cfg']['NaviWidth'] = 185;
18 // foreground (text) color for the navi frame
19 $GLOBALS['cfg']['NaviColor'] = '#000000';
21 // background for the navi frame
22 $GLOBALS['cfg']['NaviBackground'] = '#DDDDDD fixed url(' . $_SESSION['PMA_Theme']->getImgPath() . 'RightBg.png)';
24 // color of the pointer in navi frame
25 $GLOBALS['cfg']['NaviPointerColor'] = '#9999CC';
27 /**
28 * main frame
30 // foreground (text) color for the main frame
31 $GLOBALS['cfg']['MainColor'] = '#000000';
33 // background for the main frame
34 $GLOBALS['cfg']['MainBackground'] = '#ffffff fixed url(' . $_SESSION['PMA_Theme']->getImgPath() . 'RightBg.png)';
36 // color of the pointer in browse mode
37 $GLOBALS['cfg']['BrowsePointerColor'] = '#BDC5CC';
39 // color of the marker (visually marks row by clicking on it) in browse mode
40 $GLOBALS['cfg']['BrowseMarkerColor'] = '#CCCCCC';
42 /**
43 * fonts
45 /**
46 * the font family as a valid css font family value,
47 * if not set the browser default will be used
48 * (depending on browser, DTD and system settings)
50 $GLOBALS['cfg']['FontFamily'] = '';
51 /**
52 * fixed width font family, used in textarea
54 $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
55 /**
56 * font size as a valid css font size value,
57 * if not set the browser default will be used
58 * (depending on browser, DTD and system settings)
60 $GLOBALS['cfg']['FontSize'] = '8pt';
62 /**
63 * tables
65 // border
66 $GLOBALS['cfg']['Border'] = 0;
67 // table header and footer color
68 $GLOBALS['cfg']['ThBackground'] = '#B5BDC7 repeat-x top url(' . $_SESSION['PMA_Theme']->getImgPath() . 'tbl_header.png)';
69 // table header and footer background
70 $GLOBALS['cfg']['ThColor'] = '#000000';
71 // table data row background
72 $GLOBALS['cfg']['BgOne'] = '#EFEFEF';
73 // table data row background, alternate
74 $GLOBALS['cfg']['BgTwo'] = '#E5E5E5';
76 /**
77 * query window
79 // Width of Query window
80 $GLOBALS['cfg']['QueryWindowWidth'] = 550;
81 // Height of Query window
82 $GLOBALS['cfg']['QueryWindowHeight'] = 310;
84 /**
85 * SQL Parser Settings
86 * Syntax colouring data
88 $GLOBALS['cfg']['SQP']['fmtColor'] = array(
89 'comment' => '#808000',
90 'comment_mysql' => '',
91 'comment_ansi' => '',
92 'comment_c' => '',
93 'digit' => '',
94 'digit_hex' => 'teal',
95 'digit_integer' => 'teal',
96 'digit_float' => 'aqua',
97 'punct' => 'fuchsia',
98 'alpha' => '',
99 'alpha_columnType' => '#FF9900',
100 'alpha_columnAttrib' => '#0000FF',
101 'alpha_reservedWord' => '#990099',
102 'alpha_functionName' => '#FF0000',
103 'alpha_identifier' => 'black',
104 'alpha_charset' => '#6495ed',
105 'alpha_variable' => '#800000',
106 'quote' => '#008000',
107 'quote_double' => '',
108 'quote_single' => '',
109 'quote_backtick' => ''