2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * main css file from theme
7 * @package phpMyAdmin-theme
8 * @subpackage Arctic_Ocean
10 // unplanned execution path
11 if (!defined('PMA_MINIMUM_COMMON')) {
16 // Added some special fixes
17 // for better behaviors on old IE
19 if (defined('PMA_USR_BROWSER_AGENT') && PMA_USR_BROWSER_AGENT
== 'IE' && PMA_USR_BROWSER_VER
< 7) {
24 // Get the whole http_url for the images
25 $ipath = $_SESSION['PMA_Theme']->getImgPath();
27 // 2007-08-24 (mkkeck)
29 $pma_fsize = $GLOBALS['PMA_Config']->get('fontsize');
30 $pma_fsize = preg_replace("/[^0-9]/", "", $pma_fsize);
31 if (!empty($pma_fsize)) {
32 $pma_fsize = ($pma_fsize * 0.01);
36 if ( isset($GLOBALS['cfg']['FontSize']) && !empty($GLOBALS['cfg']['FontSize']) ) {
37 $usr_fsize = preg_replace("/[^0-9]/", "", $GLOBALS['cfg']['FontSize']);
39 if (!isset($usr_fsize)) {
42 if ( isset($GLOBALS['cfg']['FontSizePrefix']) && !empty($GLOBALS['cfg']['FontSizePrefix']) ) {
43 $funit = strtolower($GLOBALS['cfg']['FontSizePrefix']);
45 if (!isset($funit) ||
($funit!='px' && $funit != 'pt')) {
50 $fsize = number_format( (intval($usr_fsize) * $pma_fsize), 0 );
54 // Get the file name for the css-style
56 // replace on /libraries/header_meta_style.inc.php
57 // echo '<link rel="stylesheet" type="text/css" href="'
58 // . (defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './')
59 // . 'css/phpmyadmin.css.php?' . PMA_generate_common_url()
60 // . '&js_frame=' . ( isset($print_view) ? 'print' : 'right')
62 // with the folow lines
63 // echo '<link rel="stylesheet" type="text/css" href="' . (defined('PMA_PATH_TO_BASEDIR') ? PMA_PATH_TO_BASEDIR : './')
64 // . 'css/phpmyadmin.css.php?' . PMA_generate_common_url() . '&'
65 // . 'js_frame=' . (isset($print_view) ? 'print' : 'right')
66 // . ((stristr($_SERVER['PHP_SELF'], 'main.php') || stristr($_SERVER['PHP_SELF'], 'calendar.php')) ? '&type=main' : '')
67 // . (stristr($_SERVER['PHP_SELF'], 'querywindow.php') ? '&type=querywin' : '')
71 $tmp_css_type = 'browse';
72 if (isset($_REQUEST['type'])) {
73 if (stristr($_REQUEST['type'], 'main')) {
75 $tmp_css_type = 'main';
76 } else if (stristr($_REQUEST['type'], 'querywin')) {
78 $tmp_css_type = 'popup';
79 } else if (stristr($_REQUEST['type'], 'inline')) {
81 $tmp_css_type = 'inline';
84 if (isset($GLOBALS['cfg']['LightTabs']) && $GLOBALS['cfg']['LightTabs']) {
89 $font_family = 'sans-serif';
90 $font_fixed = 'mono-space';
91 if (isset($GLOBALS['cfg']['FontFamily']) && !empty($GLOBALS['cfg']['FontFamily'])) {
92 $font_family = $GLOBALS['cfg']['FontFamily'];
93 $font_fixed = $GLOBALS['cfg']['FontFamily'];
95 if (isset($GLOBALS['cfg']['FontFamilyFixed']) && !empty($GLOBALS['cfg']['FontFamilyFixed'])) {
96 $font_fixed = $GLOBALS['cfg']['FontFamilyFixed'];
102 font
-family
: <?php
echo $font_family; ?
>;
103 font
-size
: <?php
echo $fsize . $funit; ?
>;
106 background
: <?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
107 <?php
if ($tmp_css_type != 'inline') { ?
>
108 background
-attachment
: fixed
;
109 background
-image
: url('<?php echo $ipath; ?>wbg_right.jpg');
110 background
-position
: 100%
100%
;
111 background
-repeat
: no
-repeat
;
113 color
: <?php
echo $GLOBALS['cfg']['MainColor']; ?
>;
114 <?php
if ($tmp_css_type == 'browse') { ?
>
115 margin
: 55px
5px
5px
5px
;
116 <?php
} else if ($tmp_css_type == 'popup') { ?
>
117 margin
: 25px
5px
5px
5px
;
118 <?php
} else if ($tmp_css_type == 'inline') { ?
>
119 margin
: 0px
0px
0px
0px
;
121 margin
: 5px
5px
5px
5px
;
123 padding
: 0px
0px
0px
0px
;
125 button
, img
, input
, select
{ vertical
-align
: middle
; }
126 textarea
, tt
, pre
, code
{ font
-family
: <?php
echo $font_fixed; ?
>; }
128 a
:link
, a
:visited
, a
:active
{
131 text
-decoration
: none
;
135 text
-decoration
: none
;
137 a img
{ border
: none
; }
138 button
{ display
: inline
; }
139 h1
, h2
, h3
{ font
-weight
: bold
; }
140 h1
{ font
-size
: <?php
echo number_format( ($fsize * 1.50), 0 ) . $funit; ?
>; }
141 h2
{ font
-size
: <?php
echo number_format( ($fsize * 1.35), 0 ) . $funit; ?
>; }
142 h3
{ font
-size
: <?php
echo number_format( ($fsize * 1.20), 0 ) . $funit; ?
>; }
145 margin
-left
: <?php
echo number_format( ($fsize * 0.1), 0 ) . $funit; ?
>;
146 margin
-right
: <?php
echo number_format( ($fsize * 0.1), 0 ) . $funit; ?
>;
148 img
.lightbulb
{ cursor
: pointer
; }
149 dfn
, dfn
:hover
{ font
-style
: normal
; }
150 dfn
:hover
{ cursor
: url('<?php echo $ipath; ?>b_info.png'), default; }
154 border
: 1px none
#585880;
156 margin
-bottom
: <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
>;
157 margin
-top
: <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
>;
161 table caption
, table th
, table td
{
162 padding
: <?php
echo number_format( ($fsize * 0.2), 0 ) . $funit; ?
> <?php
echo number_format( ($fsize * 0.2), 0 ) . $funit; ?
> <?php
echo number_format( ($fsize * 0.2), 0 ) . $funit; ?
> <?php
echo number_format( ($fsize * 0.2), 0 ) . $funit; ?
>;
165 table tr
.odd th
, table tr
.odd td
, .odd
{
166 background
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
168 table tr
.even th
, table tr
.even td
, .even
{
169 background
: <?php
echo $GLOBALS['cfg']['BgTwo']; ?
>;
171 table tr
.odd th
, table tr
.odd td
,
172 table tr
.even th
, table tr
.even td
, .even
{
173 text
-align
: <?php
echo $left; ?
>;
175 table tr
.marked th
, table tr
.marked td
, .marked
{
176 background
: <?php
echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?
>;
177 color
: <?php
echo $GLOBALS['cfg']['BrowseMarkerColor']; ?
>;
179 .odd
:hover
, .even
:hover
, .hover
{
180 background
: <?php
echo $GLOBALS['cfg']['BrowsePointerBackground']; ?
>;
181 color
: <?php
echo $GLOBALS['cfg']['BrowsePointerColor']; ?
>;
183 table tr
.hover th
, table tr
.hover td
, table tr
.odd
:hover th
, table tr
.even
:hover th
, table tr
.odd
:hover td
, table tr
.even
:hover td
{
184 background
: <?php
echo $GLOBALS['cfg']['BrowsePointerBackground']; ?
>;
185 color
: <?php
echo $GLOBALS['cfg']['BrowsePointerColor']; ?
>;
187 tr
.condition th
, tr
.condition td
, td
.condition
, th
.condition
{
188 border
: 1px solid
<?php
echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?
>;
190 table
[class=value
] {
193 td img
.icon
, th img
.icon
{ margin
: 0px
0px
0px
0px
; }
194 .odd
.value
, .even
.value
, .marked
.value
{
195 text
-align
: <?php
echo $right; ?
>;
199 color
: <?php
echo $GLOBALS['cfg']['ThColor']; ?
>;
200 background
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
202 table caption
.tblHeaders
, th
.tblHeaders
{ background
-image
: url('<?php echo $ipath; ?>tbg_th0.png'); }
203 thead th
{ background
-image
: url('<?php echo $ipath; ?>tbg_th1.png'); }
210 margin
: 0px
0px
0px
0px
;
211 padding
: 0px
0px
0px
0px
;
214 background
: transparent
;
215 border
: 1px solid
#585880;
216 margin
-top
: <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
>;
217 padding
: <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
>;
221 background
: transparent
;
222 margin
: <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
>;
224 fieldset legend
, fieldset fieldset legend
{
225 background
-position
: left top
;
226 background
-repeat
: repeat
-x
;
227 border
: 1px solid
#585880;
228 color
: <?php
echo $GLOBALS['cfg']['BrowsePointerColor']; ?
>;
229 margin
-bottom
: <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
>;
230 padding
: <?php
echo number_format( ($fsize * 0.3), 0 ) . $funit; ?
> <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
> <?php
echo number_format( ($fsize * 0.3), 0 ) . $funit; ?
> <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
>;
233 background
-color
: <?php
echo $GLOBALS['cfg']['BrowsePointerBackground']; ?
>;
234 background
-image
: url('<?php echo $ipath; ?>tbg_th0.png');
235 color
: <?php
echo $GLOBALS['cfg']['BrowsePointerColor']; ?
>;
237 fieldset fieldset legend
{
238 background
-color
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
239 background
-image
: url('<?php echo $ipath; ?>tbg_th1.png');
240 color
: <?php
echo $GLOBALS['cfg']['ThColor']; ?
>;
242 fieldset legend a
:link
, fieldset legend a
:active
, fieldset legend a
:visited
{
245 fieldset
.tblFooters
{
246 background
-color
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
247 background
-image
: url('<?php echo $ipath; ?>tbg_th3.png');
248 background
-position
: left bottom
;
249 background
-repeat
: repeat
-x
;
250 border
-bottom
: 1px solid
#585880;
251 border
-left
: 1px solid
#585880;
252 border
-right
: 1px solid
#585880;
255 color
: <?php
echo $GLOBALS['cfg']['ThColor']; ?
>;
258 margin
-bottom
: <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
>;
262 fieldset
.formelement
{
263 float: <?php
echo $left; ?
>;
264 margin
-<?php
echo $right; ?
>: 15px
;
268 fieldset div
[class=formelement
] {
271 fieldset
#exportoptions {
276 background
-color
: transparent
;
282 font
-family
: <?php
echo $font_family; ?
>;
285 .value
.attention
{ color
: #990000; }
286 .value
.allfine
{ color
: #006600; }
292 background
-color
: #ffffff;
293 border
: 1px solid
#585880;
300 background
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
301 border
: 1px dashed
#585880;
306 font
-size
: <?php
echo number_format( ($fsize * 0.85), 0 ) . $funit; ?
>;
316 font
-size
: <?php
echo number_format( ($fsize * 0.85), 0 ) . $funit; ?
>;
322 .syntax_alpha_columnType
, .syntax_alpha_columnAttrib
, .syntax_alpha_functionName
, .syntax_alpha_reservedWord
{
323 text
-transform
: uppercase
;
325 .syntax_alpha_reservedWord
{
336 margin
-<?php
echo $right; ?
>: 0.3em
;
337 margin
-<?php
echo $left; ?
>: 0.6em
;
340 /* MESSAGE BOXES: warning, error, confirmation */
341 div
.error
, div
.notice
, div
.warning
, h1
.error
, h1
.notice
, h1
.warning
, p
.error
, p
.notice
, p
.warning
{
342 margin
: 5px
0px
5px
0px
;
343 <?php
if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?
>
344 background
-repeat
: no
-repeat
;
345 <?php
if ( $GLOBALS['text_dir'] === 'ltr' ) { ?
>
346 background
-position
: 5px
5px
;
347 padding
: 5px
5px
5px
25px
;
349 background
-position
: 99%
5px
;
350 padding
: 5px
25px
5px
5px
;
353 padding
: 5px
5px
5px
5px
;
355 text
-align
: <?php
echo $left; ?
>;
357 div
.notice
, h1
.notice
{
358 <?php
if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?
>
359 background
-image
: url('<?php echo $ipath; ?>s_notice.png');
361 border
: 1px solid
#ffd700;
364 background
-color
: #ffffdd;
368 border
-bottom
: 1px solid
#ffd700;
370 margin
: 0px
0px
0px
0px
;
371 text
-align
: <?php
echo $left; ?
>;
373 div
.warning
, h1
.warning
, p
.warning
{
374 <?php
if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?
>
375 background
-image
: url('<?php echo $ipath; ?>s_warn.png');
377 border
: 1px solid
#990000;
378 text
-align
: <?php
echo $left; ?
>;
381 background
-color
: #fff0f0;
385 border
-bottom
: 1px solid
#990000;
387 margin
: 0px
0px
0px
0px
;
389 div
.error
, h1
.error
{
390 <?php
if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?
>
391 background
-image
: url('<?php echo $ipath; ?>s_error.png');
393 border
: 1px solid
#990000;
396 border
-bottom
: 1px solid
#990000;
398 margin
: 0px
0px
0px
0px
;
401 background
-color
: #fff0f0;
404 fieldset
.confirmation
{
405 border
: 1px solid
#990000;
407 fieldset
.confirmation legend
{
408 background
-color
: #990000;
409 border
: 1px solid
#990000;
412 <?php
if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?
>
413 background
-image
: url('<?php echo $ipath; ?>s_really.png');
414 background
-repeat
: no
-repeat
;
415 <?php
if ( $GLOBALS['text_dir'] === 'ltr' ) { ?
>
416 background
-position
: 1px
50%
;
417 padding
: 2px
2px
2px
25px
;
419 background
-position
: 97%
50%
;
420 padding
: 2px
25px
2px
2px
;
425 background
-color
: #fff0f0;
429 border
: 1px none
#990000;
435 /* end MESSAGE BOXES */
440 font
-size
: <?php
echo number_format( ($fsize * 0.70), 0 ) . $funit; ?
>;
444 .tblHeaders
, th
, caption
{
445 background
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
446 color
: <?php
echo $GLOBALS['cfg']['ThColor']; ?
>;
451 background
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
452 color
: <?php
echo $GLOBALS['cfg']['ThColor']; ?
>;
456 .tblHeaders a
:link
, .tblHeaders a
:active
, .tblHeaders a
:visited
,
457 .tblFooters a
:link
, .tblFooters a
:active
, .tblFooters a
:visited
{
461 .tblHeaders a
:hover
, .tblFooters a
:hover
{
465 /* forbidden, no privilegs */
472 .disabled
, .disabled a
:link
, .disabled a
:active
, .disabled a
:visited
{
477 text
-decoration
: none
;
480 tr
.disabled td
, td
.disabled
{
481 background
-color
: #cccccc;
488 body
.loginform h1
, body
.loginform a
.logo
{
497 body
.loginform div
.container
{
499 text
-align
: <?php
echo $left; ?
>;
504 float: <?php
echo $left; ?
>;
511 background
-color
: <?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
512 border
-bottom
: 1px solid
#585880;
516 padding
: 5px
5px
5px
5px
;
518 vertical
-align
: middle
;
520 #serverinfo .item { white-space: nowrap; }
521 #serverinfo img { margin: 0px 1px 0px 1px; }
522 ul
#topmenu { list-style-type: none; }
523 ul
#topmenu li { vertical-align: middle; }
525 margin
-<?php
echo $right; ?
>: 2px
;
526 vertical
-align
: middle
;
528 .tab
, .tabcaution
, .tabactive
{
530 margin
: 0px
0px
0px
0px
;
531 padding
: 4px
2px
4px
2px
;
534 span
.tab
, span
.tabcaution
{ color
: #666666; }
535 a
.tabcaution
:link
, a
.tabcaution
:active
, a
.tabcaution
:visited
{ color
: #990000; }
538 background
-color
: #990000;
540 <?php
if ( $GLOBALS['cfg']['LightTabs'] ) { ?
>
541 a
.tabactive
:link
, a
.tabactive
:active
, a
.tabactive
:visited
{ color
: #585880; }
543 #serverinfo, #topmenucontainer {
544 <?php
if ($forIE) { ?
>
552 <?php
if ($forIE) { ?
>
554 top
: expression(eval(document
.documentElement
.scrollTop
));
561 #serverinfo .separator img {
564 margin
: 0px
<?php
echo number_format( ($fsize * 0.2), 0 ) . $funit; ?
> 0px
<?php
echo number_format( ($fsize * 0.2), 0 ) . $funit; ?
>;
565 vertical
-align
: middle
;
568 background
-color
: <?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
569 background
-image
: url('<?php echo $ipath; ?>tbg_nav0.png');
570 background
-repeat
: repeat
-x
;
571 background
-position
: center bottom
;
572 border
-top
: <?php
echo ( (isset($_GET['type']) && stristr($_GET['type'], 'querywin')) ?
'1px' : '5px' ); ?
> solid
#ffffff;
574 border
-bottom
: 5px solid
#ffffff;
578 margin
: 0px
0px
0px
0px
;
579 padding
: 0px
0px
0px
0px
;
581 <?php
if ($forIE) { ?
>
583 top
: expression(eval(document
.documentElement
.scrollTop
<?php
echo ( (isset($_GET['type']) && stristr($_GET['type'], 'querywin')) ?
'' : '+27' ); ?
>));
584 width
: expression(eval(document
.documentElement
.clientWidth
));
586 top
: <?php
echo ( (isset($_GET['type']) && stristr($_GET['type'], 'querywin')) ?
'0px' : '27px' ); ?
>;
592 float: <?php
echo $left; ?
>;
593 margin
: 0px
0px
0px
0px
;
594 padding
: 0px
0px
0px
0px
;
597 background
-color
: #333333;
598 background
-image
: url('<?php echo $ipath; ?>tbg_nav1.png');
599 background
-repeat
: repeat
-x
;
600 background
-position
: center top
;
602 margin
: 0px
0px
0px
0px
;
605 .tab
, .tabcaution
, .tabactive
{
606 background
-color
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
607 background
-repeat
: repeat
-x
;
608 background
-position
: center top
;
611 .tab
, .tabactive
, .tabcaution
, a
.tab
:hover
, a
.tabactive
:hover
, a
.tabcaution
:hover
{
612 margin
: 0px
0px
0px
0px
;
613 padding
: 4px
2px
4px
2px
;
614 text
-decoration
: none
;
616 .tab
, a
.tab
:link
, a
.tab
:active
, a
.tab
:visited
{
618 background
-color
: <?php
echo $GLOBALS['cfg']['BgTwo']; ?
>;
619 background
-image
: url('<?php echo $ipath; ?>tbg_nav0.png');
623 background
-color
: #666666;
624 background
-image
: url('<?php echo $ipath; ?>tbg_nav4.png');
626 .tabcaution
, a
.tabcaution
:link
, a
.tabcaution
:active
, a
.tabcaution
:visited
{
628 background
-color
: <?php
echo $GLOBALS['cfg']['BgTwo']; ?
>;
629 background
-image
: url('<?php echo $ipath; ?>tbg_nav0.png');
633 background
-color
: #cc9999;
634 background
-image
: url('<?php echo $ipath; ?>tbg_nav3.png');
636 a
.tabactive
:link
, a
.tabactive
:active
, a
.tabactive
:visited
, a
.tabactive
:hover
{
638 background
-color
: <?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
639 background
-image
: url('<?php echo $ipath; ?>tbg_nav2.png');
641 span
.tab
, span
.tabcaution
{ cursor
: url('<?php echo $ipath; ?>s_error.png'), default; }
642 span
.tab img
, span
.tabcaution img
{
643 <?php
if ($forIE) { ?
>
644 filter
: progid
:DXImageTransform
.Microsoft
.Alpha(opacity
=50);
652 div
.tablepagenav
, div
.tablepagenav table tr td
{
653 font
-size
: <?php
echo number_format( ($fsize * 0.80), 0 ) . $funit; ?
>;
657 border
-bottom
: 1px solid
#585880;
658 border
-top
: 1px solid
#585880;
659 margin
-bottom
: <?php
echo number_format( ($fsize * 0.1), 0 ) . $funit; ?
>;
660 margin
-top
: <?php
echo number_format( ($fsize * 0.5), 0 ) . $funit; ?
>;
662 div
.tablepagenav form
{
663 margin
: 0px
0px
0px
0px
;
664 padding
: 0px
0px
0px
0px
;
666 div
.tablepagenav table tr td
{ vertical
-align
: middle
; }
667 div
.tablepagenav table tr td input
, div
.tablepagenav table tr td input
.textfield
{
668 font
-size
: <?php
echo number_format( ($fsize * 0.80), 0 ) . $funit; ?
>;
671 div
.tablepagenav table tr td input
.textfield
{ width
: 25px
; }
672 div
.tablepagenav table tr td select
{
673 font
-size
: <?php
echo number_format( ($fsize * 0.80), 0 ) . $funit; ?
>;
680 table
.calendar
{ width
: 100%
; }
682 background
-color
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
683 color
: <?php
echo $GLOBALS['cfg']['MainColor']; ?
>;
686 table
.calendar td a
{ display
: block
; }
687 table
.calendar td a
:hover
{
688 background
-color
: <?php
echo $GLOBALS['cfg']['BrowsePointerBackground']; ?
>;
689 color
: <?php
echo $GLOBALS['cfg']['BrowsePointerColor']; ?
>;
692 background
-color
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
693 color
: <?php
echo $GLOBALS['cfg']['ThColor']; ?
>;
695 table
.calendar td
.selected
{
696 background
-color
: <?php
echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?
>;
697 color
: <?php
echo $GLOBALS['cfg']['BrowseMarkerColor']; ?
>;
699 img
.calendar
{ border
: none
; }
700 #clock_data, form.clock { text-align: center; }
701 #clock_data input, form.clock input {
709 div
#tablestatistics {
710 border
-bottom
: 1px solid
#669999;
714 div
#tablestatistics table {
715 float: <?php
echo $left; ?
>;
717 margin
-<?php
echo $right; ?
>: 5px
;
719 div
#tablestatistics table caption { margin-<?php echo $right; ?>: 5px; }
720 /* END table stats */
723 /* server privileges */
724 #tableuserrights td, #tablespecificuserrights td, #tabledatabases td { vertical-align: middle; }
725 /* END server privileges */
729 #span_table_comment {
736 font
-size
: <?php
echo number_format( ($fsize * 0.85), 0, '', '' ) . $funit; ?
>;
738 background
-color
: #9eb1cc;
741 width
: <?php
echo number_format( ($fsize * 0.85 * 25), 0, '', '' ) . $funit; ?
>;
745 border
: 1px solid
#333333;
746 padding
: <?php
echo number_format( ($fsize * 0.85 * 0.5), 0, '', '' ) . $funit; ?
>;
747 <?php
if ($forIE) { ?
>
748 filter
: progid
:DXImageTransform
.Microsoft
.Alpha(opacity
=95);
755 /* user privileges */
756 #fieldset_add_user_login div.item {
757 border
-bottom
: 1px solid silver
;
758 padding
-bottom
: 0.3em
;
759 margin
-bottom
: 0.3em
;
762 #fieldset_add_user_login label {
763 float: <?php
echo $left; ?
>;
767 text
-align
: <?php
echo $right; ?
>;
768 padding
-<?php
echo $right; ?
>: 0.5em
;
771 #fieldset_add_user_login span.options #select_pred_username,
772 #fieldset_add_user_login span.options #select_pred_hostname,
773 #fieldset_add_user_login span.options #select_pred_password {
778 #fieldset_add_user_login span.options {
779 float: <?php
echo $left; ?
>;
783 padding
-<?php
echo $right; ?
>: 0.5em
;
786 #fieldset_add_user_login input {
788 clear
: <?php
echo $right; ?
>;
792 #fieldset_add_user_login span.options input {
796 #fieldset_user_priv div.item {
797 float: <?php
echo $left; ?
>;
802 #fieldset_user_priv div.item div.item {
806 #fieldset_user_priv div.item label {
810 #fieldset_user_priv div.item select {
814 #fieldset_user_global_rights fieldset {
815 float: <?php
echo $left; ?
>;
817 /* END user privileges */
821 div
#serverstatus table caption a.top {
822 float: <?php
echo $right; ?
>;
825 div
#serverstatus div#serverstatusqueriesdetails table,
826 div
#serverstatus table#serverstatustraffic,
827 div
#serverstatus table#serverstatusconnections {
828 float: <?php
echo $left; ?
>;
831 #serverstatussection,
835 div
#serverstatussection table {
839 div
#serverstatussection table .name {
842 div
#serverstatussection table .value {
846 div
#serverstatus table tbody td.descr a,
847 div
#serverstatus table .tblFooters a {
851 div
#serverstatus div#statuslinks a:before,
852 div
#serverstatus div#sectionlinks a:before,
853 div
#serverstatus table tbody td.descr a:before,
854 div
#serverstatus table .tblFooters a:before {
857 div
#serverstatus div#statuslinks a:after,
858 div
#serverstatus div#sectionlinks a:after,
859 div
#serverstatus table tbody td.descr a:after,
860 div
#serverstatus table .tblFooters a:after {
864 /* end serverstatus */
867 body
#bodyquerywindow {
868 margin
: 30px
2px
2px
2px
;
870 background
-image
: none
;
871 background
-color
: transparent
;
874 div
#querywindowcontainer {
880 div
#querywindowcontainer fieldset {
883 /* END querywindow */
888 div
#sqlquerycontainer {
889 float: <?php
echo $left; ?
>;
894 div
#tablefieldscontainer {
895 float: <?php
echo $right; ?
>;
900 div
#tablefieldscontainer select {
910 div
#queryboxcontainer div#bookmarkoptions {
917 background
-image
: none
;
918 background
-position
: <?php
echo $right; ?
> bottom
;
919 background
-repeat
: no
-repeat
;
923 #mysqlmaininformation,
924 #pmamaininformation {
925 float: <?php
echo $left; ?
>;
930 list-style
-image
: url('<?php echo $ipath; ?>item_<?php echo $GLOBALS['text_dir
']; ?>.png');
931 vertical
-align
: middle
;
941 <?php
if ($GLOBALS['cfg']['MainPageIconic']) { ?
>
942 /* iconic view for ul items */
943 li
#li_create_database { list-style-image: url('<?php echo $ipath; ?>b_newdb.png'); }
944 li
#li_select_lang { list-style-image: url('<?php echo $ipath; ?>s_lang.png'); }
945 li
#li_select_mysql_collation { list-style-image: url('<?php echo $ipath; ?>s_asci.png'); }
946 li
#li_select_mysql_charset { list-style-image: url('<?php echo $ipath; ?>s_asci.png'); }
947 li
#li_select_theme { list-style-image: url('<?php echo $ipath; ?>s_theme.png'); }
948 li
#li_server_info { list-style-image: url('<?php echo $ipath; ?>s_host.png'); }
949 li
#li_user_info { list-style-image: url('<?php echo $ipath; ?>b_dbusr.png'); }
950 li
#li_mysql_status { list-style-image: url('<?php echo $ipath; ?>s_status.png'); }
951 li
#li_mysql_variables { list-style-image: url('<?php echo $ipath; ?>s_vars.png'); }
952 li
#li_mysql_processes { list-style-image: url('<?php echo $ipath; ?>s_process.png'); }
953 li
#li_mysql_collations { list-style-image: url('<?php echo $ipath; ?>s_asci.png'); }
954 li
#li_mysql_engines { list-style-image: url('<?php echo $ipath; ?>b_engine.png'); }
955 li
#li_mysql_binlogs { list-style-image: url('<?php echo $ipath; ?>s_tbl.png'); }
956 li
#li_mysql_databases { list-style-image: url('<?php echo $ipath; ?>s_db.png'); }
957 li
#li_export { list-style-image: url('<?php echo $ipath; ?>b_export.png'); }
958 li
#li_import { list-style-image: url('<?php echo $ipath; ?>b_import.png'); }
959 li
#li_change_password { list-style-image: url('<?php echo $ipath; ?>s_passwd.png'); }
960 li
#li_log_out { list-style-image: url('<?php echo $ipath; ?>s_loggoff.png'); }
961 li
#li_pma_docs { list-style-image: url('<?php echo $ipath; ?>b_docs.png'); }
962 li
#li_phpinfo { list-style-image: url('<?php echo $ipath; ?>php_sym.png'); }
963 li
#li_pma_homepage { list-style-image: url('<?php echo $ipath; ?>b_home.png'); }
964 li
#li_mysql_privilegs { list-style-image: url('<?php echo $ipath; ?>s_rights.png'); }
965 li
#li_switch_dbstats { list-style-image: url('<?php echo $ipath; ?>b_dbstatistics.png'); }
966 li
#li_flush_privileges { list-style-image: url('<?php echo $ipath; ?>s_reload.png'); }
967 li
#li_mysql_proto { list-style-image: url('<?php echo $ipath; ?>b_dbsock.png'); }
968 li
#li_mysql_client_version { list-style-image: url('<?php echo $ipath; ?>b_dbclient.png'); }
969 li
#li_select_fontsize { list-style-image: url('<?php echo $ipath; ?>b_fontsize.png'); }
970 li
#li_used_php_extension { list-style-image: url('<?php echo $ipath; ?>b_dbphpext.png'); }
971 /* END iconic view for ul items */
972 <?php
} /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?
>
975 #body_browse_foreigners {
976 background
: <?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
977 margin
: <?php
echo (($tmp_css_type == 'inline') ?
6 : 4); ?
>em
0.5em
0 0.5em
;
980 #body_browse_foreigners form {
982 background
-color
: <?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
985 <?php
if ($forIE) { ?
>
987 top
: expression(eval(document
.documentElement
.scrollTop
));
994 #body_browse_foreigners, #body_browse_foreigners th, #body_browse_foreigners td {
995 font
-size
: <?php
echo number_format($fsize * 0.9) . $funit; ?
>;
996 text
-align
: <?php
echo $left; ?
>;
998 #body_browse_foreigners tfoot th {
999 background
-color
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
1000 background
-image
: url('<?php echo $ipath; ?>tbg_th3.png');
1001 background
-position
: left bottom
;
1003 #body_browse_foreigners .formelement {
1004 float: none
; clear
: both
;
1006 #body_browse_foreigners fieldset { text-align: center; padding: 0.1em 0.1em 0.1em 0.1em; margin: 0.1em 0.1em 0.1em 0.1em; }
1009 background
: <?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
1019 border
: 0.1em solid black
;
1022 #bodythemes a:hover img {
1023 border
: 0.1em solid red
;
1026 #fieldset_select_fields {
1027 float: <?php
echo $left; ?
>;
1036 border
-top
: 0.1em none silver
;
1037 text
-align
: <?php
echo $left; ?
>;
1040 #table_innodb_bufferpool_usage,
1041 #table_innodb_bufferpool_activity {
1042 float: <?php
echo $left; ?
>;
1045 #div_mysql_charset_collations table {
1046 float: <?php
echo $left; ?
>;
1049 #div_table_order, #div_table_rename, #div_table_copy, #div_table_options {
1055 #qbe_div_table_list {
1056 float: <?php
echo $left; ?
>;
1059 #qbe_div_sql_query {
1060 float: <?php
echo $left; ?
>;
1065 float: <?php
echo $left; ?
>;
1068 #buttonGo, #buttonNo, #buttonYes, #submit, #cancel { font-weight: bold; }
1069 #buttonGo { color: #585880; }
1070 #buttonNo, #cancel { color: #aa0000; }
1071 #buttonYes, #submit { color: #006600; }
1072 #listTable { width: 260px;}
1073 #textSqlquery { width: 450px; }
1075 background
-color
: transparent
;
1076 border
: 1px solid
#585880;
1078 <?php
if (!empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?
>
1079 font
-family
: <?php
echo $GLOBALS['cfg']['FontFamilyFixed']; ?
>;