New classes for table/db operations
[phpmyadmin-themes.git] / aqua_brushed / css / theme_right.css.php
blobbdb107c90edf804717786299d0281f081eca277a
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * main css file from theme
6 * @version $Id$
7 * @package phpMyAdmin-theme
8 * @subpackage Aqua_Brushed
9 */
11 // unplanned execution path
12 if (!defined('PMA_MINIMUM_COMMON')) {
13 exit();
15 ?>
16 /******************************************************************************/
17 /* general tags */
18 html {
19 font-size: <?php echo $GLOBALS['PMA_Config']->get('fontsize'); ?>;
22 input, select, textarea {
23 font-size: 1em;
26 body {
27 <?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
28 font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
29 <?php } ?>
30 padding: 0;
31 margin: 0.5em;
32 color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
33 background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
36 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
37 textarea, tt, pre, code {
38 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
40 <?php } ?>
41 h1 {
42 font-size: 140%;
43 font-weight: bold;
46 h2 {
47 font-size: 120%;
48 font-weight: bold;
51 h3 {
52 font-weight: bold;
55 a:link,
56 a:visited,
57 a:active {
58 text-decoration: none;
59 color: #0000FF;
62 a:hover {
63 text-decoration: underline;
64 color: #FF0000;
67 dfn {
68 font-style: normal;
71 dfn:hover {
72 font-style: normal;
73 cursor: help;
76 th {
77 font-weight: bold;
78 color: #000000;
79 background-color: #B5BDC7;
80 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>tbl_th.png);
81 background-repeat: repeat-x;
82 background-position: top;
84 th a:link, th a:active, th a:visited{
85 color: #000000;
86 text-decoration: underline;
89 th a:hover{
90 color: #666666;
91 text-decoration: none;
95 a img {
96 border: 0;
99 hr {
100 color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
101 background-color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
102 border: 0;
103 height: 1px;
106 form {
107 padding: 0;
108 margin: 0;
109 display: inline;
112 textarea {
113 overflow: visible;
114 height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
117 fieldset {
118 margin-top: 1em;
119 border: <?php echo $GLOBALS['cfg']['MainColor']; ?> solid 1px;
120 padding: 0.5em;
121 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
124 fieldset fieldset {
125 margin: 0.8em;
128 fieldset legend {
129 background-color: transparent;
132 /* buttons in some browsers (eg. Konqueror) are block elements,
133 this breaks design */
134 button {
135 display: inline;
138 table caption,
139 table th,
140 table td {
141 padding: 0.1em 0.5em 0.1em 0.5em;
142 margin: 0.1em;
143 vertical-align: top;
146 img,
147 input,
148 select,
149 button {
150 vertical-align: middle;
154 /******************************************************************************/
155 /* classes */
156 div.tools {
157 border: 1px solid #000000;
158 padding: 0.2em;
161 div.tools,
162 fieldset.tblFooters {
163 margin-top: 0;
164 margin-bottom: 0.5em;
165 /* avoid a thick line since this should be used under another fieldset */
166 border-top: 0;
167 text-align: <?php echo $right; ?>;
168 float: none;
169 clear: both;
172 fieldset .formelement {
173 float: <?php echo $left; ?>;
174 margin-<?php echo $right; ?>: 0.5em;
175 /* IE */
176 white-space: nowrap;
179 /* revert for Gecko */
180 fieldset div[class=formelement] {
181 white-space: normal;
184 button.mult_submit {
185 border: none;
186 background-color: transparent;
189 /* odd items 1,3,5,7,... */
190 table tr.odd th,
191 .odd {
192 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
195 /* even items 2,4,6,8,... */
196 table tr.even th,
197 .even {
198 background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
201 /* odd table rows 1,3,5,7,... */
202 table tr.odd th,
203 table tr.odd,
204 table tr.even th,
205 table tr.even {
206 text-align: <?php echo $left; ?>;
209 <?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
210 /* marked table rows */
211 table tr.marked th,
212 table tr.marked {
213 background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
214 color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
216 <?php } ?>
218 <?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?>
219 /* hovered items */
220 .odd:hover,
221 .even:hover,
222 .hover {
223 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
224 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
227 /* hovered table rows */
228 table tr.odd:hover th,
229 table tr.even:hover th,
230 table tr.hover th {
231 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
232 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
234 <?php } ?>
237 * marks table rows/cells if the db field is in a where condition
239 tr.condition th,
240 tr.condition td,
241 td.condition,
242 th.condition {
243 border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
246 table .value {
247 text-align: <?php echo $right; ?>;
248 white-space: normal;
250 /* IE doesnt handles 'pre' right */
251 table [class=value] {
252 white-space: normal;
256 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
257 .value {
258 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
260 <?php } ?>
261 .value .attention {
262 color: red;
263 font-weight: bold;
265 .value .allfine {
266 color: green;
270 img.lightbulb {
271 cursor: pointer;
274 .pdflayout {
275 overflow: hidden;
276 clip: inherit;
277 background-color: #FFFFFF;
278 display: none;
279 border: 1px solid #000000;
280 position: relative;
283 .pdflayout_table {
284 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
285 color: #000000;
286 overflow: hidden;
287 clip: inherit;
288 z-index: 2;
289 display: inline;
290 visibility: inherit;
291 cursor: move;
292 position: absolute;
293 font-size: 80%;
294 border: 1px dashed #000000;
297 /* MySQL Parser */
298 .syntax {
299 font-size: 80%;
302 .syntax_comment {
303 padding-left: 4pt;
304 padding-right: 4pt;
307 .syntax_digit {
310 .syntax_digit_hex {
313 .syntax_digit_integer {
316 .syntax_digit_float {
319 .syntax_punct {
322 .syntax_alpha {
325 .syntax_alpha_columnType {
326 text-transform: uppercase;
329 .syntax_alpha_columnAttrib {
330 text-transform: uppercase;
333 .syntax_alpha_reservedWord {
334 text-transform: uppercase;
335 font-weight: bold;
338 .syntax_alpha_functionName {
339 text-transform: uppercase;
342 .syntax_alpha_identifier {
345 .syntax_alpha_charset {
348 .syntax_alpha_variable {
351 .syntax_quote {
352 white-space: pre;
355 .syntax_quote_backtick {
358 /* leave some space between icons and text */
359 .icon {
360 vertical-align: middle;
361 margin-right: 0.3em;
362 margin-left: 0.3em;
364 /* no extra space in table cells */
365 td .icon {
366 margin: 0;
369 .selectallarrow {
370 margin-<?php echo $right; ?>: 0.3em;
371 margin-<?php echo $left; ?>: 0.6em;
374 /* message boxes: warning, error, confirmation */
375 .success h1,
376 .notice h1,
377 .warning h1,
378 div.error h1 {
379 border-bottom: 2px solid;
380 font-weight: bold;
381 text-align: <?php echo $left; ?>;
382 margin: 0 0 0.2em 0;
385 div.success,
386 div.notice,
387 div.warning,
388 div.error {
389 margin: 0.3em 0 0 0;
390 border: 2px solid;
391 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
392 background-repeat: no-repeat;
393 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
394 background-position: 10px 50%;
395 padding: 0.1em 0.1em 0.1em 36px;
396 <?php } else { ?>
397 background-position: 99% 50%;
398 padding: 10px 5% 10px 10px;
399 <?php } ?>
400 <?php } else { ?>
401 padding: 0.3em;
402 <?php } ?>
405 .success {
406 color: #000000;
407 background-color: #f0fff0;
409 h1.success,
410 div.success {
411 border-color: #00FF00;
412 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
413 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_success.png);
414 <?php } ?>
416 .success h1 {
417 border-color: #00FF00;
420 .notice {
421 color: #000000;
422 background-color: #FFFFDD;
424 h1.notice,
425 div.notice {
426 border-color: #FFD700;
427 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
428 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
429 <?php } ?>
431 .notice h1 {
432 border-color: #FFD700;
435 .warning {
436 color: #CC0000;
437 background-color: #FFFFCC;
439 p.warning,
440 h1.warning,
441 div.warning {
442 border-color: #CC0000;
443 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
444 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
445 <?php } ?>
447 .warning h1 {
448 border-color: #cc0000;
451 .error {
452 background-color: #FFFFCC;
453 color: #ff0000;
456 h1.error,
457 div.error {
458 border-color: #ff0000;
459 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
460 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
461 <?php } ?>
463 div.error h1 {
464 border-color: #ff0000;
467 .confirmation {
468 background-color: #FFFFCC;
470 fieldset.confirmation {
471 border: 0.1em solid #FF0000;
473 fieldset.confirmation legend {
474 border-left: 0.1em solid #FF0000;
475 border-right: 0.1em solid #FF0000;
476 font-weight: bold;
477 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
478 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_really.png);
479 background-repeat: no-repeat;
480 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
481 background-position: 5px 50%;
482 padding: 0.2em 0.2em 0.2em 25px;
483 <?php } else { ?>
484 background-position: 97% 50%;
485 padding: 0.2em 25px 0.2em 0.2em;
486 <?php } ?>
487 <?php } ?>
489 /* end messageboxes */
492 .tblcomment {
493 font-size: 70%;
494 font-weight: normal;
495 color: #000099;
498 .tblHeaders {
499 font-weight: bold;
500 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
501 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
504 div.tools,
505 .tblFooters {
506 font-weight: normal;
507 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
508 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
511 .tblHeaders a:link,
512 .tblHeaders a:active,
513 .tblHeaders a:visited,
514 div.tools a:link,
515 div.tools a:visited,
516 div.tools a:active,
517 .tblFooters a:link,
518 .tblFooters a:active,
519 .tblFooters a:visited {
520 color: #0000FF;
523 .tblHeaders a:hover,
524 div.tools a:hover,
525 .tblFooters a:hover {
526 color: #FF0000;
529 /* forbidden, no privilegs */
530 .noPrivileges {
531 color: #FF0000;
532 font-weight: bold;
535 /* disabled text */
536 .disabled,
537 .disabled a:link,
538 .disabled a:active,
539 .disabled a:visited {
540 color: #666666;
543 .disabled a:hover {
544 color: #666666;
545 text-decoration: none;
548 tr.disabled td,
549 td.disabled {
550 background-color: #cccccc;
554 * login form
556 body.loginform h1,
557 body.loginform a.logo {
558 display: block;
559 text-align: center;
562 body.loginform {
563 text-align: center;
566 body.loginform div.container {
567 text-align: <?php echo $left; ?>;
568 width: 30em;
569 margin: 0 auto;
572 form.login label {
573 float: <?php echo $left; ?>;
574 width: 10em;
575 font-weight: bolder;
579 /******************************************************************************/
580 /* specific elements */
582 /* topmenu */
583 ul#topmenu {
584 font-weight: bold;
585 list-style-type: none;
586 margin: 0;
587 padding: 0;
590 ul#topmenu li {
591 float: <?php echo $left; ?>;
592 margin: 0;
593 padding: 0;
594 vertical-align: middle;
597 #topmenu img {
598 vertical-align: middle;
599 margin-<?php echo $right; ?>: 0.1em;
602 /* default tab styles */
603 .tab, .tabcaution, .tabactive {
604 display: block;
605 margin: 0.2em 0.2em 0 0.2em;
606 padding: 0.2em 0.2em 0 0.2em;
607 white-space: nowrap;
610 /* disabled tabs */
611 span.tab {
612 color: #666666;
615 /* disabled drop/empty tabs */
616 span.tabcaution {
617 color: #ff6666;
620 /* enabled drop/empty tabs */
621 a.tabcaution {
622 color: #FF0000;
624 a.tabcaution:hover {
625 color: #FFFFFF;
626 background-color: #FF0000;
629 <?php if ($GLOBALS['cfg']['LightTabs']) { ?>
630 /* active tab */
631 a.tabactive {
632 color: black;
634 <?php } else { ?>
635 #topmenu {
636 margin-top: 0.5em;
637 padding: 0.1em 0.3em 0.1em 0.3em;
640 ul#topmenu li {
641 border-bottom: 1pt solid silver;
644 /* default tab styles */
645 .tab, .tabcaution, .tabactive {
646 background-color: #E5E5E5;
647 border: 1pt solid silver;
648 border-bottom: 0;
649 border-top-left-radius: 0.4em;
650 border-top-right-radius: 0.4em;
651 background-color: #B5BDC7;
652 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>tbl_header.png);
653 background-repeat: repeat-x;
654 background-position: top;
657 /* enabled hover/active tabs */
658 a.tab:hover,
659 a.tabcaution:hover,
660 .tabactive,
661 .tabactive:hover {
662 margin: 0;
663 padding: 0.2em 0.4em 0.2em 0.4em;
664 text-decoration: none;
665 background-color: #DDDDDD;
666 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>tbl_th.png);
667 background-repeat: repeat-x;
668 background-position: top;
671 a.tabcaution:hover {
672 background-color: #ff0000;
673 background-image: none;
676 a.tab:hover,
677 .tabactive {
678 font-weight: bold;
679 color: #FFFFFF;
680 background-color: #8FBDE9;
683 /* to be able to cancel the bottom border, use <li class="active"> */
684 ul#topmenu li.active {
685 border-bottom: 1pt solid <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
688 /* disabled drop/empty tabs */
689 span.tab,
690 a.warning,
691 span.tabcaution {
692 cursor: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
694 <?php } ?>
695 /* end topmenu */
698 /* Calendar */
699 table.calendar {
700 width: 100%;
702 table.calendar td {
703 text-align: center;
705 table.calendar td a {
706 display: block;
709 table.calendar td a:hover {
710 background-color: #CCFFCC;
713 table.calendar th {
714 background-color: #D3DCE3;
717 table.calendar td.selected {
718 background-color: #FFCC99;
721 img.calendar {
722 border: none;
724 form.clock {
725 text-align: center;
727 /* end Calendar */
730 /* table stats */
731 div#tablestatistics {
732 border-bottom: 0.1em solid #669999;
733 margin-bottom: 0.5em;
734 padding-bottom: 0.5em;
737 div#tablestatistics table {
738 float: <?php echo $left; ?>;
739 margin-bottom: 0.5em;
740 margin-<?php echo $right; ?>: 0.5em;
743 div#tablestatistics table caption {
744 margin-<?php echo $right; ?>: 0.5em;
746 /* END table stats */
749 /* server privileges */
750 #tableuserrights td,
751 #tablespecificuserrights td,
752 #tabledatabases td {
753 vertical-align: middle;
755 /* END server privileges */
759 /* Heading */
760 #serverinfo {
761 font-weight: bold;
762 margin-bottom: 0.5em;
765 #serverinfo .item {
766 white-space: nowrap;
769 #span_table_comment {
770 font-weight: normal;
771 font-style: italic;
772 white-space: nowrap;
775 #serverinfo img {
776 margin: 0 0.1em 0 0.2em;
780 #textSQLDUMP {
781 width: 95%;
782 height: 95%;
783 font-family: "Courier New", Courier, mono;
784 font-size: 110%;
787 #TooltipContainer {
788 position: absolute;
789 z-index: 99;
790 width: 20em;
791 height: auto;
792 overflow: visible;
793 visibility: hidden;
794 background-color: #ffffcc;
795 color: #006600;
796 border: 0.1em solid #000000;
797 padding: 0.5em;
800 /* user privileges */
801 #fieldset_add_user_login div.item {
802 border-bottom: 1px solid silver;
803 padding-bottom: 0.3em;
804 margin-bottom: 0.3em;
807 #fieldset_add_user_login label {
808 float: <?php echo $left; ?>;
809 display: block;
810 width: 10em;
811 max-width: 100%;
812 text-align: <?php echo $right; ?>;
813 padding-<?php echo $right; ?>: 0.5em;
816 #fieldset_add_user_login span.options #select_pred_username,
817 #fieldset_add_user_login span.options #select_pred_hostname,
818 #fieldset_add_user_login span.options #select_pred_password {
819 width: 100%;
820 max-width: 100%;
823 #fieldset_add_user_login span.options {
824 float: <?php echo $left; ?>;
825 display: block;
826 width: 12em;
827 max-width: 100%;
828 padding-<?php echo $right; ?>: 0.5em;
831 #fieldset_add_user_login input {
832 width: 12em;
833 clear: <?php echo $right; ?>;
834 max-width: 100%;
837 #fieldset_add_user_login span.options input {
838 width: auto;
841 #fieldset_user_priv div.item {
842 float: <?php echo $left; ?>;
843 width: 9em;
844 max-width: 100%;
847 #fieldset_user_priv div.item div.item {
848 float: none;
851 #fieldset_user_priv div.item label {
852 white-space: nowrap;
855 #fieldset_user_priv div.item select {
856 width: 100%;
859 #fieldset_user_global_rights fieldset {
860 float: <?php echo $left; ?>;
862 /* END user privileges */
865 /* serverstatus */
866 div#serverstatus table caption a.top {
867 float: <?php echo $right; ?>;
870 div#serverstatus div#serverstatusqueriesdetails table,
871 div#serverstatus table#serverstatustraffic,
872 div#serverstatus table#serverstatusconnections {
873 float: <?php echo $left; ?>;
876 #serverstatussection,
877 .clearfloat {
878 clear: both;
880 div#serverstatussection table {
881 width: 100%;
882 margin-bottom: 1em;
884 div#serverstatussection table .name {
885 width: 18em;
887 div#serverstatussection table .value {
888 width: 6em;
891 div#serverstatus table tbody td.descr a,
892 div#serverstatus table .tblFooters a {
893 white-space: nowrap;
895 div#serverstatus div#statuslinks a:before,
896 div#serverstatus div#sectionlinks a:before,
897 div#serverstatus table tbody td.descr a:before,
898 div#serverstatus table .tblFooters a:before {
899 content: '[';
901 div#serverstatus div#statuslinks a:after,
902 div#serverstatus div#sectionlinks a:after,
903 div#serverstatus table tbody td.descr a:after,
904 div#serverstatus table .tblFooters a:after {
905 content: ']';
907 /* end serverstatus */
909 /* querywindow */
910 body#bodyquerywindow {
911 margin: 0;
912 padding: 0;
913 background-image: none;
914 background-color: #F5F5F5;
917 div#querywindowcontainer {
918 margin: 0;
919 padding: 0;
920 width: 100%;
923 div#querywindowcontainer fieldset {
924 margin-top: 0;
926 /* END querywindow */
929 /* querybox */
931 div#sqlquerycontainer {
932 float: <?php echo $left; ?>;
933 width: 69%;
934 /* height: 15em; */
937 div#tablefieldscontainer {
938 float: <?php echo $right; ?>;
939 width: 29%;
940 /* height: 15em; */
943 div#tablefieldscontainer select {
944 width: 100%;
945 /* height: 12em; */
948 textarea#sqlquery {
949 width: 100%;
950 /* height: 100%; */
953 div#queryboxcontainer div#bookmarkoptions {
954 margin-top: 0.5em;
956 /* end querybox */
958 /* main page */
959 #maincontainer {
960 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png);
961 background-position: <?php echo $right; ?> bottom;
962 background-repeat: no-repeat;
965 #mysqlmaininformation,
966 #pmamaininformation {
967 float: <?php echo $left; ?>;
968 width: 49%;
971 #maincontainer ul {
972 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>item_<?php echo $GLOBALS['text_dir']; ?>.png);
973 vertical-align: middle;
976 #maincontainer li {
977 margin-bottom: 0.3em;
979 /* END main page */
982 <?php if ($GLOBALS['cfg']['MainPageIconic']) { ?>
983 /* iconic view for ul items */
984 li#li_create_database {
985 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png);
988 li#li_select_lang {
989 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
992 li#li_select_mysql_collation,
993 li#li_select_mysql_charset {
994 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
997 li#li_select_theme{
998 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
1001 li#li_server_info,
1002 li#li_server_version{
1003 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
1006 li#li_user_info{
1007 /* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
1010 li#li_mysql_status{
1011 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png);
1014 li#li_mysql_variables{
1015 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png);
1018 li#li_mysql_processes{
1019 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png);
1022 li#li_mysql_collations{
1023 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
1026 li#li_mysql_engines{
1027 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png);
1030 li#li_mysql_binlogs {
1031 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png);
1034 li#li_mysql_databases {
1035 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png);
1038 li#li_export {
1039 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png);
1042 li#li_import {
1043 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png);
1046 li#li_change_password {
1047 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png);
1050 li#li_log_out {
1051 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
1054 li#li_pma_docs,
1055 li#li_pma_wiki {
1056 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
1059 li#li_phpinfo {
1060 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png);
1063 li#li_pma_homepage {
1064 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_home.png);
1067 li#li_mysql_privilegs{
1068 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png);
1071 li#li_switch_dbstats {
1072 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png);
1075 li#li_flush_privileges {
1076 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png);
1078 /* END iconic view for ul items */
1079 <?php } /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?>
1082 #body_browse_foreigners {
1083 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
1084 margin: 0.5em 0.5em 0 0.5em;
1087 #bodyquerywindow {
1088 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
1091 #bodythemes {
1092 width: 500px;
1093 margin: auto;
1094 text-align: center;
1097 #bodythemes img {
1098 border: 0.1em solid black;
1101 #bodythemes a:hover img {
1102 border: 0.1em solid red;
1105 #fieldset_select_fields {
1106 float: <?php echo $left; ?>;
1109 #selflink {
1110 clear: both;
1111 display: block;
1112 margin-top: 1em;
1113 margin-bottom: 1em;
1114 width: 100%;
1115 border-top: 0.1em solid silver;
1116 text-align: <?php echo $right; ?>;
1119 #table_innodb_bufferpool_usage,
1120 #table_innodb_bufferpool_activity {
1121 float: <?php echo $left; ?>;
1124 #div_mysql_charset_collations table {
1125 float: <?php echo $left; ?>;
1128 #div_table_order {
1129 min-width: 48%;
1130 float: <?php echo $left; ?>;
1133 #div_table_rename {
1134 min-width: 48%;
1135 float: <?php echo $left; ?>;
1138 #div_table_copy,
1139 #div_partition_maintenance,
1140 #div_referential_integrity,
1141 #div_table_maintenance {
1142 min-width: 48%;
1143 float: <?php echo $left; ?>;
1146 #div_table_options {
1147 clear: both;
1148 min-width: 48%;
1149 float: <?php echo $left; ?>;
1152 #qbe_div_table_list {
1153 float: <?php echo $left; ?>;
1156 #qbe_div_sql_query {
1157 float: <?php echo $left; ?>;
1160 label.desc {
1161 width: 30em;
1162 float: <?php echo $left; ?>;
1165 code.sql {
1166 display: block;
1167 padding: 0.3em;
1168 margin-top: 0;
1169 margin-bottom: 0;
1170 border: <?php echo $GLOBALS['cfg']['MainColor']; ?> solid 1px;
1171 border-top: 0;
1172 border-bottom: 0;
1173 max-height: 10em;
1174 overflow: auto;
1175 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;