styles related to inline_edit for 3.4 compatible themes
[phpmyadmin-themes.git] / very_small / layout.inc.php
blobd582adbcea8f3075594d9f605a324548d2d8a3a1
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 *
5 * @version $Id$
6 * @package phpMyAdmin-theme
7 * @subpackage Very_small
8 */
10 /**
13 $cfg['LeftWidth'] = 170; // left frame width
14 /* colors */
15 $cfg['LeftBgColor'] = '#d9e4f4'; // background color for the left frame
16 $cfg['RightBgColor'] = '#ffffff'; // background color for the right frame
17 $cfg['RightBgImage'] = ''; // path to a background image for the right frame
18 // (leave blank for no background image)
19 $cfg['LeftPointerColor'] = '#b4cae9'; // color of the pointer in left frame
20 $cfg['Border'] = 0; // border width on tables
21 $cfg['ThBgcolor'] = '#e5e5e5'; // table header row colour
22 $cfg['BgcolorOne'] = '#e6f0ff'; // table data row colour
23 $cfg['BgcolorTwo'] = '#dbe7f9'; // table data row colour, alternate
24 $cfg['BrowsePointerColor'] = '#b4cae9'; // color of the pointer in browse mode
25 $cfg['BrowseMarkerColor'] = '#e9c7b4'; // color of the marker (visually marks row
26 // by clicking on it) in browse mode
27 $cfg['BrowseMarkerBackground'] = '#b4cae9'; // background color of a marked item
28 $cfg['BrowseHoverBackground'] = '#e9c7b4'; // background color of a hovered item
30 $cfg['QueryWindowWidth'] = 550; // Width of Query window
31 $cfg['QueryWindowHeight'] = 310; // Height of Query window
33 /**
34 * SQL Parser Settings
36 $cfg['SQP']['fmtColor'] = array( // Syntax colouring data
37 'comment' => '#999999',
38 'comment_mysql' => '',
39 'comment_ansi' => '',
40 'comment_c' => '',
41 'digit' => '',
42 'digit_hex' => 'teal',
43 'digit_integer' => 'teal',
44 'digit_float' => 'aqua',
45 'punct' => '#cc0000',
46 'alpha' => '',
47 'alpha_columnType' => '#FF9900',
48 'alpha_columnAttrib' => '#0000FF',
49 'alpha_reservedWord' => '#cc0000',
50 'alpha_functionName' => '#000099',
51 'alpha_identifier' => 'black',
52 'alpha_charset' => '#6495ed',
53 'alpha_variable' => '#800000',
54 'quote' => '#008000',
55 'quote_double' => '#000000',
56 'quote_single' => '#000000',
57 'quote_backtick' => ''