Adjust themes to make them work with current head.
[phpmyadmin-themes.git] / crimson_gray / css / theme_right.css.php
blobdd586949a1adc289115f72e3ebf65febb0f00766
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * main css file from theme Crimson-Gray
6 * @version $Id$
7 * @package phpMyAdmin-theme
8 * @subpackage Crimson-Gray
9 */
11 // unplanned execution path
12 if (!defined('PMA_MINIMUM_COMMON')) {
13 exit();
16 /******************************************************************************/
17 /* general tags */
18 html {
19 font-size: <?php echo (null !== $GLOBALS['PMA_Config']->get('fontsize') ? $_SESSION['PMA_Config']->get('fontsize') : (
20 isset($_COOKIE['pma_fontsize']) ? $_COOKIE['pma_fontsize'] : '84%'));?>;
23 input, select, textarea {
24 font-size: 1em;
27 body {
28 <?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
29 font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
30 <?php } ?>
31 padding: 0;
32 margin: 0.5em;
33 color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
34 background: <?php echo (isset($_SESSION['tmp_user_values']['custom_color']) ? $_SESSION['tmp_user_values']['custom_color'] : $GLOBALS['cfg']['MainBackground']); ?>;
37 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
38 textarea, tt, pre, code {
39 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
41 <?php } ?>
42 h1 {
43 font-size: 140%;
44 font-weight: bold;
47 h2 {
48 font-size: 120%;
49 font-weight: bold;
52 h3 {
53 font-weight: bold;
56 a:link,
57 a:visited,
58 a:active {
59 text-decoration: none;
60 color: #AA0000
63 a:hover {
64 text-decoration: underline;
65 color: #CC0000;
68 dfn {
69 font-style: normal;
72 dfn:hover {
73 font-style: normal;
74 cursor: help;
77 th {
78 font-weight: bold;
79 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
80 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
83 a img {
84 border: 0;
87 hr {
88 color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
89 background-color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
90 border: 0;
91 height: 1px;
94 form {
95 padding: 0;
96 margin: 0;
97 display: inline;
100 textarea {
101 overflow: visible;
102 height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
105 fieldset {
106 margin-top: 1em;
107 border: <?php echo $GLOBALS['cfg']['MainColor']; ?> solid 1px;
108 padding: 0.5em;
109 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
112 fieldset fieldset {
113 margin: 0.8em;
116 fieldset legend {
117 font-weight: bold;
118 color: #444444;
119 background-color: <?php echo ('OPERA' != PMA_USR_BROWSER_AGENT && 'OTHER' != PMA_USR_BROWSER_AGENT) ? 'transparent' : $GLOBALS['cfg']['BgOne']. '; border: 1px solid #000; border-bottom: none;' ; ?>
122 /* buttons in some browsers (eg. Konqueror) are block elements,
123 this breaks design */
124 button {
125 display: inline;
128 table caption,
129 table th,
130 table td {
131 padding: 0.1em 0.5em 0.1em 0.5em;
132 margin: 0.1em;
133 vertical-align: top;
136 img,
137 input,
138 select,
139 button {
140 vertical-align: middle;
144 /******************************************************************************/
145 /* classes */
146 div.tools {
147 border: 1px solid #000000;
148 padding: 0.2em;
151 div.tools,
152 fieldset.tblFooters {
153 margin-top: 0;
154 margin-bottom: 0.5em;
155 /* avoid a thick line since this should be used under another fieldset */
156 border-top: 0;
157 text-align: <?php echo $left; ?>;
158 float: none;
159 clear: both;
162 fieldset .formelement {
163 float: <?php echo $left; ?>;
164 margin-<?php echo $right; ?>: 0.5em;
165 /* IE */
166 white-space: nowrap;
169 /* revert for Gecko */
170 fieldset div[class=formelement] {
171 white-space: normal;
174 button.mult_submit {
175 border: none;
176 background-color: transparent;
179 /* odd items 1,3,5,7,... */
180 table tr.odd th,
181 .odd {
182 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
185 /* even items 2,4,6,8,... */
186 table tr.even th,
187 .even {
188 background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
191 /* odd table rows 1,3,5,7,... */
192 table tr.odd th,
193 table tr.odd,
194 table tr.even th,
195 table tr.even {
196 text-align: <?php echo $left; ?>;
199 <?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
200 /* marked table rows */
201 table tr.marked th,
202 table tr.marked {
203 background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
204 color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
206 <?php } ?>
208 <?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?>
209 /* hovered items */
210 .odd:hover,
211 .even:hover,
212 .hover {
213 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
214 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
217 /* hovered table rows */
218 table tr.odd:hover th,
219 table tr.even:hover th,
220 table tr.hover th {
221 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
222 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
224 <?php } ?>
227 * marks table rows/cells if the db field is in a where condition
229 tr.condition th,
230 tr.condition td,
231 td.condition,
232 th.condition {
233 border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
236 table .value {
237 text-align: <?php echo $right; ?>;
238 white-space: normal;
240 /* IE doesnt handles 'pre' right */
241 table [class=value] {
242 white-space: normal;
246 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
247 .value {
248 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
250 <?php } ?>
251 .value .attention {
252 color: red;
253 font-weight: bold;
255 .value .allfine {
256 color: green;
260 img.lightbulb {
261 cursor: pointer;
264 .pdflayout {
265 overflow: hidden;
266 clip: inherit;
267 background-color: #FFFFFF;
268 display: none;
269 border: 1px solid #000000;
270 position: relative;
273 .pdflayout_table {
274 background: #D3DCE3;
275 color: #000000;
276 overflow: hidden;
277 clip: inherit;
278 z-index: 2;
279 display: inline;
280 visibility: inherit;
281 cursor: move;
282 position: absolute;
283 font-size: 80%;
284 border: 1px dashed #000000;
287 /* MySQL Parser */
288 .syntax {
289 font-size: 80%;
292 .syntax_comment {
293 padding-left: 4pt;
294 padding-right: 4pt;
297 .syntax_digit {
300 .syntax_digit_hex {
303 .syntax_digit_integer {
306 .syntax_digit_float {
309 .syntax_punct {
312 .syntax_alpha {
315 .syntax_alpha_columnType {
316 text-transform: uppercase;
319 .syntax_alpha_columnAttrib {
320 text-transform: uppercase;
323 .syntax_alpha_reservedWord {
324 text-transform: uppercase;
325 font-weight: bold;
328 .syntax_alpha_functionName {
329 text-transform: uppercase;
332 .syntax_alpha_identifier {
335 .syntax_alpha_charset {
338 .syntax_alpha_variable {
341 .syntax_quote {
342 white-space: pre;
345 .syntax_quote_backtick {
348 /* leave some space between icons and text */
349 .icon {
350 vertical-align: middle;
351 margin-right: 0.3em;
352 margin-left: 0.3em;
354 /* no extra space in table cells */
355 td .icon {
356 margin: 0;
359 .selectallarrow {
360 margin-<?php echo $right; ?>: 0.3em;
361 margin-<?php echo $left; ?>: 0.6em;
364 /* message boxes: warning, error, confirmation */
365 .success h1,
366 .notice h1,
367 .warning h1,
368 div.error h1 {
369 border-bottom: 2px solid;
370 font-weight: bold;
371 text-align: <?php echo $left; ?>;
372 margin: 0 0 0.2em 0;
375 div.success,
376 div.notice,
377 div.warning,
378 div.error {
379 margin: 0.3em 0 0 0;
380 border: 2px solid;
381 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
382 background-repeat: no-repeat;
383 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
384 background-position: 10px 50%;
385 padding: 0.1em 0.1em 0.1em 36px;
386 <?php } else { ?>
387 background-position: 99% 50%;
388 padding: 10px 5% 10px 10px;
389 <?php } ?>
390 <?php } else { ?>
391 padding: 0.3em;
392 <?php } ?>
395 .success {
396 color: #000000;
397 background-color: #f0fff0;
399 h1.success,
400 div.success {
401 border-color: #00FF00;
402 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
403 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_success.png);
404 <?php } ?>
406 .success h1 {
407 border-color: #00FF00;
410 .notice {
411 color: #000000;
412 background-color: #FFFFDD;
414 h1.notice,
415 div.notice {
416 border-color: #FFD700;
417 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
418 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
419 <?php } ?>
421 .notice h1 {
422 border-bottom: 0.1em solid #FFD700;
425 .warning {
426 color: #202020;
427 background-color: #FFFFCC;
429 p.warning,
430 h1.warning,
431 div.warning {
432 border-color: #CC0000;
433 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
434 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
435 <?php } ?>
437 .warning h1 {
438 border-color: #cc0000;
441 .error {
442 background-color: #FFFFCC;
443 color: #ff0000;
446 h1.error,
447 div.error {
448 border-color: #ff0000;
449 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
450 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
451 <?php } ?>
453 div.error h1 {
454 border-bottom: 0.1em solid #ff0000;
457 .confirmation {
458 background-color: #FFFFCC;
460 fieldset.confirmation {
461 border: 0.1em solid #FF0000;
463 fieldset.confirmation legend {
464 border-left: 0.1em solid #FF0000;
465 border-right: 0.1em solid #FF0000;
466 font-weight: bold;
467 <?php if ($GLOBALS['cfg']['ErrorIconic']) { ?>
468 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_really.png);
469 background-repeat: no-repeat;
470 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
471 background-position: 5px 50%;
472 padding: 0.2em 0.2em 0.2em 25px;
473 <?php } else { ?>
474 background-position: 97% 50%;
475 padding: 0.2em 25px 0.2em 0.2em;
476 <?php } ?>
477 <?php } ?>
479 /* end messageboxes */
482 .tblcomment {
483 font-size: 70%;
484 font-weight: normal;
485 color: #000099;
488 .tblHeaders {
489 font-weight: bold;
490 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
491 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
494 div.tools,
495 .tblFooters {
496 font-weight: normal;
497 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
498 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
501 .tblHeaders a:link,
502 .tblHeaders a:active,
503 .tblHeaders a:visited,
504 div.tools a:link,
505 div.tools a:visited,
506 div.tools a:active,
507 .tblFooters a:link,
508 .tblFooters a:active,
509 .tblFooters a:visited {
510 color: #AA0000;
513 .tblHeaders a:hover,
514 div.tools a:hover,
515 .tblFooters a:hover {
516 color: #AA0000;
519 /* forbidden, no privilegs */
520 .noPrivileges {
521 color: #FF0000;
522 font-weight: bold;
525 /* disabled text */
526 .disabled,
527 .disabled a:link,
528 .disabled a:active,
529 .disabled a:visited {
530 color: #666666;
533 .disabled a:hover {
534 color: #666666;
535 text-decoration: none;
538 tr.disabled td,
539 td.disabled {
540 background-color: #cccccc;
544 * login form
546 body.loginform h1,
547 body.loginform a.logo {
548 display: block;
549 text-align: center;
552 body.loginform {
553 text-align: center;
556 body.loginform div.container {
557 text-align: <?php echo $left; ?>;
558 width: 20em;
559 margin: 0 auto;
562 form.login label {
563 float: <?php echo $left; ?>;
564 font-weight: bolder;
565 clear: <?php echo $left; ?>;
566 margin: 1px 0 2px 0;
569 form.login input {
570 float: <?php echo $left; ?>;
571 clear: <?php echo $left; ?>;
574 .login .textfield, .loginform select {
575 width: 98%;
578 #input_go, #buttonGo, #queryboxfooter input, input[type=submit] {
579 min-width: 75px;
582 /******************************************************************************/
583 /* specific elements */
585 /* topmenu */
586 ul#topmenu {
587 font-weight: bold;
588 list-style-type: none;
589 margin: 0;
590 padding: 0;
593 ul#topmenu li {
594 float: <?php echo $left; ?>;
595 margin: 0;
596 padding: 0;
597 vertical-align: middle;
600 #topmenu img {
601 vertical-align: middle;
602 margin-<?php echo $right; ?>: 0.1em;
605 /* default tab styles */
606 .tab, .tabcaution, .tabactive {
607 display: block;
608 margin: 0.2em 0.2em 0 0.2em;
609 padding: 0.2em 0.2em 0 0.2em;
610 white-space: nowrap;
613 /* disabled tabs */
614 span.tab {
615 color: #666666;
618 /* disabled drop/empty tabs */
619 span.tabcaution {
620 color: #ff6666;
623 /* enabled drop/empty tabs */
624 a.tabcaution {
625 color: #FF0000;
627 a.tabcaution:hover {
628 color: #FFFFFF;
629 background-color: #FF0000;
632 <?php if ($GLOBALS['cfg']['LightTabs']) { ?>
633 /* active tab */
634 a.tabactive {
635 color: black;
637 <?php } else { ?>
638 #topmenu {
639 margin-top: 0.5em;
640 padding: 0.1em 0.3em 0.1em 0.3em;
643 ul#topmenu li {
644 border-bottom: 1pt solid black;
647 /* default tab styles */
648 .tab, .tabcaution, .tabactive {
649 background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
650 border: 1pt solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
651 border-bottom: 0;
652 border-top-left-radius: 0.4em;
653 border-top-right-radius: 0.4em;
656 /* enabled hover/active tabs */
657 a.tab:hover,
658 a.tabcaution:hover,
659 .tabactive,
660 .tabactive:hover {
661 margin: 0;
662 padding: 0.2em 0.4em 0.2em 0.4em;
663 text-decoration: none;
666 a.tab:hover,
667 .tabactive {
668 background-color: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
671 /* to be able to cancel the bottom border, use <li class="active"> */
672 ul#topmenu li.active {
673 border-bottom: 1pt solid <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
676 /* disabled drop/empty tabs */
677 span.tab,
678 a.warning,
679 span.tabcaution {
680 cursor: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
682 <?php } ?>
683 /* end topmenu */
686 /* Calendar */
687 table.calendar {
688 width: 100%;
690 table.calendar td {
691 text-align: center;
693 table.calendar td a {
694 display: block;
697 table.calendar td a:hover {
698 background-color: #CCFFCC;
701 table.calendar th {
702 background-color: #D3DCE3;
705 table.calendar td.selected {
706 background-color: #FFCC99;
709 img.calendar {
710 border: none;
712 form.clock {
713 text-align: center;
715 /* end Calendar */
718 /* table stats */
719 div#tablestatistics {
720 border-bottom: 0.1em solid #669999;
721 margin-bottom: 0.5em;
722 padding-bottom: 0.5em;
725 div#tablestatistics table {
726 float: <?php echo $left; ?>;
727 margin-bottom: 0.5em;
728 margin-<?php echo $right; ?>: 0.5em;
731 div#tablestatistics table caption {
732 margin-<?php echo $right; ?>: 0.5em;
734 /* END table stats */
737 /* server privileges */
738 #tableuserrights td,
739 #tablespecificuserrights td,
740 #tabledatabases td {
741 vertical-align: middle;
743 /* END server privileges */
747 /* Heading */
748 #serverinfo {
749 font-weight: bold;
750 margin-bottom: 0.5em;
753 #serverinfo .item {
754 white-space: nowrap;
757 #span_table_comment {
758 font-weight: normal;
759 font-style: italic;
760 white-space: nowrap;
763 #serverinfo img {
764 margin: 0 0.1em 0 0.2em;
768 #textSQLDUMP {
769 width: 95%;
770 height: 95%;
771 font-family: "Courier New", Courier, mono;
772 font-size: 110%;
775 #TooltipContainer {
776 position: absolute;
777 z-index: 99;
778 width: 20em;
779 height: auto;
780 overflow: visible;
781 visibility: hidden;
782 background-color: #ffffcc;
783 color: #006600;
784 border: 0.1em solid #000000;
785 padding: 0.5em;
788 /* user privileges */
789 #fieldset_add_user_login div.item {
790 border-bottom: 1px solid silver;
791 padding-bottom: 0.3em;
792 margin-bottom: 0.3em;
795 #fieldset_add_user_login label {
796 float: <?php echo $left; ?>;
797 display: block;
798 width: 10em;
799 max-width: 100%;
800 text-align: <?php echo $right; ?>;
801 padding-<?php echo $right; ?>: 0.5em;
804 #fieldset_add_user_login span.options #select_pred_username,
805 #fieldset_add_user_login span.options #select_pred_hostname,
806 #fieldset_add_user_login span.options #select_pred_password {
807 width: 100%;
808 max-width: 100%;
811 #fieldset_add_user_login span.options {
812 float: <?php echo $left; ?>;
813 display: block;
814 width: 12em;
815 max-width: 100%;
816 padding-<?php echo $right; ?>: 0.5em;
819 #fieldset_add_user_login input {
820 width: 12em;
821 clear: <?php echo $right; ?>;
822 max-width: 100%;
825 #fieldset_add_user_login span.options input {
826 width: auto;
829 #fieldset_user_priv div.item {
830 float: <?php echo $left; ?>;
831 width: 9em;
832 max-width: 100%;
835 #fieldset_user_priv div.item div.item {
836 float: none;
839 #fieldset_user_priv div.item label {
840 white-space: nowrap;
843 #fieldset_user_priv div.item select {
844 width: 100%;
847 #fieldset_user_global_rights fieldset {
848 float: <?php echo $left; ?>;
850 /* END user privileges */
853 /* serverstatus */
854 div#serverstatus table caption a.top {
855 float: <?php echo $left; ?>;
858 div#serverstatus div#serverstatusqueriesdetails table,
859 div#serverstatus table#serverstatustraffic,
860 div#serverstatus table#serverstatusconnections {
861 float: <?php echo $left; ?>;
864 #serverstatussection,
865 .clearfloat {
866 clear: both;
868 div#serverstatussection table {
869 width: 100%;
870 margin-bottom: 1em;
872 div#serverstatussection table .name {
873 width: 18em;
875 div#serverstatussection table .value {
876 width: 6em;
879 div#serverstatus table tbody td.descr a,
880 div#serverstatus table .tblFooters a {
881 white-space: nowrap;
883 div#serverstatus div#statuslinks a:before,
884 div#serverstatus div#sectionlinks a:before,
885 div#serverstatus table tbody td.descr a:before,
886 div#serverstatus table .tblFooters a:before {
887 content: '[';
889 div#serverstatus div#statuslinks a:after,
890 div#serverstatus div#sectionlinks a:after,
891 div#serverstatus table tbody td.descr a:after,
892 div#serverstatus table .tblFooters a:after {
893 content: ']';
895 /* end serverstatus */
897 /* querywindow */
898 body#bodyquerywindow {
899 margin: 0;
900 padding: 0;
901 background-image: none;
902 background-color: #F5F5F5;
905 div#querywindowcontainer {
906 margin: 0;
907 padding: 0;
908 width: 100%;
911 div#querywindowcontainer fieldset {
912 margin-top: 0;
914 /* END querywindow */
917 /* querybox */
919 div#sqlquerycontainer {
920 float: <?php echo $left; ?>;
921 width: 69%;
922 /* height: 15em; */
925 div#tablefieldscontainer {
926 float: <?php echo $right; ?>;
927 width: 29%;
928 /* height: 15em; */
931 div#tablefieldscontainer select {
932 width: 100%;
933 /* height: 12em; */
936 textarea#sqlquery {
937 width: 100%;
938 /* height: 100%; */
941 div#queryboxcontainer div#bookmarkoptions {
942 margin-top: 0.5em;
944 /* end querybox */
946 /* main page */
947 #maincontainer {
948 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png);
949 background-position: <?php echo $right; ?> bottom;
950 background-repeat: no-repeat;
953 #mysqlmaininformation,
954 #pmamaininformation {
955 float: <?php echo $left; ?>;
956 width: 49%;
959 #maincontainer ul {
960 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>item_<?php echo $GLOBALS['text_dir']; ?>.png);
961 vertical-align: middle;
964 #maincontainer li {
965 margin-bottom: 0.3em;
967 /* END main page */
970 <?php if ($GLOBALS['cfg']['MainPageIconic']) { ?>
971 /* iconic view for ul items */
972 li#li_create_database {
973 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png);
976 li#li_select_lang {
977 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
980 li#li_select_mysql_collation,
981 li#li_select_mysql_charset {
982 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
985 li#li_select_theme{
986 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
989 li#li_server_info,
990 li#li_server_version{
991 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
994 li#li_user_info{
995 /* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
998 li#li_mysql_status{
999 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png);
1002 li#li_mysql_variables{
1003 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png);
1006 li#li_mysql_processes{
1007 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png);
1010 li#li_mysql_collations{
1011 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
1014 li#li_mysql_engines{
1015 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png);
1018 li#li_mysql_binlogs {
1019 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png);
1022 li#li_mysql_databases {
1023 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png);
1026 li#li_export {
1027 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png);
1030 li#li_import {
1031 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png);
1034 li#li_change_password {
1035 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png);
1038 li#li_log_out {
1039 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
1042 li#li_pma_docs,
1043 li#li_pma_wiki {
1044 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
1047 li#li_phpinfo {
1048 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png);
1051 li#li_pma_homepage {
1052 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_home.png);
1055 li#li_mysql_privilegs{
1056 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png);
1059 li#li_switch_dbstats {
1060 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png);
1063 li#li_flush_privileges {
1064 list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png);
1066 /* END iconic view for ul items */
1067 <?php } /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?>
1070 #body_browse_foreigners {
1071 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
1072 margin: 0.5em 0.5em 0 0.5em;
1075 #bodyquerywindow {
1076 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
1079 #bodythemes {
1080 width: 500px;
1081 margin: auto;
1082 text-align: center;
1085 #bodythemes img {
1086 border: 0.1em solid black;
1089 #bodythemes a:hover img {
1090 border: 0.1em solid red;
1093 #fieldset_select_fields {
1094 float: <?php echo $left; ?>;
1097 #selflink {
1098 clear: both;
1099 display: block;
1100 margin-top: 1em;
1101 margin-bottom: 1em;
1102 width: 100%;
1103 border-top: 0.1em solid silver;
1104 text-align: <?php echo $left; ?>;
1107 #table_innodb_bufferpool_usage,
1108 #table_innodb_bufferpool_activity {
1109 float: <?php echo $left; ?>;
1112 #div_mysql_charset_collations table {
1113 float: <?php echo $left; ?>;
1116 #div_table_order {
1117 min-width: 48%;
1118 float: <?php echo $left; ?>;
1121 #div_table_rename {
1122 min-width: 48%;
1123 float: <?php echo $left; ?>;
1126 #div_table_copy,
1127 #div_partition_maintenance,
1128 #div_referential_integrity,
1129 #div_table_maintenance {
1130 min-width: 48%;
1131 float: <?php echo $left; ?>;
1134 #div_table_options {
1135 clear: both;
1136 min-width: 48%;
1137 float: <?php echo $left; ?>;
1140 #qbe_div_table_list {
1141 float: <?php echo $left; ?>;
1144 #qbe_div_sql_query {
1145 float: <?php echo $left; ?>;
1148 label.desc {
1149 width: 30em;
1150 float: <?php echo $left; ?>;
1153 code.sql {
1154 display: block;
1155 padding: 0.3em;
1156 margin-top: 0;
1157 margin-bottom: 0;
1158 border: <?php echo $GLOBALS['cfg']['MainColor']; ?> solid 1px;
1159 border-top: 0;
1160 border-bottom: 0;
1161 max-height: 10em;
1162 overflow: auto;
1163 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
1166 #main_pane_left {
1167 width: 60%;
1168 float: <?php echo $left; ?>;
1169 padding-top: 1em;
1172 #main_pane_right {
1173 margin-<?php echo $left; ?>: 60%;
1174 padding-top: 1em;
1175 padding-<?php echo $left; ?>: 1em;
1178 .group {
1179 border-<?php echo $left; ?>: 1px solid <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
1180 margin-bottom: 1em;
1183 .group h2 {
1184 background-color: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
1185 color: #404040;
1186 padding: 0.1em 0.3em;
1187 margin-top: 0;
1190 #li_select_server {
1191 padding-bottom: 0.3em;
1192 border-bottom: 0.3em solid <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
1193 margin-bottom: 0.3em;