Rev Author Line No. Line
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: Verdana, Arial, Helvetica, sans-serif;
11 font-size: 12px;
12 background-color: #666699;
13 color: #ffffff;
14 margin: 0;
15 padding: 2px 2px 2px 2px;
16 }
17  
18 a img {
19 border: 0;
20 }
21  
22 /* gecko FIX, font size is not correctly assigned to all child elements */
23 body * {
24 font-family: inherit;
25 font-size: inherit;
26 }
27  
28 form {
29 margin: 0;
30 padding: 0;
31 display: inline;
32 }
33  
34 select {
35 background-color: #ffffff;
36 color: #000000;
37 width: 150px;
38 }
39  
40 /* buttons in some browsers (eg. Konqueror) are block elements,
41 this breaks design */
42 button {
43 display: inline;
44 }
45  
46  
47 /******************************************************************************/
48 /* classes */
49  
50 /* leave some space between icons and text */
51 .icon {
52 vertical-align: middle;
53 margin-right: 0.3em;
54 margin-left: 0.3em;
55 }
56  
57 img.lightbulb {
58 cursor: pointer;
59 }
60  
61  
62 /******************************************************************************/
63 /* specific elements */
64  
65 div#pmalogo,
66 div#leftframelinks,
67 div#databaseList {
68 text-align: center;
69 border-bottom: 0.05em solid #ffffff;
70 margin-bottom: 0.5em;
71 padding-bottom: 0.5em;
72 }
73  
74 div#leftframelinks .icon {
75 padding: 0;
76 margin: 0;
77 }
78  
79 div#leftframelinks a {
80 margin: 0.1em;
81 padding: 0.2em;
82 border: 0.05em solid #ffffff;
83 }
84  
85 div#leftframelinks a:hover {
86 background-color: #ffffff;
87 }
88  
89 /* leftdatabaselist */
90 div#left_tableList ul {
91 list-style-type: none;
92 list-style-position: outside;
93 margin: 0;
94 padding: 0;
95 font-size: 80%;
96 background-color: #666699;
97 }
98  
99 div#left_tableList ul ul {
100 font-size: 100%;
101 }
102  
103 div#left_tableList a {
104 color: #ffffff;
105 text-decoration: none;
106 }
107  
108 div#left_tableList a:hover {
109 color: #ffffff;
110 text-decoration: underline;
111 }
112  
113 div#left_tableList li {
114 margin: 0;
115 padding: 0;
116 white-space: nowrap;
117 }
118  
119 <?php if ( $GLOBALS['cfg']['LeftPointerEnable'] ) { ?>
120 div#left_tableList li:hover {
121 background-color: <?php echo $GLOBALS['cfg']['LeftPointerColor']; ?>;
122 }
123 <?php } ?>
124  
125 div#left_tableList img {
126 padding: 0;
127 vertical-align: middle;
128 }
129  
130 div#left_tableList ul ul {
131 margin-left: 0em;
132 padding-left: 0.1em;
133 border-left: 0.1em solid #ffffff;
134 padding-bottom: 0.1em;
135 border-bottom: 0.1em solid #ffffff;
136 }