Increase theme version
[phpmyadmin-themes.git] / original_small / css / theme_left.css.php
blobf4ce01820e034eca6fda93f5ac60d3dec3d0b99b
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * navigation css file from theme
6 * @version $Id$
7 * @package phpMyAdmin-theme
8 * @subpackage Original_small
9 */
11 // unplanned execution path
12 if (!defined('PMA_MINIMUM_COMMON')) {
13 exit();
16 /******************************************************************************/
17 /* general tags */
19 body {
20 <?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
21 font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
22 <?php } ?>
23 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
24 color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
25 margin: 0;
26 padding: 0.2em 0.2em 0.2em 0.2em;
29 a img {
30 border: 0;
31 margin: 0px 0px 0px 0px;
34 form {
35 margin: 0;
36 padding: 0;
37 display: inline;
40 select {
41 width: 100%;
44 /* buttons in some browsers (eg. Konqueror) are block elements,
45 this breaks design */
46 button {
47 display: inline;
51 /******************************************************************************/
52 /* classes */
54 /* leave some space between icons and text */
55 .icon {
56 vertical-align: middle;
57 margin-right: 0.3em;
58 margin-left: 0.3em;
62 /******************************************************************************/
63 /* specific elements */
65 div#pmalogo,
66 div#leftframelinks,
67 div#databaseList {
68 text-align: center;
69 border-bottom: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
70 margin-bottom: 0.5em;
71 padding-bottom: 0.5em;
74 div#leftframelinks .icon {
75 padding: 0;
76 margin: 0;
79 div#leftframelinks a img.icon {
80 margin: 0;
81 padding: 0.2em;
82 border: 0.05em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
85 div#leftframelinks a:hover {
86 background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
87 color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
90 /* serverlist */
91 #body_leftFrame #list_server {
92 list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_host.png);
93 list-style-position: inside;
94 list-style-type: none;
95 margin: 0;
96 padding: 0;
99 #body_leftFrame #list_server li {
100 margin: 0;
101 padding: 0;
102 font-size: 80%;
105 /* leftdatabaselist */
106 div#left_tableList ul {
107 list-style-type: none;
108 list-style-position: outside;
109 margin: 0;
110 padding: 0;
111 font-size: 80%;
112 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
115 div#left_tableList ul ul {
116 font-size: 100%;
119 div#left_tableList a {
120 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
121 color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
122 text-decoration: none;
125 div#left_tableList a:hover {
126 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
127 color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
128 text-decoration: underline;
131 div#left_tableList li {
132 margin: 0;
133 padding: 0;
134 white-space: nowrap;
137 <?php if ($GLOBALS['cfg']['BrowseMarkerColor']) { ?>
138 /* marked items */
139 div#left_tableList > ul li.marked > a,
140 div#left_tableList > ul li.marked {
141 background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
142 color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
144 <?php } ?>
146 <?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?>
147 div#left_tableList > ul li:hover > a,
148 div#left_tableList > ul li:hover {
149 background: <?php echo $GLOBALS['cfg']['NaviPointerBackground']; ?>;
150 color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
152 <?php } ?>
154 div#left_tableList img {
155 padding: 0;
156 vertical-align: middle;
159 div#left_tableList ul ul {
160 margin-left: 0;
161 padding-left: 0.1em;
162 border-left: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
163 padding-bottom: 0.1em;
164 border-bottom: 0.1em solid <?php echo $GLOBALS['cfg']['NaviColor']; ?>;