250 |
kaklik |
1 |
<?php |
|
|
2 |
// unplanned execution path |
|
|
3 |
if (!defined('PMA_MINIMUM_COMMON')) { |
|
|
4 |
exit(); |
|
|
5 |
} |
|
|
6 |
?> |
|
|
7 |
/******************************************************************************/ |
|
|
8 |
/* general tags */ |
|
|
9 |
body { |
|
|
10 |
font-family: <?php echo $GLOBALS['left_font_family']; ?>; |
|
|
11 |
background-color: #D0DCE0; |
|
|
12 |
color: #000000; |
|
|
13 |
} |
|
|
14 |
|
|
|
15 |
a img { |
|
|
16 |
border: 0; |
|
|
17 |
} |
|
|
18 |
|
|
|
19 |
form { |
|
|
20 |
margin: 0; |
|
|
21 |
padding: 0; |
|
|
22 |
display: inline; |
|
|
23 |
} |
|
|
24 |
|
|
|
25 |
select { |
|
|
26 |
background-color: #ffffff; |
|
|
27 |
color: #000000; |
|
|
28 |
} |
|
|
29 |
|
|
|
30 |
/* buttons in some browsers (eg. Konqueror) are block elements, |
|
|
31 |
this breaks design */ |
|
|
32 |
button { |
|
|
33 |
display: inline; |
|
|
34 |
} |
|
|
35 |
|
|
|
36 |
|
|
|
37 |
/******************************************************************************/ |
|
|
38 |
/* classes */ |
|
|
39 |
|
|
|
40 |
/* leave some space between icons and text */ |
|
|
41 |
.icon { |
|
|
42 |
vertical-align: middle; |
|
|
43 |
margin-right: 0.3em; |
|
|
44 |
margin-left: 0.3em; |
|
|
45 |
} |
|
|
46 |
|
|
|
47 |
img.lightbulb { |
|
|
48 |
cursor: pointer; |
|
|
49 |
} |
|
|
50 |
|
|
|
51 |
|
|
|
52 |
/******************************************************************************/ |
|
|
53 |
/* specific elements */ |
|
|
54 |
|
|
|
55 |
div#pmalogo, |
|
|
56 |
div#leftframelinks, |
|
|
57 |
div#databaseList { |
|
|
58 |
text-align: center; |
|
|
59 |
border-bottom: 0.05em solid #669999; |
|
|
60 |
margin-bottom: 0.5em; |
|
|
61 |
padding-bottom: 0.5em; |
|
|
62 |
} |
|
|
63 |
|
|
|
64 |
div#leftframelinks .icon { |
|
|
65 |
padding: 0; |
|
|
66 |
margin: 0; |
|
|
67 |
} |
|
|
68 |
|
|
|
69 |
div#leftframelinks a { |
|
|
70 |
margin: 0.1em; |
|
|
71 |
padding: 0.2em; |
|
|
72 |
border: 0.05em solid #669999; |
|
|
73 |
} |
|
|
74 |
|
|
|
75 |
div#leftframelinks a:hover { |
|
|
76 |
background-color: #669999; |
|
|
77 |
} |
|
|
78 |
|
|
|
79 |
/* leftdatabaselist */ |
|
|
80 |
div#left_tableList ul { |
|
|
81 |
list-style-type: none; |
|
|
82 |
list-style-position: outside; |
|
|
83 |
margin: 0; |
|
|
84 |
padding: 0; |
|
|
85 |
font-size: 80%; |
|
|
86 |
background-color: #D0DCE0; |
|
|
87 |
} |
|
|
88 |
|
|
|
89 |
div#left_tableList ul ul { |
|
|
90 |
font-size: 100%; |
|
|
91 |
} |
|
|
92 |
|
|
|
93 |
div#left_tableList a { |
|
|
94 |
color: #333399; |
|
|
95 |
text-decoration: none; |
|
|
96 |
} |
|
|
97 |
|
|
|
98 |
div#left_tableList a:hover { |
|
|
99 |
color: #FF0000; |
|
|
100 |
text-decoration: underline; |
|
|
101 |
} |
|
|
102 |
|
|
|
103 |
div#left_tableList li { |
|
|
104 |
margin: 0; |
|
|
105 |
padding: 0; |
|
|
106 |
white-space: nowrap; |
|
|
107 |
} |
|
|
108 |
|
|
|
109 |
<?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?> |
|
|
110 |
div#left_tableList li:hover { |
|
|
111 |
background-color: #CCFFCC; |
|
|
112 |
} |
|
|
113 |
<?php } ?> |
|
|
114 |
|
|
|
115 |
div#left_tableList img { |
|
|
116 |
padding: 0; |
|
|
117 |
vertical-align: middle; |
|
|
118 |
} |
|
|
119 |
|
|
|
120 |
div#left_tableList ul ul { |
|
|
121 |
margin-left: 0em; |
|
|
122 |
padding-left: 0.1em; |
|
|
123 |
border-left: 0.1em solid #669999; |
|
|
124 |
padding-bottom: 0.1em; |
|
|
125 |
border-bottom: 0.1em solid #669999; |
|
|
126 |
} |