[ Index ] |
|
Code source de phpMyAdmin 2.10.3 |
1 <?php 2 // unplanned execution path 3 if (!defined('PMA_MINIMUM_COMMON')) { 4 exit(); 5 } 6 ?> 7 /******************************************************************************/ 8 /* general tags */ 9 body { 10 <?php if (! empty($GLOBALS['cfg']['FontFamily'])) { ?> 11 font-family: <?php echo $GLOBALS['cfg']['FontFamily']; ?>; 12 <?php } ?> 13 padding: 0; 14 margin: 0.5em; 15 color: <?php echo $GLOBALS['cfg']['MainColor']; ?>; 16 background: <?php echo $GLOBALS['cfg']['MainBackground']; ?>; 17 } 18 19 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?> 20 textarea, tt, pre, code { 21 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>; 22 } 23 <?php } ?> 24 25 h1 { 26 font-size: 140%; 27 font-weight: bold; 28 } 29 30 h2 { 31 font-size: 120%; 32 font-weight: bold; 33 } 34 35 h3 { 36 font-weight: bold; 37 } 38 39 a:link, 40 a:visited, 41 a:active { 42 text-decoration: none; 43 color: #0000FF; 44 } 45 46 a:hover { 47 text-decoration: underline; 48 color: #FF0000; 49 } 50 51 dfn { 52 font-style: normal; 53 } 54 55 dfn:hover { 56 font-style: normal; 57 cursor: help; 58 } 59 60 th { 61 font-weight: bold; 62 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>; 63 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>; 64 } 65 66 a img { 67 border: 0; 68 } 69 70 hr { 71 color: <?php echo $GLOBALS['cfg']['MainColor']; ?>; 72 background-color: <?php echo $GLOBALS['cfg']['MainColor']; ?>; 73 border: 0; 74 height: 1px; 75 } 76 77 form { 78 padding: 0; 79 margin: 0; 80 display: inline; 81 } 82 83 textarea { 84 overflow: visible; 85 } 86 87 fieldset { 88 margin-top: 1em; 89 border: <?php echo $GLOBALS['cfg']['MainColor']; ?> solid 1px; 90 padding: 0.5em; 91 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>; 92 } 93 94 fieldset fieldset { 95 margin: 0.8em; 96 } 97 98 fieldset legend { 99 background-color: transparent; 100 } 101 102 /* buttons in some browsers (eg. Konqueror) are block elements, 103 this breaks design */ 104 button { 105 display: inline; 106 } 107 108 table caption, 109 table th, 110 table td { 111 padding: 0.1em 0.5em 0.1em 0.5em; 112 margin: 0.1em; 113 vertical-align: top; 114 } 115 116 img, 117 input, 118 select, 119 button { 120 vertical-align: middle; 121 } 122 123 124 /******************************************************************************/ 125 /* classes */ 126 127 fieldset.tblFooters { 128 margin-top: 0; 129 margin-bottom: 0.5em; 130 text-align: <?php echo $right; ?>; 131 float: none; 132 clear: both; 133 } 134 135 fieldset .formelement { 136 float: <?php echo $left; ?>; 137 margin-<?php echo $right; ?>: 0.5em; 138 /* IE */ 139 white-space: nowrap; 140 } 141 142 /* revert for Gecko */ 143 fieldset div[class=formelement] { 144 white-space: normal; 145 } 146 147 button.mult_submit { 148 border: none; 149 background-color: transparent; 150 } 151 152 /* odd items 1,3,5,7,... */ 153 table tr.odd th, 154 .odd { 155 background: <?php echo $GLOBALS['cfg']['BgOne']; ?>; 156 } 157 158 /* even items 2,4,6,8,... */ 159 table tr.even th, 160 .even { 161 background: <?php echo $GLOBALS['cfg']['BgTwo']; ?>; 162 } 163 164 /* odd table rows 1,3,5,7,... */ 165 table tr.odd th, 166 table tr.odd, 167 table tr.even th, 168 table tr.even { 169 text-align: <?php echo $left; ?>; 170 } 171 172 <?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?> 173 /* marked table rows */ 174 table tr.marked th, 175 table tr.marked { 176 background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>; 177 color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>; 178 } 179 <?php } ?> 180 181 <?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?> 182 /* hovered items */ 183 .odd:hover, 184 .even:hover, 185 .hover { 186 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>; 187 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>; 188 } 189 190 /* hovered table rows */ 191 table tr.odd:hover th, 192 table tr.even:hover th, 193 table tr.hover th { 194 background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>; 195 color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>; 196 } 197 <?php } ?> 198 199 /** 200 * marks table rows/cells if the db field is in a where condition 201 */ 202 tr.condition th, 203 tr.condition td, 204 td.condition, 205 th.condition { 206 border: 1px solid <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>; 207 } 208 209 table .value { 210 text-align: <?php echo $right; ?>; 211 white-space: normal; 212 } 213 /* IE doesnt handles 'pre' right */ 214 table [class=value] { 215 white-space: normal; 216 } 217 218 219 <?php if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?> 220 .value { 221 font-family: <?php echo $GLOBALS['cfg']['FontFamilyFixed']; ?>; 222 } 223 <?php } ?> 224 .value .attention { 225 color: red; 226 font-weight: bold; 227 } 228 .value .allfine { 229 color: green; 230 } 231 232 233 img.lightbulb { 234 cursor: pointer; 235 } 236 237 .pdflayout { 238 overflow: hidden; 239 clip: inherit; 240 background-color: #FFFFFF; 241 display: none; 242 border: 1px solid #000000; 243 position: relative; 244 } 245 246 .pdflayout_table { 247 background: #D3DCE3; 248 color: #000000; 249 overflow: hidden; 250 clip: inherit; 251 z-index: 2; 252 display: inline; 253 visibility: inherit; 254 cursor: move; 255 position: absolute; 256 font-size: 80%; 257 border: 1px dashed #000000; 258 } 259 260 /* MySQL Parser */ 261 .syntax { 262 font-size: 80%; 263 } 264 265 .syntax_comment { 266 padding-left: 4pt; 267 padding-right: 4pt; 268 } 269 270 .syntax_digit { 271 } 272 273 .syntax_digit_hex { 274 } 275 276 .syntax_digit_integer { 277 } 278 279 .syntax_digit_float { 280 } 281 282 .syntax_punct { 283 } 284 285 .syntax_alpha { 286 } 287 288 .syntax_alpha_columnType { 289 text-transform: uppercase; 290 } 291 292 .syntax_alpha_columnAttrib { 293 text-transform: uppercase; 294 } 295 296 .syntax_alpha_reservedWord { 297 text-transform: uppercase; 298 font-weight: bold; 299 } 300 301 .syntax_alpha_functionName { 302 text-transform: uppercase; 303 } 304 305 .syntax_alpha_identifier { 306 } 307 308 .syntax_alpha_charset { 309 } 310 311 .syntax_alpha_variable { 312 } 313 314 .syntax_quote { 315 white-space: pre; 316 } 317 318 .syntax_quote_backtick { 319 } 320 321 /* leave some space between icons and text */ 322 .icon { 323 vertical-align: middle; 324 margin-right: 0.3em; 325 margin-left: 0.3em; 326 } 327 /* no extra space in table cells */ 328 td .icon { 329 margin: 0; 330 } 331 332 .selectallarrow { 333 margin-<?php echo $right; ?>: 0.3em; 334 margin-<?php echo $left; ?>: 0.6em; 335 } 336 337 /* message boxes: warning, error, confirmation */ 338 .notice { 339 color: #000000; 340 background-color: #FFFFDD; 341 } 342 h1.notice, 343 div.notice { 344 margin: 0.5em 0 0.5em 0; 345 border: 0.1em solid #FFD700; 346 <?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?> 347 background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png); 348 background-repeat: no-repeat; 349 <?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?> 350 background-position: 10px 50%; 351 padding: 10px 10px 10px 36px; 352 <?php } else { ?> 353 background-position: 99% 50%; 354 padding: 10px 5% 10px 10px; 355 <?php } ?> 356 <?php } else { ?> 357 padding: 0.5em; 358 <?php } ?> 359 } 360 .notice h1 { 361 border-bottom: 0.1em solid #FFD700; 362 font-weight: bold; 363 text-align: <?php echo $left; ?>; 364 margin: 0 0 0.2em 0; 365 } 366 367 .warning { 368 color: #CC0000; 369 background-color: #FFFFCC; 370 } 371 p.warning, 372 h1.warning, 373 div.warning { 374 margin: 0.5em 0 0.5em 0; 375 border: 0.1em solid #CC0000; 376 <?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?> 377 background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png); 378 background-repeat: no-repeat; 379 <?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?> 380 background-position: 10px 50%; 381 padding: 10px 10px 10px 36px; 382 <?php } else { ?> 383 background-position: 99% 50%; 384 padding: 10px 5% 10px 10px; 385 <?php } ?> 386 <?php } else { ?> 387 padding: 0.5em; 388 <?php } ?> 389 } 390 .warning h1 { 391 border-bottom: 0.1em solid #cc0000; 392 font-weight: bold; 393 text-align: <?php echo $left; ?>; 394 margin: 0 0 0.2em 0; 395 } 396 397 .error { 398 background-color: #FFFFCC; 399 color: #ff0000; 400 } 401 402 h1.error, 403 div.error { 404 margin: 0.5em 0 0.5em 0; 405 border: 0.1em solid #ff0000; 406 <?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?> 407 background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png); 408 background-repeat: no-repeat; 409 <?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?> 410 background-position: 10px 50%; 411 padding: 10px 10px 10px 36px; 412 <?php } else { ?> 413 background-position: 99% 50%; 414 padding: 10px 5% 10px 10px; 415 <?php } ?> 416 <?php } else { ?> 417 padding: 0.5em; 418 <?php } ?> 419 } 420 div.error h1 { 421 border-bottom: 0.1em solid #ff0000; 422 font-weight: bold; 423 text-align: <?php echo $left; ?>; 424 margin: 0 0 0.2em 0; 425 } 426 427 .confirmation { 428 background-color: #FFFFCC; 429 } 430 fieldset.confirmation { 431 border: 0.1em solid #FF0000; 432 } 433 fieldset.confirmation legend { 434 border-left: 0.1em solid #FF0000; 435 border-right: 0.1em solid #FF0000; 436 font-weight: bold; 437 <?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?> 438 background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_really.png); 439 background-repeat: no-repeat; 440 <?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?> 441 background-position: 5px 50%; 442 padding: 0.2em 0.2em 0.2em 25px; 443 <?php } else { ?> 444 background-position: 97% 50%; 445 padding: 0.2em 25px 0.2em 0.2em; 446 <?php } ?> 447 <?php } ?> 448 } 449 /* end messageboxes */ 450 451 452 .tblcomment { 453 font-size: 70%; 454 font-weight: normal; 455 color: #000099; 456 } 457 458 .tblHeaders { 459 font-weight: bold; 460 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>; 461 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>; 462 } 463 464 .tblFooters { 465 font-weight: normal; 466 color: <?php echo $GLOBALS['cfg']['ThColor']; ?>; 467 background: <?php echo $GLOBALS['cfg']['ThBackground']; ?>; 468 469 } 470 471 .tblHeaders a:link, 472 .tblHeaders a:active, 473 .tblHeaders a:visited, 474 .tblFooters a:link, 475 .tblFooters a:active, 476 .tblFooters a:visited { 477 color: #0000FF; 478 } 479 480 .tblHeaders a:hover, 481 .tblFooters a:hover { 482 color: #FF0000; 483 } 484 485 /* forbidden, no privilegs */ 486 .noPrivileges { 487 color: #FF0000; 488 font-weight: bold; 489 } 490 491 /* disabled text */ 492 .disabled, 493 .disabled a:link, 494 .disabled a:active, 495 .disabled a:visited { 496 color: #666666; 497 } 498 499 .disabled a:hover { 500 color: #666666; 501 text-decoration: none; 502 } 503 504 tr.disabled td, 505 td.disabled { 506 background-color: #cccccc; 507 } 508 509 /** 510 * login form 511 */ 512 body.loginform h1, 513 body.loginform a.logo { 514 display: block; 515 text-align: center; 516 } 517 518 body.loginform { 519 text-align: center; 520 } 521 522 body.loginform div.container { 523 text-align: <?php echo $left; ?>; 524 width: 30em; 525 margin: 0 auto; 526 } 527 528 form.login label { 529 float: <?php echo $left; ?>; 530 width: 10em; 531 font-weight: bolder; 532 } 533 534 535 /******************************************************************************/ 536 /* specific elements */ 537 538 /* topmenu */ 539 ul#topmenu { 540 font-weight: bold; 541 list-style-type: none; 542 margin: 0; 543 padding: 0; 544 } 545 546 ul#topmenu li { 547 float: <?php echo $left; ?>; 548 margin: 0; 549 padding: 0; 550 vertical-align: middle; 551 } 552 553 #topmenu img { 554 vertical-align: middle; 555 margin-<?php echo $right; ?>: 0.1em; 556 } 557 558 /* default tab styles */ 559 .tab, .tabcaution, .tabactive { 560 display: block; 561 margin: 0.2em 0.2em 0 0.2em; 562 padding: 0.2em 0.2em 0 0.2em; 563 white-space: nowrap; 564 } 565 566 /* disabled tabs */ 567 span.tab { 568 color: #666666; 569 } 570 571 /* disabled drop/empty tabs */ 572 span.tabcaution { 573 color: #ff6666; 574 } 575 576 /* enabled drop/empty tabs */ 577 a.tabcaution { 578 color: #FF0000; 579 } 580 a.tabcaution:hover { 581 color: #FFFFFF; 582 background-color: #FF0000; 583 } 584 585 <?php if ( $GLOBALS['cfg']['LightTabs'] ) { ?> 586 /* active tab */ 587 a.tabactive { 588 color: black; 589 } 590 <?php } else { ?> 591 #topmenu { 592 margin-top: 0.5em; 593 padding: 0.1em 0.3em 0.1em 0.3em; 594 } 595 596 ul#topmenu li { 597 border-bottom: 1pt solid black; 598 } 599 600 /* default tab styles */ 601 .tab, .tabcaution, .tabactive { 602 background-color: <?php echo $GLOBALS['cfg']['BgOne']; ?>; 603 border: 1pt solid <?php echo $GLOBALS['cfg']['BgTwo']; ?>; 604 border-bottom: 0; 605 border-top-left-radius: 0.4em; 606 border-top-right-radius: 0.4em; 607 } 608 609 /* enabled hover/active tabs */ 610 a.tab:hover, 611 a.tabcaution:hover, 612 .tabactive, 613 .tabactive:hover { 614 margin: 0; 615 padding: 0.2em 0.4em 0.2em 0.4em; 616 text-decoration: none; 617 } 618 619 a.tab:hover, 620 .tabactive { 621 background-color: <?php echo $GLOBALS['cfg']['BgTwo']; ?>; 622 } 623 624 /* disabled drop/empty tabs */ 625 span.tab, 626 a.warning, 627 span.tabcaution { 628 cursor: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default; 629 } 630 <?php } ?> 631 /* end topmenu */ 632 633 634 /* Calendar */ 635 table.calendar { 636 width: 100%; 637 } 638 table.calendar td { 639 text-align: center; 640 } 641 table.calendar td a { 642 display: block; 643 } 644 645 table.calendar td a:hover { 646 background-color: #CCFFCC; 647 } 648 649 table.calendar th { 650 background-color: #D3DCE3; 651 } 652 653 table.calendar td.selected { 654 background-color: #FFCC99; 655 } 656 657 img.calendar { 658 border: none; 659 } 660 form.clock { 661 text-align: center; 662 } 663 /* end Calendar */ 664 665 666 /* table stats */ 667 div#tablestatistics { 668 border-bottom: 0.1em solid #669999; 669 margin-bottom: 0.5em; 670 padding-bottom: 0.5em; 671 } 672 673 div#tablestatistics table { 674 float: <?php echo $left; ?>; 675 margin-bottom: 0.5em; 676 margin-<?php echo $right; ?>: 0.5em; 677 } 678 679 div#tablestatistics table caption { 680 margin-<?php echo $right; ?>: 0.5em; 681 } 682 /* END table stats */ 683 684 685 /* server privileges */ 686 #tableuserrights td, 687 #tablespecificuserrights td, 688 #tabledatabases td { 689 vertical-align: middle; 690 } 691 /* END server privileges */ 692 693 694 695 /* Heading */ 696 #serverinfo { 697 font-weight: bold; 698 margin-bottom: 0.5em; 699 } 700 701 #serverinfo .item { 702 white-space: nowrap; 703 } 704 705 #span_table_comment { 706 font-weight: normal; 707 font-style: italic; 708 white-space: nowrap; 709 } 710 711 #serverinfo img { 712 margin: 0 0.1em 0 0.2em; 713 } 714 715 716 #textSQLDUMP { 717 width: 95%; 718 height: 95%; 719 font-family: "Courier New", Courier, mono; 720 font-size: 110%; 721 } 722 723 #TooltipContainer { 724 position: absolute; 725 z-index: 99; 726 width: 20em; 727 height: auto; 728 overflow: visible; 729 visibility: hidden; 730 background-color: #ffffcc; 731 color: #006600; 732 border: 0.1em solid #000000; 733 padding: 0.5em; 734 } 735 736 /* user privileges */ 737 #fieldset_add_user_login div.item { 738 border-bottom: 1px solid silver; 739 padding-bottom: 0.3em; 740 margin-bottom: 0.3em; 741 } 742 743 #fieldset_add_user_login label { 744 float: <?php echo $left; ?>; 745 display: block; 746 width: 10em; 747 max-width: 100%; 748 text-align: <?php echo $right; ?>; 749 padding-<?php echo $right; ?>: 0.5em; 750 } 751 752 #fieldset_add_user_login span.options #select_pred_username, 753 #fieldset_add_user_login span.options #select_pred_hostname, 754 #fieldset_add_user_login span.options #select_pred_password { 755 width: 100%; 756 max-width: 100%; 757 } 758 759 #fieldset_add_user_login span.options { 760 float: <?php echo $left; ?>; 761 display: block; 762 width: 12em; 763 max-width: 100%; 764 padding-<?php echo $right; ?>: 0.5em; 765 } 766 767 #fieldset_add_user_login input { 768 width: 12em; 769 clear: <?php echo $right; ?>; 770 max-width: 100%; 771 } 772 773 #fieldset_add_user_login span.options input { 774 width: auto; 775 } 776 777 #fieldset_user_priv div.item { 778 float: <?php echo $left; ?>; 779 width: 9em; 780 max-width: 100%; 781 } 782 783 #fieldset_user_priv div.item div.item { 784 float: none; 785 } 786 787 #fieldset_user_priv div.item label { 788 white-space: nowrap; 789 } 790 791 #fieldset_user_priv div.item select { 792 width: 100%; 793 } 794 795 #fieldset_user_global_rights fieldset { 796 float: <?php echo $left; ?>; 797 } 798 /* END user privileges */ 799 800 801 /* serverstatus */ 802 div#serverstatus table caption a.top { 803 float: <?php echo $right; ?>; 804 } 805 806 div#serverstatus div#serverstatusqueriesdetails table, 807 div#serverstatus table#serverstatustraffic, 808 div#serverstatus table#serverstatusconnections { 809 float: <?php echo $left; ?>; 810 } 811 812 #serverstatussection, 813 .clearfloat { 814 clear: both; 815 } 816 div#serverstatussection table { 817 width: 100%; 818 margin-bottom: 1em; 819 } 820 div#serverstatussection table .name { 821 width: 18em; 822 } 823 div#serverstatussection table .value { 824 width: 6em; 825 } 826 827 div#serverstatus table tbody td.descr a, 828 div#serverstatus table .tblFooters a { 829 white-space: nowrap; 830 } 831 div#serverstatus div#statuslinks a:before, 832 div#serverstatus div#sectionlinks a:before, 833 div#serverstatus table tbody td.descr a:before, 834 div#serverstatus table .tblFooters a:before { 835 content: '['; 836 } 837 div#serverstatus div#statuslinks a:after, 838 div#serverstatus div#sectionlinks a:after, 839 div#serverstatus table tbody td.descr a:after, 840 div#serverstatus table .tblFooters a:after { 841 content: ']'; 842 } 843 /* end serverstatus */ 844 845 /* querywindow */ 846 body#bodyquerywindow { 847 margin: 0; 848 padding: 0; 849 background-image: none; 850 background-color: #F5F5F5; 851 } 852 853 div#querywindowcontainer { 854 margin: 0; 855 padding: 0; 856 width: 100%; 857 } 858 859 div#querywindowcontainer fieldset { 860 margin-top: 0; 861 } 862 /* END querywindow */ 863 864 865 /* querybox */ 866 867 div#sqlquerycontainer { 868 float: <?php echo $left; ?>; 869 width: 69%; 870 /* height: 15em; */ 871 } 872 873 div#tablefieldscontainer { 874 float: <?php echo $right; ?>; 875 width: 29%; 876 /* height: 15em; */ 877 } 878 879 div#tablefieldscontainer select { 880 width: 100%; 881 /* height: 12em; */ 882 } 883 884 textarea#sqlquery { 885 width: 100%; 886 /* height: 100%; */ 887 } 888 889 div#queryboxcontainer div#bookmarkoptions { 890 margin-top: 0.5em; 891 } 892 /* end querybox */ 893 894 /* main page */ 895 #maincontainer { 896 background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png); 897 background-position: <?php echo $right; ?> bottom; 898 background-repeat: no-repeat; 899 border-bottom: 1px solid silver; 900 } 901 902 #mysqlmaininformation, 903 #pmamaininformation { 904 float: <?php echo $left; ?>; 905 width: 49%; 906 } 907 908 #maincontainer ul { 909 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>item_<?php echo $GLOBALS['text_dir']; ?>.png); 910 vertical-align: middle; 911 } 912 913 #maincontainer li { 914 margin-bottom: 0.3em; 915 } 916 /* END main page */ 917 918 919 <?php if ($GLOBALS['cfg']['MainPageIconic']) { ?> 920 /* iconic view for ul items */ 921 li#li_create_database { 922 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png); 923 } 924 925 li#li_select_lang { 926 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png); 927 } 928 929 li#li_select_mysql_collation, 930 li#li_select_mysql_charset { 931 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png); 932 } 933 934 li#li_select_theme{ 935 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png); 936 } 937 938 li#li_server_info{ 939 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png); 940 } 941 942 li#li_user_info{ 943 /* list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */ 944 } 945 946 li#li_mysql_status{ 947 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png); 948 } 949 950 li#li_mysql_variables{ 951 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png); 952 } 953 954 li#li_mysql_processes{ 955 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png); 956 } 957 958 li#li_mysql_collations{ 959 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png); 960 } 961 962 li#li_mysql_engines{ 963 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png); 964 } 965 966 li#li_mysql_binlogs { 967 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png); 968 } 969 970 li#li_mysql_databases { 971 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png); 972 } 973 974 li#li_export { 975 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png); 976 } 977 978 li#li_import { 979 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png); 980 } 981 982 li#li_change_password { 983 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png); 984 } 985 986 li#li_log_out { 987 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png); 988 } 989 990 li#li_pma_docs { 991 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png); 992 } 993 994 li#li_phpinfo { 995 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png); 996 } 997 998 li#li_pma_homepage { 999 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_home.png); 1000 } 1001 1002 li#li_mysql_privilegs{ 1003 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); 1004 } 1005 1006 li#li_switch_dbstats { 1007 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png); 1008 } 1009 1010 li#li_flush_privileges { 1011 list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png); 1012 } 1013 /* END iconic view for ul items */ 1014 <?php } /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?> 1015 1016 1017 #body_browse_foreigners { 1018 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>; 1019 margin: 0.5em 0.5em 0 0.5em; 1020 } 1021 1022 #bodyquerywindow { 1023 background: <?php echo $GLOBALS['cfg']['NaviBackground']; ?>; 1024 } 1025 1026 #bodythemes { 1027 width: 500px; 1028 margin: auto; 1029 text-align: center; 1030 } 1031 1032 #bodythemes img { 1033 border: 0.1em solid black; 1034 } 1035 1036 #bodythemes a:hover img { 1037 border: 0.1em solid red; 1038 } 1039 1040 #fieldset_select_fields { 1041 float: <?php echo $left; ?>; 1042 } 1043 1044 #selflink { 1045 clear: both; 1046 display: block; 1047 margin-top: 1em; 1048 margin-bottom: 1em; 1049 width: 100%; 1050 border-top: 0.1em solid silver; 1051 text-align: <?php echo $right; ?>; 1052 } 1053 1054 #table_innodb_bufferpool_usage, 1055 #table_innodb_bufferpool_activity { 1056 float: <?php echo $left; ?>; 1057 } 1058 1059 #div_mysql_charset_collations table { 1060 float: <?php echo $left; ?>; 1061 } 1062 1063 #div_table_order { 1064 min-width: 48%; 1065 float: <?php echo $left; ?>; 1066 } 1067 1068 #div_table_rename { 1069 min-width: 48%; 1070 float: <?php echo $left; ?>; 1071 } 1072 1073 #div_table_copy { 1074 min-width: 48%; 1075 float: <?php echo $left; ?>; 1076 } 1077 1078 #div_table_options { 1079 clear: both; 1080 min-width: 48%; 1081 float: <?php echo $left; ?>; 1082 } 1083 1084 #qbe_div_table_list { 1085 float: <?php echo $left; ?>; 1086 } 1087 1088 #qbe_div_sql_query { 1089 float: <?php echo $left; ?>; 1090 } 1091 1092 label.desc { 1093 width: 30em; 1094 float: <?php echo $left; ?>; 1095 }
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Mon Nov 26 15:18:20 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |