Fix for the Open in New Window in Patient/Client->Patients search gui, take 2.
[openemr.git] / phpmyadmin / themes / darkblue_orange / css / theme_right.css.php
blob4a728d5b6dc7ea7b283fb0228b51beda78db0055
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * main css file from theme Darkblue Orange
6 * @version $Id$
7 * @package phpMyAdmin-theme
8 * @subpackage Darkblue_orange
9 */
11 // unplanned execution path
12 if (!defined('PMA_MINIMUM_COMMON')) {
13 exit();
16 /******************************************************************************/
17 /* general tags */
18 body {
19 <?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
20 font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
21 <?php } ?>
22 padding: 0;
23 margin: 0.5em;
24 color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
25 background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
28 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
29 textarea, tt, pre, code {
30 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
32 <?php } ?>
34 h1 {
35 font-size: 180%;
36 font-weight: bold;
39 h2 {
40 font-size: 130%;
41 font-weight: bold;
44 h3 {
45 font-size: 120%;
46 font-weight: bold;
49 pre, tt, code {
50 font-size: 110%;
53 a:link,
54 a:visited,
55 a:active {
56 text-decoration: none;
57 color: #333399;
60 a:hover {
61 text-decoration: underline;
62 color: #cc0000;
65 dfn {
66 font-style: normal;
69 dfn:hover {
70 font-style: normal;
71 cursor: help;
74 th {
75 font-weight: bold;
76 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
77 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
80 th a:link,
81 th a:active,
82 th a:visited {
83 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
84 text-decoration: underline;
87 th a:hover {
88 color: #666666;
89 text-decoration: none;
92 a img {
93 border: 0;
96 hr {
97 color: #666699;
98 background-color: #6666cc;
99 border: 0;
100 height: 1px;
103 form {
104 padding: 0;
105 margin: 0;
106 display: inline;
109 textarea {
110 overflow: visible;
113 fieldset {
114 margin-top: 1em;
115 border: #666699 solid 1px;
116 padding: 0.5em;
119 fieldset fieldset {
120 margin: 0.8em;
123 fieldset legend {
124 color: #444444;
125 font-weight: bold;
126 background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
127 padding: 2px 2px 2px 2px;
130 /* buttons in some browsers (eg. Konqueror) are block elements,
131 this breaks design */
132 button {
133 display: inline;
136 table caption,
137 table th,
138 table td {
139 padding: 0.1em 0.5em 0.1em 0.5em;
140 margin: 0.1em;
141 vertical-align: top;
144 img,
145 input,
146 select,
147 button {
148 vertical-align: middle;
152 /******************************************************************************/
153 /* classes */
155 fieldset.tblFooters {
156 margin-top: 0;
157 margin-bottom: 0.5em;
158 /* avoid a thick line since this should be used under another fieldset */
159 border-top: 0;
160 text-align: <?php echo $right; ?>;
161 float: none;
162 clear: both;
165 fieldset .formelement {
166 float: <?php echo $left; ?>;
167 margin-<?php echo $right; ?>: 0.5em;
168 /* IE */
169 white-space: nowrap;
172 /* revert for Gecko */
173 fieldset div[class=formelement] {
174 white-space: normal;
177 button.mult_submit {
178 border: none;
179 background-color: transparent;
182 /* odd items 1,3,5,7,... */
183 .odd {
184 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
187 /* even items 2,4,6,8,... */
188 .even {
189 background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
192 /* odd table rows 1,3,5,7,... */
193 table tr.odd th,
194 table tr.odd {
195 background-image: none;
196 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
197 text-align: <?php echo $left; ?>;
200 /* even table rows 2,4,6,8,... */
201 table tr.even th,
202 table tr.even {
203 background-image: none;
204 background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
205 text-align: <?php echo $left; ?>;
208 <?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
209 /* marked table rows */
210 table tr.marked th,
211 table tr.marked {
212 background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
213 color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
215 <?php } ?>
217 <?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?>
218 /* hovered items */
219 .odd:hover,
220 .even:hover,
221 .hover {
222 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
223 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
226 /* hovered table rows */
227 table tr.odd:hover th,
228 table tr.even:hover th,
229 table tr.hover th {
230 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
231 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
233 <?php } ?>
236 * marks table rows/cells if the db field is in a where condition
238 tr.condition th,
239 tr.condition td,
240 td.condition,
241 th.condition {
242 border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
245 table .value {
246 text-align: <?php echo $right; ?>;
247 white-space: normal;
249 /* IE doesnt handles 'pre' right */
250 table [class=value] {
251 white-space: normal;
255 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
256 .value {
257 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
259 <?php } ?>
260 .value .attention {
261 color: red;
262 font-weight: bold;
264 .value .allfine {
265 color: green;
269 img.lightbulb {
270 cursor: pointer;
273 .pdflayout {
274 overflow: hidden;
275 clip: inherit;
276 background-color: #FFFFFF;
277 display: none;
278 border: 1px solid #000000;
279 position: relative;
282 .pdflayout_table {
283 background: #ff9900;
284 color: #000000;
285 overflow: hidden;
286 clip: inherit;
287 z-index: 2;
288 display: inline;
289 visibility: inherit;
290 cursor: move;
291 position: absolute;
292 font-size: 110%;
293 border: 1px dashed #000000;
296 /* MySQL Parser */
297 .syntax {
300 .syntax_comment {
301 padding-left: 4pt;
302 padding-right: 4pt;
305 .syntax_digit {
308 .syntax_digit_hex {
311 .syntax_digit_integer {
314 .syntax_digit_float {
317 .syntax_punct {
320 .syntax_alpha {
323 .syntax_alpha_columnType {
324 text-transform: uppercase;
327 .syntax_alpha_columnAttrib {
328 text-transform: uppercase;
331 .syntax_alpha_reservedWord {
332 text-transform: uppercase;
333 font-weight: bold;
336 .syntax_alpha_functionName {
337 text-transform: uppercase;
340 .syntax_alpha_identifier {
343 .syntax_alpha_charset {
346 .syntax_alpha_variable {
349 .syntax_quote {
350 white-space: pre;
353 .syntax_quote_backtick {
356 /* leave some space between icons and text */
357 .icon {
358 vertical-align: middle;
359 margin-right: 0.3em;
360 margin-left: 0.3em;
362 /* no extra space in table cells */
363 td .icon {
364 margin: 0;
367 .selectallarrow {
368 margin-<?php echo $right; ?>: 0.3em;
369 margin-<?php echo $left; ?>: 0.6em;
372 /* message boxes: warning, error, confirmation */
373 .notice {
374 color: #000000;
375 background-color: #FFFFDD;
377 h1.notice,
378 div.notice {
379 margin: 0.5em 0 0.5em 0;
380 border: 0.1em solid #FFD700;
381 width: 90%;
382 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
383 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
384 background-repeat: no-repeat;
385 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
386 background-position: 10px 50%;
387 padding: 10px 10px 10px 36px;
388 <?php } else { ?>
389 background-position: 99% 50%;
390 padding: 10px 5% 10px 10px;
391 <?php } ?>
392 <?php } else { ?>
393 padding: 0.5em;
394 <?php } ?>
396 .notice h1 {
397 border-bottom: 0.1em solid #FFD700;
398 font-weight: bold;
399 text-align: <?php echo $left; ?>;
400 margin: 0 0 0.2em 0;
403 .warning {
404 color: #CC0000;
405 background-color: #FFFFCC;
407 p.warning,
408 h1.warning,
409 div.warning {
410 margin: 0.5em 0 0.5em 0;
411 border: 0.1em solid #CC0000;
412 width: 90%;
413 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
414 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
415 background-repeat: no-repeat;
416 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
417 background-position: 10px 50%;
418 padding: 10px 10px 10px 36px;
419 <?php } else { ?>
420 background-position: 99% 50%;
421 padding: 10px 5% 10px 10px;
422 <?php } ?>
423 <?php } else { ?>
424 padding: 0.5em;
425 <?php } ?>
427 .warning h1 {
428 border-bottom: 0.1em solid #cc0000;
429 font-weight: bold;
430 text-align: <?php echo $left; ?>;
431 margin: 0 0 0.2em 0;
434 .error {
435 background-color: #FFFFCC;
436 color: #ff0000;
439 h1.error,
440 div.error {
441 margin: 0.5em 0 0.5em 0;
442 border: 0.1em solid #ff0000;
443 width: 90%;
444 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
445 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
446 background-repeat: no-repeat;
447 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
448 background-position: 10px 50%;
449 padding: 10px 10px 10px 36px;
450 <?php } else { ?>
451 background-position: 99% 50%;
452 padding: 10px 5% 10px 10px;
453 <?php } ?>
454 <?php } else { ?>
455 padding: 0.5em;
456 <?php } ?>
458 div.error h1 {
459 border-bottom: 0.1em solid #ff0000;
460 font-weight: bold;
461 text-align: <?php echo $left; ?>;
462 margin: 0 0 0.2em 0;
465 .confirmation {
466 background-color: #FFFFCC;
468 fieldset.confirmation {
469 border: 0.1em solid #FF0000;
471 fieldset.confirmation legend {
472 border-left: 0.1em solid #FF0000;
473 border-right: 0.1em solid #FF0000;
474 font-weight: bold;
475 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
476 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_really.png);
477 background-repeat: no-repeat;
478 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
479 background-position: 5px 50%;
480 padding: 0.2em 0.2em 0.2em 25px;
481 <?php } else { ?>
482 background-position: 97% 50%;
483 padding: 0.2em 25px 0.2em 0.2em;
484 <?php } ?>
485 <?php } ?>
487 /* end messageboxes */
490 .tblcomment {
491 font-weight: normal;
492 color: #000099;
495 .tblHeaders {
496 font-weight: bold;
497 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
498 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
501 .tblFooters {
502 font-weight: normal;
503 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
504 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
508 .tblHeaders a:link,
509 .tblHeaders a:active,
510 .tblHeaders a:visited,
511 .tblFooters a:link,
512 .tblFooters a:active,
513 .tblFooters a:visited {
514 color: #ffffcc;
515 text-decoration: underline;
518 .tblHeaders a:hover,
519 .tblFooters a:hover {
520 text-decoration: none;
521 color: #ffffff;
524 /* forbidden, no privilegs */
525 .noPrivileges {
526 color: #cc0000;
527 font-weight: bold;
530 /* disabled text */
531 .disabled,
532 .disabled a:link,
533 .disabled a:active,
534 .disabled a:visited {
535 color: #666666;
538 .disabled a:hover {
539 color: #666666;
540 text-decoration: none;
543 tr.disabled td,
544 td.disabled {
545 background-color: #cccccc;
549 * login form
551 body.loginform h1,
552 body.loginform a.logo {
553 display: block;
554 text-align: center;
557 body.loginform {
558 text-align: center;
561 body.loginform div.container {
562 text-align: <?php echo $left; ?>;
563 width: 30em;
564 margin: 0 auto;
567 form.login label {
568 float: <?php echo $left; ?>;
569 width: 10em;
570 font-weight: bolder;
574 /******************************************************************************/
575 /* specific elements */
577 /* topmenu */
578 ul#topmenu {
579 font-weight: bold;
580 list-style-type: none;
581 margin: 0;
582 padding: 0;
585 ul#topmenu li {
586 float: <?php echo $left; ?>;
587 margin: 0;
588 padding: 0;
589 vertical-align: middle;
592 #topmenu img {
593 vertical-align: middle;
594 margin-<?php echo $right; ?>: 0.1em;
597 /* default tab styles */
598 .tab, .tabcaution, .tabactive {
599 display: block;
600 margin: 0.2em 0.2em 0 0.2em;
601 padding: 0.2em 0.2em 0 0.2em;
602 white-space: nowrap;
605 /* disabled tabs */
606 span.tab {
607 color: #666666;
610 /* disabled drop/empty tabs */
611 span.tabcaution {
612 color: #ff6666;
615 /* enabled drop/empty tabs */
616 a.tabcaution {
617 color: #FF0000;
619 a.tabcaution:hover {
620 color: #FFFFFF;
621 background-color: #FF0000;
624 <?php if ($GLOBALS['cfg']['LightTabs']) { ?>
625 /* active tab */
626 a.tabactive {
627 color: black;
629 <?php } else { ?>
630 #topmenu {
631 margin-top: 0.5em;
632 padding: 0.1em 0.3em 0.1em 0.3em;
635 ul#topmenu li {
636 border-bottom: 1pt solid black;
639 /* default tab styles */
640 .tab, .tabcaution, .tabactive {
641 background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
642 border: 1pt solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
643 border-bottom: 0;
644 border-top-left-radius: 0.4em;
645 border-top-right-radius: 0.4em;
648 /* enabled hover/active tabs */
649 a.tab:hover,
650 a.tabcaution:hover,
651 .tabactive,
652 .tabactive:hover {
653 margin: 0;
654 padding: 0.2em 0.4em 0.2em 0.4em;
655 text-decoration: none;
658 a.tab:hover,
659 .tabactive {
660 background-color: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
663 /* to be able to cancel the bottom border, use <li class="active"> */
664 ul#topmenu li.active {
665 border-bottom: 1pt solid <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
668 /* disabled drop/empty tabs */
669 span.tab,
670 a.warning,
671 span.tabcaution {
672 cursor: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
674 <?php } ?>
675 /* end topmenu */
678 /* Calendar */
679 table.calendar {
680 width: 100%;
682 table.calendar td {
683 text-align: center;
685 table.calendar td a {
686 display: block;
689 table.calendar td a:hover {
690 background-color: #CCFFCC;
693 table.calendar th {
694 background-color: #D3DCE3;
697 table.calendar td.selected {
698 background-color: #FFCC99;
701 img.calendar {
702 border: none;
704 form.clock {
705 text-align: center;
707 /* end Calendar */
710 /* table stats */
711 div#tablestatistics {
712 border-bottom: 0.1em solid #669999;
713 margin-bottom: 0.5em;
714 padding-bottom: 0.5em;
717 div#tablestatistics table {
718 float: <?php echo $left; ?>;
719 margin-bottom: 0.5em;
720 margin-<?php echo $right; ?>: 0.5em;
723 div#tablestatistics table caption {
724 margin-<?php echo $right; ?>: 0.5em;
726 /* END table stats */
729 /* server privileges */
730 #tableuserrights td,
731 #tablespecificuserrights td,
732 #tabledatabases td {
733 vertical-align: middle;
735 /* END server privileges */
739 /* Heading */
740 #serverinfo {
741 font-weight: bold;
742 margin-bottom: 0.5em;
745 #serverinfo .item {
746 white-space: nowrap;
749 #span_table_comment {
750 font-weight: normal;
751 font-style: italic;
752 white-space: nowrap;
755 #serverinfo img {
756 margin: 0 0.1em 0 0.1em;
759 /* some styles for IDs: */
760 #buttonNo {
761 color: #CC0000;
762 font-weight: bold;
763 padding: 0 10px 0 10px;
766 #buttonYes {
767 color: #006600;
768 font-weight: bold;
769 padding: 0 10px 0 10px;
772 #buttonGo {
773 color: #006600;
774 font-weight: bold;
775 padding: 0 10px 0 10px;
778 #listTable {
779 width: 260px;
782 #textSqlquery {
783 width: 450px;
786 #textSQLDUMP {
787 width: 95%;
788 height: 95%;
789 font-family: "Courier New", Courier, mono;
790 font-size: 110%;
793 #TooltipContainer {
794 position: absolute;
795 z-index: 99;
796 width: 20em;
797 height: auto;
798 overflow: visible;
799 visibility: hidden;
800 background-color: #ffffcc;
801 color: #006600;
802 border: 0.1em solid #000000;
803 padding: 0.5em;
806 /* user privileges */
807 #fieldset_add_user_login div.item {
808 border-bottom: 1px solid silver;
809 padding-bottom: 0.3em;
810 margin-bottom: 0.3em;
813 #fieldset_add_user_login label {
814 float: <?php echo $left; ?>;
815 display: block;
816 width: 10em;
817 max-width: 100%;
818 text-align: <?php echo $right; ?>;
819 padding-<?php echo $right; ?>: 0.5em;
822 #fieldset_add_user_login span.options #select_pred_username,
823 #fieldset_add_user_login span.options #select_pred_hostname,
824 #fieldset_add_user_login span.options #select_pred_password {
825 width: 100%;
826 max-width: 100%;
829 #fieldset_add_user_login span.options {
830 float: <?php echo $left; ?>;
831 display: block;
832 width: 12em;
833 max-width: 100%;
834 padding-<?php echo $right; ?>: 0.5em;
837 #fieldset_add_user_login input {
838 width: 12em;
839 clear: <?php echo $right; ?>;
840 max-width: 100%;
843 #fieldset_add_user_login span.options input {
844 width: auto;
847 #fieldset_user_priv div.item {
848 float: <?php echo $left; ?>;
849 width: 9em;
850 max-width: 100%;
853 #fieldset_user_priv div.item div.item {
854 float: none;
857 #fieldset_user_priv div.item label {
858 white-space: nowrap;
861 #fieldset_user_priv div.item select {
862 width: 100%;
865 #fieldset_user_global_rights fieldset {
866 float: <?php echo $left; ?>;
868 /* END user privileges */
871 /* serverstatus */
872 div#serverstatus table caption a.top {
873 float: <?php echo $right; ?>;
876 div#serverstatus div#serverstatusqueriesdetails table,
877 div#serverstatus table#serverstatustraffic,
878 div#serverstatus table#serverstatusconnections {
879 float: <?php echo $left; ?>;
882 #serverstatussection,
883 .clearfloat {
884 clear: both;
886 div#serverstatussection table {
887 width: 100%;
888 margin-bottom: 1em;
890 div#serverstatussection table .name {
891 width: 18em;
893 div#serverstatussection table .value {
894 width: 6em;
897 div#serverstatus table tbody td.descr a,
898 div#serverstatus table .tblFooters a {
899 white-space: nowrap;
901 div#serverstatus div#statuslinks a:before,
902 div#serverstatus div#sectionlinks a:before,
903 div#serverstatus table tbody td.descr a:before,
904 div#serverstatus table .tblFooters a:before {
905 content: '[';
907 div#serverstatus div#statuslinks a:after,
908 div#serverstatus div#sectionlinks a:after,
909 div#serverstatus table tbody td.descr a:after,
910 div#serverstatus table .tblFooters a:after {
911 content: ']';
913 /* end serverstatus */
915 /* querywindow */
916 body#bodyquerywindow {
917 margin: 0;
918 padding: 0;
919 background-image: none;
920 background-color: #F5F5F5;
923 div#querywindowcontainer {
924 margin: 0;
925 padding: 0;
926 width: 100%;
929 div#querywindowcontainer fieldset {
930 margin-top: 0;
932 /* END querywindow */
935 /* querybox */
937 div#sqlquerycontainer {
938 float: <?php echo $left; ?>;
939 width: 69%;
940 /* height: 15em; */
943 div#tablefieldscontainer {
944 float: <?php echo $right; ?>;
945 width: 29%;
946 /* height: 15em; */
949 div#tablefieldscontainer select {
950 width: 100%;
951 /* height: 12em; */
954 textarea#sqlquery {
955 width: 100%;
956 /* height: 100%; */
959 div#queryboxcontainer div#bookmarkoptions {
960 margin-top: 0.5em;
962 /* end querybox */
964 /* main page */
965 #maincontainer {
966 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png);
967 background-position: <?php echo $right; ?> bottom;
968 background-repeat: no-repeat;
969 border-bottom: 1px solid silver;
972 #mysqlmaininformation,
973 #pmamaininformation {
974 float: <?php echo $left; ?>;
975 width: 49%;
978 #maincontainer ul {
979 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>item_<?php echo $GLOBALS['text_dir']; ?>.png);
980 vertical-align: middle;
983 #maincontainer li {
984 margin-bottom: 0.3em;
986 /* END main page */
989 <?php if ($GLOBALS['cfg']['MainPageIconic']) { ?>
990 /* iconic view for ul items */
991 li#li_create_database {
992 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png);
995 li#li_select_lang {
996 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
999 li#li_select_mysql_collation,
1000 li#li_select_mysql_charset {
1001 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
1004 li#li_select_theme{
1005 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
1008 li#li_server_info{
1009 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
1012 li#li_user_info{
1013 /* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
1016 li#li_mysql_status{
1017 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png);
1020 li#li_mysql_variables{
1021 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png);
1024 li#li_mysql_processes{
1025 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png);
1028 li#li_mysql_collations{
1029 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
1032 li#li_mysql_engines{
1033 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png);
1036 li#li_mysql_binlogs {
1037 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png);
1040 li#li_mysql_databases {
1041 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png);
1044 li#li_export {
1045 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png);
1048 li#li_import {
1049 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png);
1052 li#li_change_password {
1053 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png);
1056 li#li_log_out {
1057 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
1060 li#li_pma_docs {
1061 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
1064 li#li_phpinfo {
1065 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png);
1068 li#li_pma_homepage {
1069 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_home.png);
1072 li#li_mysql_privilegs{
1073 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png);
1076 li#li_switch_dbstats {
1077 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png);
1080 li#li_flush_privileges {
1081 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png);
1083 /* END iconic view for ul items */
1084 <?php } /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?>
1087 #body_browse_foreigners {
1088 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
1089 margin: 0.5em 0.5em 0 0.5em;
1092 #bodyquerywindow {
1093 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
1096 #bodythemes {
1097 width: 500px;
1098 margin: auto;
1099 text-align: center;
1102 #bodythemes img {
1103 border: 0.1em solid black;
1106 #bodythemes a:hover img {
1107 border: 0.1em solid red;
1110 #fieldset_select_fields {
1111 float: <?php echo $left; ?>;
1114 #selflink {
1115 clear: both;
1116 display: block;
1117 margin-top: 1em;
1118 margin-bottom: 1em;
1119 width: 100%;
1120 border-top: 0.1em solid silver;
1121 text-align: <?php echo $right; ?>;
1124 #table_innodb_bufferpool_usage,
1125 #table_innodb_bufferpool_activity {
1126 float: <?php echo $left; ?>;
1129 #div_mysql_charset_collations table {
1130 float: <?php echo $left; ?>;
1133 #div_table_order {
1134 min-width: 48%;
1135 float: <?php echo $left; ?>;
1138 #div_table_rename {
1139 min-width: 48%;
1140 float: <?php echo $left; ?>;
1143 #div_table_copy {
1144 min-width: 48%;
1145 float: <?php echo $left; ?>;
1148 #div_table_options {
1149 clear: both;
1150 min-width: 48%;
1151 float: <?php echo $left; ?>;
1154 #qbe_div_table_list {
1155 float: <?php echo $left; ?>;
1158 #qbe_div_sql_query {
1159 float: <?php echo $left; ?>;
1162 label.desc {
1163 width: 30em;
1164 float: <?php echo $left; ?>;