Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / themes / original / css / common.css.php
blob45bd562074dcd7a4de1209c338f1e5d5d8305486
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Common styles for the original theme
6 * @package PhpMyAdmin-theme
7 * @subpackage Original
8 */
10 // unplanned execution path
11 if (! defined('PMA_MINIMUM_COMMON') && ! defined('TESTSUITE')) {
12 exit();
15 /******************************************************************************/
17 /* general tags */
18 html {
19 font-size: <?php echo $_SESSION['PMA_Theme']->getFontSize(); ?>
22 input,
23 select,
24 textarea {
25 font-size: 1em;
29 body {
30 <?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?>
31 font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>;
32 <?php } ?>
33 padding: 0;
34 margin: 0;
35 margin-<?php echo $left; ?>: 240px;
36 color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
37 background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
40 body#loginform {
41 margin: 0;
44 #page_content {
45 margin: 0 .5em;
48 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
49 textarea, tt, pre, code {
50 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
52 <?php } ?>
53 h1 {
54 font-size: 140%;
55 font-weight: bold;
58 h2 {
59 font-size: 120%;
60 font-weight: bold;
63 h3 {
64 font-weight: bold;
67 a, a:link,
68 a:visited,
69 a:active {
70 text-decoration: none;
71 color: #0000FF;
72 cursor: pointer;
75 a:hover {
76 text-decoration: underline;
77 color: #FF0000;
80 dfn {
81 font-style: normal;
84 dfn:hover {
85 font-style: normal;
86 cursor: help;
89 th {
90 font-weight: bold;
91 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
92 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
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 textarea.char {
118 height: <?php echo ceil($GLOBALS['cfg']['CharTextareaRows'] * 1.2); ?>em;
121 fieldset {
122 margin-top: 1em;
123 border: <?php echo $GLOBALS['cfg']['MainColor']; ?> solid 1px;
124 padding: 0.5em;
125 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
128 fieldset fieldset {
129 margin: 0.8em;
132 fieldset legend {
133 font-weight: bold;
134 color: #444444;
135 background-color: <?php echo 'OPERA' != PMA_USR_BROWSER_AGENT ? 'transparent' : $GLOBALS['cfg']['BgOne']; ?>;
138 .some-margin {
139 margin: .5em;
140 margin-top: 1em;
143 /* buttons in some browsers (eg. Konqueror) are block elements,
144 this breaks design */
145 button {
146 display: inline;
149 table caption,
150 table th,
151 table td {
152 padding: 0.1em 0.5em 0.1em 0.5em;
153 margin: 0.1em;
154 vertical-align: top;
157 img,
158 input,
159 select,
160 button {
161 vertical-align: middle;
164 /******************************************************************************/
165 /* classes */
166 .clearfloat {
167 clear: both;
170 .floatleft {
171 float: <?php echo $left; ?>;
172 margin-<?php echo $right; ?>: 1em;
175 table.nospacing {
176 border-spacing: 0;
179 table.nopadding tr th, table.nopadding tr td {
180 padding: 0;
183 th.left, td.left {
184 text-align: left;
187 th.center, td.center {
188 text-align: center;
191 th.right, td.right {
192 text-align: right;
195 tr.vtop, th.vtop, td.vtop {
196 vertical-align: top;
199 tr.vmiddle, th.vmiddle, td.vmiddle {
200 vertical-align: middle;
203 tr.vbottom, th.vbottom, td.vbottom {
204 vertical-align: bottom;
207 .paddingtop {
208 padding-top: 1em;
211 div.tools {
212 border: 1px solid #000000;
213 padding: 0.2em;
216 div.tools,
217 fieldset.tblFooters {
218 margin-top: 0;
219 margin-bottom: 0.5em;
220 /* avoid a thick line since this should be used under another fieldset */
221 border-top: 0;
222 text-align: <?php echo $right; ?>;
223 float: none;
224 clear: both;
227 div.null_div {
228 height: 20px;
229 text-align: center;
230 font-style:normal;
231 min-width:50px;
234 fieldset .formelement {
235 float: <?php echo $left; ?>;
236 margin-<?php echo $right; ?>: 0.5em;
237 /* IE */
238 white-space: nowrap;
241 /* revert for Gecko */
242 fieldset div[class=formelement] {
243 white-space: normal;
246 button.mult_submit {
247 border: none;
248 background-color: transparent;
251 /* odd items 1,3,5,7,... */
252 table tr.odd th,
253 .odd {
254 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
257 /* even items 2,4,6,8,... */
258 table tr.even th,
259 .even {
260 background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
263 /* odd table rows 1,3,5,7,... */
264 table tr.odd th,
265 table tr.odd,
266 table tr.even th,
267 table tr.even {
268 text-align: <?php echo $left; ?>;
271 <?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
272 /* marked table rows */
273 td.marked,
274 table tr.marked td,
275 table tr.marked th,
276 table tr.marked {
277 background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
278 color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
280 <?php } ?>
282 <?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?>
283 /* hovered items */
284 .odd:hover,
285 .even:hover,
286 .hover {
287 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
288 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
291 /* hovered table rows */
292 table tr.odd:hover th,
293 table tr.even:hover th,
294 table tr.hover th {
295 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
296 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
298 <?php } ?>
301 * marks table rows/cells if the db field is in a where condition
303 td.condition,
304 th.condition {
305 border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
309 * cells with the value NULL
311 td.null {
312 font-style: italic;
313 text-align: <?php echo $right; ?>;
316 table .valueHeader {
317 text-align: <?php echo $right; ?>;
318 white-space: normal;
320 table .value {
321 text-align: <?php echo $right; ?>;
322 white-space: normal;
324 /* IE doesnt handles 'pre' right */
325 table [class=value] {
326 white-space: normal;
330 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?>
331 .value {
332 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>;
334 <?php } ?>
335 .attention {
336 color: red;
337 font-weight: bold;
339 .allfine {
340 color: green;
344 img.lightbulb {
345 cursor: pointer;
348 .pdflayout {
349 overflow: hidden;
350 clip: inherit;
351 background-color: #FFFFFF;
352 display: none;
353 border: 1px solid #000000;
354 position: relative;
357 .pdflayout_table {
358 background: #D3DCE3;
359 color: #000000;
360 overflow: hidden;
361 clip: inherit;
362 z-index: 2;
363 display: inline;
364 visibility: inherit;
365 cursor: move;
366 position: absolute;
367 font-size: 80%;
368 border: 1px dashed #000000;
371 /* MySQL Parser */
372 .syntax {
373 font-size: 80%;
376 .syntax a {
377 text-decoration: none;
378 border-bottom:1px dotted black;
381 .syntax_comment {
382 padding-left: 4pt;
383 padding-right: 4pt;
386 .syntax_digit {
389 .syntax_digit_hex {
392 .syntax_digit_integer {
395 .syntax_digit_float {
398 .syntax_punct {
401 .syntax_alpha {
404 .syntax_alpha_columnType {
405 text-transform: uppercase;
408 .syntax_alpha_columnAttrib {
409 text-transform: uppercase;
412 .syntax_alpha_reservedWord {
413 text-transform: uppercase;
414 font-weight: bold;
417 .syntax_alpha_functionName {
418 text-transform: uppercase;
421 .syntax_alpha_identifier {
424 .syntax_alpha_charset {
427 .syntax_alpha_variable {
430 .syntax_quote {
431 white-space: pre;
434 .syntax_quote_backtick {
437 /* leave some space between icons and text */
438 .icon {
439 vertical-align: middle;
440 margin-right: 0.3em;
441 margin-left: 0.3em;
444 /* no extra space in table cells */
445 td .icon {
446 margin: 0;
449 .selectallarrow {
450 margin-<?php echo $right; ?>: 0.3em;
451 margin-<?php echo $left; ?>: 0.6em;
454 /* message boxes: error, confirmation */
455 #pma_errors {
456 padding: 0 0.5em;
459 .success h1,
460 .notice h1,
461 div.error h1 {
462 border-bottom: 2px solid;
463 font-weight: bold;
464 text-align: <?php echo $left; ?>;
465 margin: 0 0 0.2em 0;
468 div.success,
469 div.notice,
470 div.error {
471 margin: 0.3em 0 0 0;
472 border: 2px solid;
473 background-repeat: no-repeat;
474 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
475 background-position: 10px 50%;
476 padding: 0.1em 0.1em 0.1em 36px;
477 <?php } else { ?>
478 background-position: 99% 50%;
479 padding: 0.1em 46px 0.1em 0.1em;
480 <?php } ?>
483 .success {
484 color: #000000;
485 background-color: #f0fff0;
487 h1.success,
488 div.success {
489 border-color: #00FF00;
491 .success h1 {
492 border-color: #00FF00;
495 .notice {
496 color: #000000;
497 background-color: #FFFFDD;
499 h1.notice,
500 div.notice {
501 border-color: #FFD700;
503 .notice h1 {
504 border-color: #FFD700;
507 .error {
508 background-color: #FFFFCC;
509 color: #ff0000;
512 h1.error,
513 div.error {
514 border-color: #ff0000;
516 div.error h1 {
517 border-color: #ff0000;
520 .confirmation {
521 background-color: #FFFFCC;
523 fieldset.confirmation {
524 border: 0.1em solid #FF0000;
526 fieldset.confirmation legend {
527 border-left: 0.1em solid #FF0000;
528 border-right: 0.1em solid #FF0000;
529 font-weight: bold;
530 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('s_really.png');?>);
531 background-repeat: no-repeat;
532 <?php if ($GLOBALS['text_dir'] === 'ltr') { ?>
533 background-position: 5px 50%;
534 padding: 0.2em 0.2em 0.2em 25px;
535 <?php } else { ?>
536 background-position: 97% 50%;
537 padding: 0.2em 25px 0.2em 0.2em;
538 <?php } ?>
540 /* end messageboxes */
543 .tblcomment {
544 font-size: 70%;
545 font-weight: normal;
546 color: #000099;
549 .tblHeaders {
550 font-weight: bold;
551 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
552 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
555 div.tools,
556 .tblFooters {
557 font-weight: normal;
558 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
559 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
562 .tblHeaders a:link,
563 .tblHeaders a:active,
564 .tblHeaders a:visited,
565 div.tools a:link,
566 div.tools a:visited,
567 div.tools a:active,
568 .tblFooters a:link,
569 .tblFooters a:active,
570 .tblFooters a:visited {
571 color: #0000FF;
574 .tblHeaders a:hover,
575 div.tools a:hover,
576 .tblFooters a:hover {
577 color: #FF0000;
580 /* forbidden, no privilegs */
581 .noPrivileges {
582 color: #FF0000;
583 font-weight: bold;
586 /* disabled text */
587 .disabled,
588 .disabled a:link,
589 .disabled a:active,
590 .disabled a:visited {
591 color: #666666;
594 .disabled a:hover {
595 color: #666666;
596 text-decoration: none;
599 tr.disabled td,
600 td.disabled {
601 background-color: #cccccc;
604 .nowrap {
605 white-space: nowrap;
609 * zoom search
611 div#resizer {
612 width: 600px;
613 height: 400px;
615 div#querychart {
616 float: left;
617 width: 600px;
621 * login form
623 body#loginform h1,
624 body#loginform a.logo {
625 display: block;
626 text-align: center;
629 body#loginform {
630 margin-top: 1em;
631 text-align: center;
634 body#loginform div.container {
635 text-align: <?php echo $left; ?>;
636 width: 30em;
637 margin: 0 auto;
640 form.login label {
641 float: <?php echo $left; ?>;
642 width: 10em;
643 font-weight: bolder;
646 .commented_column {
647 border-bottom: 1px dashed black;
650 .column_attribute {
651 font-size: 70%;
654 /******************************************************************************/
655 /* specific elements */
657 /* topmenu */
658 ul#topmenu, ul#topmenu2, ul.tabs {
659 font-weight: bold;
660 list-style-type: none;
661 margin: 0;
662 padding: 0;
665 ul#topmenu2 {
666 margin: 0.25em 0.5em 0;
667 height: 2em;
668 clear: both;
671 ul#topmenu li, ul#topmenu2 li {
672 float: <?php echo $left; ?>;
673 margin: 0;
674 padding: 0;
675 vertical-align: middle;
678 #topmenu img, #topmenu2 img {
679 vertical-align: middle;
680 margin-<?php echo $right; ?>: 0.1em;
683 /* default tab styles */
684 ul#topmenu a, ul#topmenu span {
685 display: block;
686 margin: 2px 2px 0;
687 padding: 2px 2px 0;
688 white-space: nowrap;
691 ul#topmenu2 a {
692 display: block;
693 margin: 0.1em;
694 padding: 0.2em;
695 white-space: nowrap;
698 fieldset.caution a {
699 color: #FF0000;
701 fieldset.caution a:hover {
702 color: #ffffff;
703 background-color: #FF0000;
706 #topmenu {
707 margin-top: 0.5em;
708 padding: 0.1em 0.3em 0.1em 0.3em;
711 ul#topmenu ul {
712 -moz-box-shadow: 2px 2px 3px #666;
713 -webkit-box-shadow: 2px 2px 3px #666;
714 box-shadow: 2px 2px 3px #666;
717 ul#topmenu > li {
718 border-bottom: 1pt solid black;
721 /* default tab styles */
722 ul#topmenu a, ul#topmenu span {
723 background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
724 border: 0 solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
725 border-width: 1pt 1pt 0 1pt;
726 -moz-border-radius: 0.4em 0.4em 0 0;
727 border-radius: 0.4em 0.4em 0 0;
730 ul#topmenu ul a {
731 border-width: 1pt 0 0 0;
732 -moz-border-radius: 0;
733 border-radius: 0;
736 ul#topmenu ul li:first-child a {
737 border-width: 0;
740 /* enabled hover/active tabs */
741 ul#topmenu > li > a:hover,
742 ul#topmenu > li > .tabactive {
743 margin: 0;
744 padding: 2px 4px;
745 text-decoration: none;
748 ul#topmenu ul a:hover,
749 ul#topmenu ul .tabactive {
750 text-decoration: none;
753 ul#topmenu a.tab:hover,
754 ul#topmenu .tabactive {
755 background-color: <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
758 ul#topmenu2 a.tab:hover,
759 ul#topmenu2 a.tabactive {
760 background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
761 -moz-border-radius: 0.3em;
762 border-radius: 0.3em;
763 text-decoration: none;
766 /* to be able to cancel the bottom border, use <li class="active"> */
767 ul#topmenu > li.active {
768 border-bottom: 1pt solid <?php echo $GLOBALS['cfg']['MainBackground']; ?>;
770 /* end topmenu */
772 /* zoom search */
773 div#dataDisplay input, div#dataDisplay select {
774 margin: 0;
775 margin-<?php echo $right; ?>: 0.5em;
777 div#dataDisplay th {
778 line-height: 2em;
781 /* Calendar */
782 table.calendar {
783 width: 100%;
785 table.calendar td {
786 text-align: center;
788 table.calendar td a {
789 display: block;
792 table.calendar td a:hover {
793 background-color: #CCFFCC;
796 table.calendar th {
797 background-color: #D3DCE3;
800 table.calendar td.selected {
801 background-color: #FFCC99;
804 img.calendar {
805 border: none;
807 form.clock {
808 text-align: center;
810 /* end Calendar */
813 /* table stats */
814 div#tablestatistics table {
815 float: <?php echo $left; ?>;
816 margin-top: 0.5em;
817 margin-bottom: 0.5em;
818 margin-<?php echo $right; ?>: 0.5em;
820 /* END table stats */
823 /* server privileges */
824 #tableuserrights td,
825 #tablespecificuserrights td,
826 #tabledatabases td {
827 vertical-align: middle;
829 /* END server privileges */
833 /* Heading */
834 #topmenucontainer {
835 background: white;
836 padding-<?php echo $right; ?>: 1em;
837 width: 100%;
840 #serverinfo {
841 background: white;
842 font-weight: bold;
843 padding-bottom: 0.5em;
844 width: 10000px;
845 overflow: hidden;
848 #serverinfo .item {
849 white-space: nowrap;
850 float: <?php echo $left; ?>
853 #goto_pagetop {
854 position: fixed;
855 padding: .1em .3em;
856 top: 0;
857 <?php echo $right; ?>: 0;
858 z-index: 900;
859 background: white;
862 #span_table_comment {
863 font-weight: normal;
864 font-style: italic;
865 white-space: nowrap;
868 #serverinfo img {
869 margin: 0 0.1em 0 0.2em;
873 #textSQLDUMP {
874 width: 95%;
875 height: 95%;
876 font-family: "Courier New", Courier, mono;
877 font-size: 110%;
880 #TooltipContainer {
881 position: absolute;
882 z-index: 99;
883 width: 20em;
884 height: auto;
885 overflow: visible;
886 visibility: hidden;
887 background-color: #ffffcc;
888 color: #006600;
889 border: 0.1em solid #000000;
890 padding: 0.5em;
893 /* user privileges */
894 #fieldset_add_user_login div.item {
895 border-bottom: 1px solid silver;
896 padding-bottom: 0.3em;
897 margin-bottom: 0.3em;
900 #fieldset_add_user_login label {
901 float: <?php echo $left; ?>;
902 display: block;
903 width: 10em;
904 max-width: 100%;
905 text-align: <?php echo $right; ?>;
906 padding-<?php echo $right; ?>: 0.5em;
909 #fieldset_add_user_login span.options #select_pred_username,
910 #fieldset_add_user_login span.options #select_pred_hostname,
911 #fieldset_add_user_login span.options #select_pred_password {
912 width: 100%;
913 max-width: 100%;
916 #fieldset_add_user_login span.options {
917 float: <?php echo $left; ?>;
918 display: block;
919 width: 12em;
920 max-width: 100%;
921 padding-<?php echo $right; ?>: 0.5em;
924 #fieldset_add_user_login input {
925 width: 12em;
926 clear: <?php echo $right; ?>;
927 max-width: 100%;
930 #fieldset_add_user_login span.options input {
931 width: auto;
934 #fieldset_user_priv div.item {
935 float: <?php echo $left; ?>;
936 width: 9em;
937 max-width: 100%;
940 #fieldset_user_priv div.item div.item {
941 float: none;
944 #fieldset_user_priv div.item label {
945 white-space: nowrap;
948 #fieldset_user_priv div.item select {
949 width: 100%;
952 #fieldset_user_global_rights fieldset {
953 float: <?php echo $left; ?>;
955 /* END user privileges */
958 /* serverstatus */
960 .linkElem:hover {
961 text-decoration: underline;
962 color: #235a81;
963 cursor: pointer;
966 h3#serverstatusqueries span {
967 font-size:60%;
968 display:inline;
971 img.sortableIcon {
972 float:right;
973 background-repeat:no-repeat;
974 margin:0;
977 .buttonlinks {
978 float: <?php echo $right; ?>;
979 white-space: nowrap;
982 /* Also used for the variables page */
983 fieldset#tableFilter {
984 margin-bottom:1em;
987 div#serverStatusTabs {
988 margin-top:1em;
991 caption a.top {
992 float: <?php echo $right; ?>;
995 div#serverstatusquerieschart {
996 float:<?php echo $left; ?>;
997 width:500px;
998 height:350px;
999 padding-<?php echo $left; ?>: 30px;
1002 div#serverstatus table#serverstatusqueriesdetails {
1003 float: <?php echo $left; ?>;
1006 table#serverstatustraffic {
1007 float: <?php echo $left; ?>;
1009 table#serverstatusconnections {
1010 float: <?php echo $left; ?>;
1011 margin-<?php echo $left; ?>: 30px;
1014 table#serverstatusvariables {
1015 width: 100%;
1016 margin-bottom: 1em;
1018 table#serverstatusvariables .name {
1019 width: 18em;
1020 white-space:nowrap;
1022 table#serverstatusvariables .value {
1023 width: 6em;
1025 table#serverstatusconnections {
1026 float: <?php echo $left; ?>;
1027 margin-<?php echo $left; ?>: 30px;
1030 div#serverstatus table tbody td.descr a,
1031 div#serverstatus table .tblFooters a {
1032 white-space: nowrap;
1035 div.liveChart {
1036 clear:both;
1037 min-width:500px;
1038 height:400px;
1039 padding-bottom:80px;
1042 #addChartDialog input[type="text"] {
1043 margin: 0;
1044 padding:3px;
1047 div#chartVariableSettings {
1048 border:1px solid #ddd;
1049 background-color:#E6E6E6;
1050 margin-left:10px;
1053 table#chartGrid div.monitorChart {
1054 background: #EBEBEB;
1057 div#serverstatus div.tabLinks {
1058 float:<?php echo $left; ?>;
1059 padding-bottom: 10px;
1062 .popupContent {
1063 display: none;
1064 position: absolute;
1065 border: 1px solid #CCC;
1066 margin:0;
1067 padding:3px;
1068 -moz-box-shadow: 1px 1px 6px #ddd;
1069 -webkit-box-shadow: 2px 2px 3px #666;
1070 box-shadow: 2px 2px 3px #666;
1071 background-color:white;
1072 z-index: 2;
1075 div#logTable {
1076 padding-top: 10px;
1077 clear: both;
1080 div#logTable table {
1081 width:100%;
1084 .smallIndent {
1085 padding-left: 7px;
1088 /* end serverstatus */
1090 /* server variables */
1091 #serverVariables {
1092 min-width: 30em;
1094 #serverVariables .var-row > div {
1095 white-space: nowrap;
1096 overflow: hidden;
1097 text-overflow: ellipsis;
1098 line-height: 2em;
1101 #serverVariables .var-header {
1102 font-weight: bold;
1103 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
1104 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
1106 #serverVariables .var-header .var-value {
1107 text-align: <?php echo $left; ?>;
1109 #serverVariables .var-row {
1110 padding: 0.5em;
1111 min-height: 18px;
1113 #serverVariables .var-name {
1114 width: 45%;
1115 float: <?php echo $left; ?>;
1116 font-weight: bold;
1118 #serverVariables .var-name.session {
1119 font-weight: normal;
1120 font-style: italic;
1122 #serverVariables .var-value {
1123 width: 50%;
1124 float: <?php echo $right; ?>;
1125 text-align: <?php echo $right; ?>;
1128 /* server variables editor */
1129 #serverVariables .editLink {
1130 padding-<?php echo $right; ?>: 1em;
1131 float: <?php echo $left; ?>;
1132 font-family: sans-serif;
1134 #serverVariables .serverVariableEditor {
1135 width: 100%;
1136 overflow: hidden;
1138 #serverVariables .serverVariableEditor input {
1139 width: 100%;
1140 margin: 0 0.5em;
1141 box-sizing: border-box;
1142 -ms-box-sizing: border-box;
1143 -moz-box-sizing: border-box;
1144 -webkit-box-sizing: border-box;
1145 height: 2.2em;
1147 #serverVariables .serverVariableEditor div {
1148 display: block;
1149 overflow: hidden;
1150 padding-<?php echo $right; ?>: 1em;
1152 #serverVariables .serverVariableEditor a {
1153 float: <?php echo $right; ?>;
1154 margin: 0 0.5em;
1155 line-height: 2em;
1157 /* end server variables */
1159 /* querywindow */
1160 body#bodyquerywindow {
1161 margin: 0;
1162 padding: 0;
1163 background-image: none;
1164 background-color: #F5F5F5;
1167 div#querywindowcontainer {
1168 margin: 0;
1169 padding: 0;
1170 width: 100%;
1173 div#querywindowcontainer fieldset {
1174 margin-top: 0;
1176 /* END querywindow */
1178 /* profiling */
1180 div#profilingchart {
1181 width: 550px;
1182 height: 370px;
1183 float: left;
1186 /* END profiling */
1188 /* querybox */
1190 div#sqlquerycontainer {
1191 float: <?php echo $left; ?>;
1192 width: 69%;
1193 /* height: 15em; */
1196 div#tablefieldscontainer {
1197 float: <?php echo $right; ?>;
1198 width: 29%;
1199 /* height: 15em; */
1202 div#tablefieldscontainer select {
1203 width: 100%;
1204 /* height: 12em; */
1207 textarea#sqlquery {
1208 width: 100%;
1209 /* height: 100%; */
1211 textarea#sql_query_edit {
1212 height: 7em;
1213 width: 95%;
1214 display: block;
1216 div#queryboxcontainer div#bookmarkoptions {
1217 margin-top: .5em;
1219 /* end querybox */
1221 /* main page */
1222 #maincontainer {
1223 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('logo_right.png');?>);
1224 background-position: <?php echo $right; ?> bottom;
1225 background-repeat: no-repeat;
1228 #mysqlmaininformation,
1229 #pmamaininformation {
1230 float: <?php echo $left; ?>;
1231 width: 49%;
1234 #maincontainer ul {
1235 list-style-type: disc;
1236 vertical-align: middle;
1239 #maincontainer li {
1240 margin: 0.2em 0em;
1242 /* END main page */
1244 /* iconic view for ul items */
1246 li.no_bullets {
1247 list-style-type:none !important;
1248 margin-left: -25px !important; //align with other list items which have bullets
1251 /* END iconic view for ul items */
1253 #body_browse_foreigners {
1254 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
1255 margin: .5em .5em 0 .5em;
1258 #bodyquerywindow {
1259 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
1262 #bodythemes {
1263 width: 500px;
1264 margin: auto;
1265 text-align: center;
1268 #bodythemes img {
1269 border: .1em solid #000;
1272 #bodythemes a:hover img {
1273 border: .1em solid red;
1276 #fieldset_select_fields {
1277 float: <?php echo $left; ?>;
1280 #selflink {
1281 clear: both;
1282 display: block;
1283 margin-top: 1em;
1284 margin-bottom: 1em;
1285 width: 98%;
1286 margin-left: 1%;
1287 border-top: .1em solid silver;
1288 text-align: <?php echo $right; ?>;
1291 #table_innodb_bufferpool_usage,
1292 #table_innodb_bufferpool_activity {
1293 float: <?php echo $left; ?>;
1296 #div_mysql_charset_collations table {
1297 float: <?php echo $left; ?>;
1300 .operations_half_width {
1301 width: 48%;
1302 float: <?php echo $left; ?>;
1305 .operations_full_width {
1306 width: 100%;
1307 clear: both;
1310 #qbe_div_table_list {
1311 float: <?php echo $left; ?>;
1314 #qbe_div_sql_query {
1315 float: <?php echo $left; ?>;
1318 label.desc {
1319 width: 30em;
1320 float: <?php echo $left; ?>;
1323 label.desc sup {
1324 position: absolute;
1327 code.sql,
1328 div.sqlvalidate {
1329 display: block;
1330 padding: 0.3em;
1331 margin-top: 0;
1332 margin-bottom: 0;
1333 border: <?php echo $GLOBALS['cfg']['MainColor']; ?> solid 1px;
1334 border-top: 0;
1335 border-bottom: 0;
1336 max-height: 10em;
1337 overflow: auto;
1338 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
1341 #main_pane_left {
1342 width: 60%;
1343 float: <?php echo $left; ?>;
1344 padding-top: 1em;
1347 #main_pane_right {
1348 margin-<?php echo $left; ?>: 60%;
1349 padding-top: 1em;
1350 padding-<?php echo $left; ?>: 1em;
1353 .group {
1354 border-<?php echo $left; ?>: 0.3em solid <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
1355 margin-bottom: 1em;
1358 .group h2 {
1359 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
1360 padding: 0.1em 0.3em;
1361 margin-top: 0;
1364 .group-cnt {
1365 padding: 0 0 0 0.5em;
1366 display: inline-block;
1367 width: 98%;
1370 textarea#partitiondefinition {
1371 height:3em;
1375 /* for elements that should be revealed only via js */
1376 .hide {
1377 display: none;
1380 #list_server {
1381 list-style-image: none;
1385 * Progress bar styles
1387 div.upload_progress
1389 width: 400px;
1390 margin: 3em auto;
1391 text-align: center;
1394 div.upload_progress_bar_outer
1396 border: 1px solid #000;
1397 width: 202px;
1398 position: relative;
1399 margin: 0 auto 1em;
1400 color: <?php echo $GLOBALS['cfg']['MainColor']; ?>;
1403 div.upload_progress_bar_inner
1405 background-color: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>;
1406 width: 0;
1407 height: 12px;
1408 margin: 1px;
1409 overflow: hidden;
1410 color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
1411 position: relative;
1414 div.upload_progress_bar_outer div.percentage
1416 position: absolute;
1417 top: 0;
1418 left: 0;
1419 width: 202px;
1422 div.upload_progress_bar_inner div.percentage
1424 top: -1px;
1425 left: -1px;
1428 div#statustext {
1429 margin-top: .5em;
1432 table#serverconnection_src_remote,
1433 table#serverconnection_trg_remote,
1434 table#serverconnection_src_local,
1435 table#serverconnection_trg_local {
1436 float: left;
1439 * Validation error message styles
1441 input[type=text].invalid_value,
1442 .invalid_value {
1443 background: #FFCCCC;
1447 * Ajax notification styling
1449 .ajax_notification {
1450 top: 0; /** The notification needs to be shown on the top of the page */
1451 position: fixed;
1452 margin-top: 0;
1453 margin-right: auto;
1454 margin-bottom: 0;
1455 margin-left: auto;
1456 padding: 3px 5px; /** Keep a little space on the sides of the text */
1457 width: 350px;
1458 background-color: #FFD700;
1459 z-index: 1100; /** If this is not kept at a high z-index, the jQueryUI modal dialogs (z-index:1000) might hide this */
1460 text-align: center;
1461 display: block;
1462 left: 0;
1463 right: 0;
1464 background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('ajax_clock_small.gif');?>);
1465 background-repeat: no-repeat;
1466 background-position: 2%;
1469 #loading_parent {
1470 /** Need this parent to properly center the notification division */
1471 position: relative;
1472 width: 100%;
1475 * Export and Import styles
1478 .exportoptions h3, .importoptions h3 {
1479 border-bottom: 1px #999999 solid;
1480 font-size: 110%;
1483 .exportoptions ul, .importoptions ul, .format_specific_options ul {
1484 list-style-type: none;
1485 margin-bottom: 15px;
1488 .exportoptions li, .importoptions li {
1489 margin: 7px;
1491 .exportoptions label, .importoptions label, .exportoptions p, .importoptions p {
1492 margin: 5px;
1493 float: none;
1496 #csv_options label.desc, #ldi_options label.desc, #latex_options label.desc, #output label.desc{
1497 float: left;
1498 width: 15em;
1501 .exportoptions, .importoptions {
1502 margin: 20px 30px 30px 10px
1505 .format_specific_options h3 {
1506 margin: 10px 0 0 10px;
1507 border: 0;
1510 .format_specific_options {
1511 border: 1px solid #999;
1512 margin: 7px 0;
1513 padding: 3px;
1516 p.desc {
1517 margin: 5px;
1521 * Export styles only
1523 select#db_select,
1524 select#table_select {
1525 width: 400px;
1528 .export_sub_options {
1529 margin: 20px 0 0 30px;
1532 .export_sub_options h4 {
1533 border-bottom: 1px #999 solid;
1536 .export_sub_options li.subgroup {
1537 display: inline-block;
1538 margin-top: 0;
1541 .export_sub_options li {
1542 margin-bottom: 0;
1545 #quick_or_custom,
1546 #output_quick_export {
1547 display: none;
1550 * Import styles only
1553 .importoptions #import_notification {
1554 margin: 10px 0;
1555 font-style: italic;
1558 input#input_import_file {
1559 margin: 5px;
1562 .formelementrow {
1563 margin: 5px 0 5px 0;
1566 #popup_background {
1567 display: none;
1568 position: fixed;
1569 _position: absolute; /* hack for IE6 */
1570 width: 100%;
1571 height: 100%;
1572 top: 0;
1573 left: 0;
1574 background: #000;
1575 z-index: 1000;
1576 overflow: hidden;
1580 * Create table styles
1582 #create_table_form table.table-name td {
1583 vertical-align: middle;
1587 * Table structure styles
1589 #fieldsForm ul.table-structure-actions {
1590 margin: 0;
1591 padding: 0;
1592 list-style: none;
1594 #fieldsForm ul.table-structure-actions li {
1595 float: <?php echo $left; ?>;
1596 margin-<?php echo $right; ?>: 0.5em; /* same as padding of "table td" */
1598 #fieldsForm ul.table-structure-actions .submenu li {
1599 padding: 0.3em;
1600 margin: 0.1em;
1603 .margin#change_column_dialog {
1604 margin: 0 .5em;
1608 * Indexes
1610 #index_frm .index_info input,
1611 #index_frm .index_info select {
1612 width: 100%;
1613 box-sizing: border-box;
1614 -ms-box-sizing: border-box;
1615 -moz-box-sizing: border-box;
1616 -webkit-box-sizing: border-box;
1619 #index_frm .slider {
1620 width: 10em;
1621 margin: .6em;
1622 float: <?php echo $left; ?>;
1625 #index_frm .add_fields {
1626 float: <?php echo $left; ?>;
1629 #index_frm .add_fields input {
1630 margin-<?php echo $left; ?>: 1em;
1633 #index_frm input {
1634 margin: 0;
1637 #index_frm td {
1638 vertical-align: middle;
1641 table#index_columns {
1642 width: 100%;
1645 table#index_columns select {
1646 width: 100%;
1649 #move_columns_dialog div {
1650 padding: 1em;
1653 #move_columns_dialog ul {
1654 list-style: none;
1655 margin: 0;
1656 padding: 0;
1659 #move_columns_dialog li {
1660 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;
1661 border: 1px solid #aaa;
1662 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>;
1663 font-weight: bold;
1664 margin: .4em;
1665 padding: .2em;
1666 -webkit-border-radius: 2px;
1667 -moz-border-radius: 2px;
1668 border-radius: 2px;
1671 /* config forms */
1672 .config-form ul.tabs {
1673 margin: 1.1em 0.2em 0;
1674 padding: 0 0 0.3em 0;
1675 list-style: none;
1676 font-weight: bold;
1679 .config-form ul.tabs li {
1680 float: <?php echo $left; ?>;
1683 .config-form ul.tabs li a {
1684 display: block;
1685 margin: 0.1em 0.2em 0;
1686 padding: 0.1em 0.4em;
1687 white-space: nowrap;
1688 text-decoration: none;
1689 border: 1px solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
1690 border-bottom: none;
1693 .config-form ul.tabs li a:hover,
1694 .config-form ul.tabs li a:active,
1695 .config-form ul.tabs li a.active {
1696 margin: 0;
1697 padding: 0.1em 0.6em 0.2em;
1700 .config-form ul.tabs li.active a {
1701 background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>;
1704 .config-form fieldset {
1705 margin-top: 0;
1706 padding: 0;
1707 clear: both;
1708 /*border-color: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;*/
1711 .config-form legend {
1712 display: none;
1715 .config-form fieldset p {
1716 margin: 0;
1717 padding: 0.5em;
1718 background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
1721 .config-form fieldset .errors { /* form error list */
1722 margin: 0 -2px 1em -2px;
1723 padding: .5em 1.5em;
1724 background: #FBEAD9;
1725 border: 0 #C83838 solid;
1726 border-width: 1px 0;
1727 list-style: none;
1728 font-family: sans-serif;
1729 font-size: small;
1732 .config-form fieldset .inline_errors { /* field error list */
1733 margin: .3em .3em .3em 0;
1734 padding: 0;
1735 list-style: none;
1736 color: #9A0000;
1737 font-size: small;
1740 .config-form fieldset th {
1741 padding: .3em .3em .3em .5em;
1742 text-align: left;
1743 vertical-align: top;
1744 width: 40%;
1745 background: transparent;
1748 .config-form fieldset .doc,
1749 .config-form fieldset .disabled-notice {
1750 margin-left: 1em;
1753 .config-form fieldset .disabled-notice {
1754 font-size: 80%;
1755 text-transform: uppercase;
1756 color: #E00;
1757 cursor: help;
1760 .config-form fieldset td {
1761 padding-top: .3em;
1762 padding-bottom: .3em;
1763 vertical-align: top;
1766 .config-form fieldset th small {
1767 display: block;
1768 font-weight: normal;
1769 font-family: sans-serif;
1770 font-size: x-small;
1771 color: #444;
1774 .config-form fieldset th,
1775 .config-form fieldset td {
1776 border-top: 1px <?php echo $GLOBALS['cfg']['BgTwo']; ?> solid;
1779 fieldset .group-header th {
1780 background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;
1783 fieldset .group-header + tr th {
1784 padding-top: .6em;
1787 fieldset .group-field-1 th,
1788 fieldset .group-header-2 th {
1789 padding-left: 1.5em;
1792 fieldset .group-field-2 th,
1793 fieldset .group-header-3 th {
1794 padding-left: 3em;
1797 fieldset .group-field-3 th {
1798 padding-left: 4.5em;
1801 fieldset .disabled-field th,
1802 fieldset .disabled-field th small,
1803 fieldset .disabled-field td {
1804 color: #666;
1805 background-color: #ddd;
1808 .config-form .lastrow {
1809 border-top: 1px #000 solid;
1812 .config-form .lastrow {
1813 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>;;
1814 padding: .5em;
1815 text-align: center;
1818 .config-form .lastrow input {
1819 font-weight: bold;
1822 /* form elements */
1824 .config-form span.checkbox {
1825 padding: 2px;
1826 display: inline-block;
1829 .config-form .custom { /* customized field */
1830 background: #FFC;
1833 .config-form span.checkbox.custom {
1834 padding: 1px;
1835 border: 1px #EDEC90 solid;
1836 background: #FFC;
1839 .config-form .field-error {
1840 border-color: #A11 !important;
1843 .config-form input[type="text"],
1844 .config-form select,
1845 .config-form textarea {
1846 border: 1px #A7A6AA solid;
1847 height: auto;
1850 .config-form input[type="text"]:focus,
1851 .config-form select:focus,
1852 .config-form textarea:focus {
1853 border: 1px #6676FF solid;
1854 background: #F7FBFF;
1857 .config-form .field-comment-mark {
1858 font-family: serif;
1859 color: #007;
1860 cursor: help;
1861 padding: 0 0.2em;
1862 font-weight: bold;
1863 font-style: italic;
1866 .config-form .field-comment-warning {
1867 color: #A00;
1870 /* error list */
1871 .config-form dd {
1872 margin-left: .5em;
1875 .config-form dd:before {
1876 content: "\25B8 ";
1879 .click-hide-message {
1880 cursor: pointer;
1883 .prefsmanage_opts {
1884 margin-<?php echo $left; ?>: 2em;
1887 #prefs_autoload {
1888 margin-bottom: .5em;
1891 #placeholder .button {
1892 position: absolute;
1893 cursor: pointer;
1896 #placeholder div.button {
1897 font-size: smaller;
1898 color: #999;
1899 background-color: #eee;
1900 padding: 2px;
1903 .wrapper {
1904 float: <?php echo $left; ?>;
1905 margin-bottom: 0.5em;
1907 .toggleButton {
1908 position: relative;
1909 cursor: pointer;
1910 font-size: .8em;
1911 text-align: center;
1912 line-height: 1.4em;
1913 height: 1.55em;
1914 overflow: hidden;
1915 border-right: .1em solid #888;
1916 border-left: .1em solid #888;
1918 .toggleButton table,
1919 .toggleButton td,
1920 .toggleButton img {
1921 padding: 0;
1922 position: relative;
1924 .toggleButton .container {
1925 position: absolute;
1927 .toggleButton .toggleOn {
1928 color: #fff;
1929 padding: 0 1em;
1931 .toggleButton .toggleOff {
1932 padding: 0 1em;
1935 .doubleFieldset fieldset {
1936 width: 48%;
1937 float: <?php echo $left; ?>;
1938 padding: 0;
1940 .doubleFieldset fieldset.left {
1941 margin-<?php echo $right; ?>: 1%;
1943 .doubleFieldset fieldset.right {
1944 margin-<?php echo $left; ?>: 1%;
1946 .doubleFieldset legend {
1947 margin-<?php echo $left; ?>: 0.5em;
1949 .doubleFieldset div.wrap {
1950 padding: 0.5em;
1953 #table_columns input[type="text"],
1954 #table_columns select {
1955 width: 10em;
1956 box-sizing: border-box;
1957 -ms-box-sizing: border-box;
1958 -moz-box-sizing: border-box;
1959 -webkit-box-sizing: border-box;
1962 #placeholder {
1963 position: relative;
1964 border: 1px solid #aaa;
1965 float: right;
1966 overflow: hidden;
1969 .placeholderDrag {
1970 cursor: move;
1973 #placeholder .button {
1974 position: absolute;
1977 #left_arrow {
1978 left: 8px;
1979 top: 26px;
1982 #right_arrow {
1983 left: 26px;
1984 top: 26px;
1987 #up_arrow {
1988 left: 17px;
1989 top: 8px;
1992 #down_arrow {
1993 left: 17px;
1994 top: 44px;
1997 #zoom_in {
1998 left: 17px;
1999 top: 67px;
2002 #zoom_world {
2003 left: 17px;
2004 top: 85px;
2007 #zoom_out {
2008 left: 17px;
2009 top: 103px;
2012 .colborder {
2013 cursor: col-resize;
2014 height: 100%;
2015 margin-left: -5px;
2016 position: absolute;
2017 width: 5px;
2020 .colborder_active {
2021 border-right: 2px solid #a44;
2024 .pma_table td {
2025 position: static;
2028 .pma_table th.draggable span,
2029 .pma_table tbody td span {
2030 display: block;
2031 overflow: hidden;
2034 .modal-copy input {
2035 display: block;
2036 width: 100%;
2037 margin-top: 1.5em;
2038 padding: .3em 0;
2041 .cRsz {
2042 position: absolute;
2045 .draggable {
2046 cursor: move;
2049 .cCpy {
2050 background: #000;
2051 color: #FFF;
2052 font-weight: bold;
2053 margin: 0.1em;
2054 padding: 0.3em;
2055 position: absolute;
2058 .cPointer {
2059 background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('col_pointer.png');?>);
2060 height: 20px;
2061 margin-left: -5px; /* must be minus half of its width */
2062 margin-top: -10px;
2063 position: absolute;
2064 width: 10px;
2067 .tooltip {
2068 background: #333 !important;
2069 opacity: .8 !important;
2070 border: 1px solid #000 !important;
2071 -moz-border-radius: .3em !important;
2072 -webkit-border-radius: .3em !important;
2073 border-radius: .3em !important;
2074 text-shadow: -1px -1px #000 !important;
2075 font-size: .8em !important;
2076 font-weight: bold !important;
2077 padding: 1px 3px !important;
2080 .tooltip * {
2081 background: none !important;
2082 color: #FFF !important;
2086 .data_full_width {
2087 width: 100%;
2090 .cDrop {
2091 left: 0;
2092 position: absolute;
2093 top: 0;
2096 .coldrop {
2097 background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('col_drop.png');?>);
2098 cursor: pointer;
2099 height: 16px;
2100 margin-left: 0.5em;
2101 margin-top: 0.3em;
2102 position: absolute;
2103 width: 16px;
2106 .coldrop:hover,
2107 .coldrop-hover {
2108 background-color: #999;
2111 .cList {
2112 background: #EEE;
2113 border: solid 1px #999;
2114 position: absolute;
2117 .cList .lDiv div {
2118 padding: .2em .5em .2em .2em;
2121 .cList .lDiv div:hover {
2122 background: #DDD;
2123 cursor: pointer;
2126 .cList .lDiv div input {
2127 cursor: pointer;
2130 .showAllColBtn {
2131 border-bottom: solid 1px #999;
2132 border-top: solid 1px #999;
2133 cursor: pointer;
2134 font-size: .9em;
2135 font-weight: bold;
2136 padding: .35em 1em;
2137 text-align: center;
2140 .showAllColBtn:hover {
2141 background: #DDD;
2144 .navigation {
2145 background: #E5E5E5;
2146 border: 1px solid black;
2147 margin: 0.8em 0;
2150 .navigation td {
2151 margin: 0;
2152 padding: 0;
2153 vertical-align: middle;
2154 white-space: nowrap;
2157 .navigation_separator {
2158 color: #555;
2159 display: inline-block;
2160 text-align: center;
2161 width: 1.2em;
2162 text-shadow: 1px 0 #FFF;
2165 .navigation input[type=submit] {
2166 background: none;
2167 border: 0;
2168 margin: 0;
2169 padding: 0.3em 0.5em;
2170 min-width: 1.5em;
2171 font-weight: bold;
2174 .navigation input[type=submit]:hover, .navigation input.edit_mode_active {
2175 background: #333;
2176 color: white;
2177 cursor: pointer;
2180 .navigation select {
2181 margin: 0 .8em;
2184 .cEdit {
2185 margin: 0;
2186 padding: 0;
2187 position: absolute;
2190 .cEdit input[type=text] {
2191 background: #FFF;
2192 height: 100%;
2193 margin: 0;
2194 padding: 0;
2197 .cEdit .edit_area {
2198 background: #FFF;
2199 border: 1px solid #999;
2200 min-width: 10em;
2201 padding: .3em .5em;
2204 .cEdit .edit_area select,
2205 .cEdit .edit_area textarea {
2206 width: 97%;
2209 .cEdit .cell_edit_hint {
2210 color: #555;
2211 font-size: .8em;
2212 margin: .3em .2em;
2215 .cEdit .edit_box {
2216 overflow: hidden;
2217 padding: 0;
2220 .cEdit .edit_box_posting {
2221 background: #FFF url(<?php echo $_SESSION['PMA_Theme']->getImgPath('ajax_clock_small.gif');?>) no-repeat right center;
2222 padding-right: 1.5em;
2225 .cEdit .edit_area_loading {
2226 background: #FFF url(<?php echo $_SESSION['PMA_Theme']->getImgPath('ajax_clock_small.gif');?>) no-repeat center;
2227 height: 10em;
2230 .cEdit .goto_link {
2231 background: #EEE;
2232 color: #555;
2233 padding: .2em .3em;
2236 .saving_edited_data {
2237 background: url(<?php echo $_SESSION['PMA_Theme']->getImgPath('ajax_clock_small.gif');?>) no-repeat left;
2238 padding-left: 20px;
2241 /* css for timepicker */
2242 .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
2243 .ui-timepicker-div dl { text-align: left; }
2244 .ui-timepicker-div dl dt { height: 25px; }
2245 .ui-timepicker-div dl dd { margin: -25px 0 10px 65px; }
2246 .ui-timepicker-div td { font-size: 90%; }
2248 input.btn {
2249 color: #333;
2250 background-color: #D0DCE0;
2253 body .ui-widget {
2254 font-size: 1em;
2257 .ui-dialog fieldset legend a {
2258 color: #0000FF;
2261 /* jqPlot */
2263 /*rules for the plot target div. These will be cascaded down to all plot elements according to css rules*/
2264 .jqplot-target {
2265 position: relative;
2266 color: #222222;
2267 font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
2268 font-size: 1em;
2269 /* height: 300px;
2270 width: 400px;*/
2273 /*rules applied to all axes*/
2274 .jqplot-axis {
2275 font-size: 0.75em;
2278 .jqplot-xaxis {
2279 margin-top: 10px;
2282 .jqplot-x2axis {
2283 margin-bottom: 10px;
2286 .jqplot-yaxis {
2287 margin-right: 10px;
2290 .jqplot-y2axis, .jqplot-y3axis, .jqplot-y4axis, .jqplot-y5axis, .jqplot-y6axis, .jqplot-y7axis, .jqplot-y8axis, .jqplot-y9axis, .jqplot-yMidAxis {
2291 margin-left: 10px;
2292 margin-right: 10px;
2295 /*rules applied to all axis tick divs*/
2296 .jqplot-axis-tick, .jqplot-xaxis-tick, .jqplot-yaxis-tick, .jqplot-x2axis-tick, .jqplot-y2axis-tick, .jqplot-y3axis-tick, .jqplot-y4axis-tick, .jqplot-y5axis-tick, .jqplot-y6axis-tick, .jqplot-y7axis-tick, .jqplot-y8axis-tick, .jqplot-y9axis-tick, .jqplot-yMidAxis-tick {
2297 position: absolute;
2298 white-space: pre;
2302 .jqplot-xaxis-tick {
2303 top: 0px;
2304 /* initial position untill tick is drawn in proper place */
2305 left: 15px;
2306 /* padding-top: 10px;*/
2307 vertical-align: top;
2310 .jqplot-x2axis-tick {
2311 bottom: 0px;
2312 /* initial position untill tick is drawn in proper place */
2313 left: 15px;
2314 /* padding-bottom: 10px;*/
2315 vertical-align: bottom;
2318 .jqplot-yaxis-tick {
2319 right: 0px;
2320 /* initial position untill tick is drawn in proper place */
2321 top: 15px;
2322 /* padding-right: 10px;*/
2323 text-align: right;
2326 .jqplot-yaxis-tick.jqplot-breakTick {
2327 right: -20px;
2328 margin-right: 0px;
2329 padding:1px 5px 1px 5px;
2330 /* background-color: white;*/
2331 z-index: 2;
2332 font-size: 1.5em;
2335 .jqplot-y2axis-tick, .jqplot-y3axis-tick, .jqplot-y4axis-tick, .jqplot-y5axis-tick, .jqplot-y6axis-tick, .jqplot-y7axis-tick, .jqplot-y8axis-tick, .jqplot-y9axis-tick {
2336 left: 0px;
2337 /* initial position untill tick is drawn in proper place */
2338 top: 15px;
2339 /* padding-left: 10px;*/
2340 /* padding-right: 15px;*/
2341 text-align: left;
2344 .jqplot-yMidAxis-tick {
2345 text-align: center;
2346 white-space: nowrap;
2349 .jqplot-xaxis-label {
2350 margin-top: 10px;
2351 font-size: 11pt;
2352 position: absolute;
2355 .jqplot-x2axis-label {
2356 margin-bottom: 10px;
2357 font-size: 11pt;
2358 position: absolute;
2361 .jqplot-yaxis-label {
2362 margin-right: 10px;
2363 /* text-align: center;*/
2364 font-size: 11pt;
2365 position: absolute;
2368 .jqplot-yMidAxis-label {
2369 font-size: 11pt;
2370 position: absolute;
2373 .jqplot-y2axis-label, .jqplot-y3axis-label, .jqplot-y4axis-label, .jqplot-y5axis-label, .jqplot-y6axis-label, .jqplot-y7axis-label, .jqplot-y8axis-label, .jqplot-y9axis-label {
2374 /* text-align: center;*/
2375 font-size: 11pt;
2376 margin-left: 10px;
2377 position: absolute;
2380 .jqplot-meterGauge-tick {
2381 font-size: 0.75em;
2382 color: #999999;
2385 .jqplot-meterGauge-label {
2386 font-size: 1em;
2387 color: #999999;
2390 table.jqplot-table-legend {
2391 margin-top: 12px;
2392 margin-bottom: 12px;
2393 margin-left: 12px;
2394 margin-right: 12px;
2397 table.jqplot-table-legend, table.jqplot-cursor-legend {
2398 background-color: rgba(255,255,255,0.6);
2399 border: 1px solid #cccccc;
2400 position: absolute;
2401 font-size: 0.75em;
2404 td.jqplot-table-legend {
2405 vertical-align:middle;
2409 These rules could be used instead of assigning
2410 element styles and relying on js object properties.
2414 td.jqplot-table-legend-swatch {
2415 padding-top: 0.5em;
2416 text-align: center;
2419 tr.jqplot-table-legend:first td.jqplot-table-legend-swatch {
2420 padding-top: 0px;
2424 td.jqplot-seriesToggle:hover, td.jqplot-seriesToggle:active {
2425 cursor: pointer;
2428 .jqplot-table-legend .jqplot-series-hidden {
2429 text-decoration: line-through;
2432 div.jqplot-table-legend-swatch-outline {
2433 border: 1px solid #cccccc;
2434 padding:1px;
2437 div.jqplot-table-legend-swatch {
2438 width:0px;
2439 height:0px;
2440 border-top-width: 5px;
2441 border-bottom-width: 5px;
2442 border-left-width: 6px;
2443 border-right-width: 6px;
2444 border-top-style: solid;
2445 border-bottom-style: solid;
2446 border-left-style: solid;
2447 border-right-style: solid;
2450 .jqplot-title {
2451 top: 0px;
2452 left: 0px;
2453 padding-bottom: 0.5em;
2454 font-size: 1.2em;
2457 table.jqplot-cursor-tooltip {
2458 border: 1px solid #cccccc;
2459 font-size: 0.75em;
2463 .jqplot-cursor-tooltip {
2464 border: 1px solid #cccccc;
2465 font-size: 0.75em;
2466 white-space: nowrap;
2467 background: rgba(208,208,208,0.5);
2468 padding: 1px;
2471 .jqplot-highlighter-tooltip, .jqplot-canvasOverlay-tooltip {
2472 border: 1px solid #cccccc;
2473 font-size: 0.75em;
2474 white-space: nowrap;
2475 background: rgba(208,208,208,0.5);
2476 padding: 1px;
2479 .jqplot-point-label {
2480 font-size: 0.75em;
2481 z-index: 2;
2484 td.jqplot-cursor-legend-swatch {
2485 vertical-align: middle;
2486 text-align: center;
2489 div.jqplot-cursor-legend-swatch {
2490 width: 1.2em;
2491 height: 0.7em;
2494 .jqplot-error {
2495 /* Styles added to the plot target container when there is an error go here.*/
2496 text-align: center;
2499 .jqplot-error-message {
2500 /* Styling of the custom error message div goes here.*/
2501 position: relative;
2502 top: 46%;
2503 display: inline-block;
2506 div.jqplot-bubble-label {
2507 font-size: 0.8em;
2508 /* background: rgba(90%, 90%, 90%, 0.15);*/
2509 padding-left: 2px;
2510 padding-right: 2px;
2511 color: rgb(20%, 20%, 20%);
2514 div.jqplot-bubble-label.jqplot-bubble-label-highlight {
2515 background: rgba(90%, 90%, 90%, 0.7);
2518 div.jqplot-noData-container {
2519 text-align: center;
2520 background-color: rgba(96%, 96%, 96%, 0.3);