2 /* vim: set expandtab sw=4 ts=4 sts=4: */
4 * main css file from theme Original
6 * @package phpMyAdmin-theme
10 // unplanned execution path
11 if (!defined('PMA_MINIMUM_COMMON')) {
15 /******************************************************************************/
18 font
-size
: <?php
echo (null !== $GLOBALS['PMA_Config']->get('fontsize') ?
$GLOBALS['PMA_Config']->get('fontsize') : (
19 isset($_COOKIE['pma_fontsize']) ?
$_COOKIE['pma_fontsize'] : '82%'));?
>;
22 input
, select
, textarea
{
27 <?php
if (! empty($GLOBALS['cfg']['FontFamily'])) { ?
>
28 font
-family
: <?php
echo $GLOBALS['cfg']['FontFamily']; ?
>;
32 color
: <?php
echo $GLOBALS['cfg']['MainColor']; ?
>;
33 background
: <?php
echo (isset($_SESSION['tmp_user_values']['custom_color']) ?
$_SESSION['tmp_user_values']['custom_color'] : $GLOBALS['cfg']['MainBackground']); ?
>;
38 <?php
if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?
>
39 textarea
, tt
, pre
, code
{
40 font
-family
: <?php
echo $GLOBALS['cfg']['FontFamilyFixed']; ?
>;
60 text
-decoration
: none
;
66 text
-decoration
: underline
;
81 color
: <?php
echo $GLOBALS['cfg']['ThColor']; ?
>;
82 background
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
90 color
: <?php
echo $GLOBALS['cfg']['MainColor']; ?
>;
91 background
-color
: <?php
echo $GLOBALS['cfg']['MainColor']; ?
>;
104 height
: <?php
echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?
>em
;
109 border
: <?php
echo $GLOBALS['cfg']['MainColor']; ?
> solid
1px
;
111 background
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
121 background
-color
: <?php
echo 'OPERA' != PMA_USR_BROWSER_AGENT ?
'transparent' : $GLOBALS['cfg']['BgOne']; ?
>;
124 /* buttons in some browsers (eg. Konqueror) are block elements,
125 this breaks design */
133 padding
: 0.1em
0.5em
0.1em
0.5em
;
142 vertical
-align
: middle
;
146 /******************************************************************************/
149 border
: 1px solid
#000000;
154 fieldset
.tblFooters
{
156 margin
-bottom
: 0.5em
;
157 /* avoid a thick line since this should be used under another fieldset */
159 text
-align
: <?php
echo $right; ?
>;
164 fieldset
.formelement
{
165 float: <?php
echo $left; ?
>;
166 margin
-<?php
echo $right; ?
>: 0.5em
;
171 /* revert for Gecko */
172 fieldset div
[class=formelement
] {
178 background
-color
: transparent
;
181 /* odd items 1,3,5,7,... */
184 background
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
187 /* even items 2,4,6,8,... */
190 background
: <?php
echo $GLOBALS['cfg']['BgTwo']; ?
>;
193 /* odd table rows 1,3,5,7,... */
198 text
-align
: <?php
echo $left; ?
>;
201 <?php
if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?
>
202 /* marked table rows */
205 background
: <?php
echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?
>;
206 color
: <?php
echo $GLOBALS['cfg']['BrowseMarkerColor']; ?
>;
210 <?php
if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?
>
215 .structure_actions_dropdown
{
216 background
: <?php
echo $GLOBALS['cfg']['BrowsePointerBackground']; ?
>;
217 color
: <?php
echo $GLOBALS['cfg']['BrowsePointerColor']; ?
>;
220 /* hovered table rows */
221 table tr
.odd
:hover th
,
222 table tr
.even
:hover th
,
224 background
: <?php
echo $GLOBALS['cfg']['BrowsePointerBackground']; ?
>;
225 color
: <?php
echo $GLOBALS['cfg']['BrowsePointerColor']; ?
>;
230 * marks table rows/cells if the db field is in a where condition
236 border
: 1px solid
<?php
echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?
>;
240 text
-align
: <?php
echo $right; ?
>;
243 /* IE doesnt handles 'pre' right */
244 table
[class=value
] {
249 <?php
if (! empty($GLOBALS['cfg']['FontFamilyFixed'])) { ?
>
251 font
-family
: <?php
echo $GLOBALS['cfg']['FontFamilyFixed']; ?
>;
270 background
-color
: #FFFFFF;
272 border
: 1px solid
#000000;
287 border
: 1px dashed
#000000;
296 text
-decoration
: none
;
297 border
-bottom
:1px dotted black
;
311 .syntax_digit_integer
{
314 .syntax_digit_float
{
323 .syntax_alpha_columnType
{
324 text
-transform
: uppercase
;
327 .syntax_alpha_columnAttrib
{
328 text
-transform
: uppercase
;
331 .syntax_alpha_reservedWord
{
332 text
-transform
: uppercase
;
336 .syntax_alpha_functionName
{
337 text
-transform
: uppercase
;
340 .syntax_alpha_identifier
{
343 .syntax_alpha_charset
{
346 .syntax_alpha_variable
{
353 .syntax_quote_backtick
{
356 /* leave some space between icons and text */
357 .icon
, img
.footnotemarker
{
358 vertical
-align
: middle
;
367 /* no extra space in table cells */
373 margin
-<?php
echo $right; ?
>: 0.3em
;
374 margin
-<?php
echo $left; ?
>: 0.6em
;
377 /* message boxes: warning, error, confirmation */
382 border
-bottom
: 2px solid
;
384 text
-align
: <?php
echo $left; ?
>;
395 <?php
if ($GLOBALS['cfg']['ErrorIconic']) { ?
>
396 background
-repeat
: no
-repeat
;
397 <?php
if ($GLOBALS['text_dir'] === 'ltr') { ?
>
398 background
-position
: 10px
50%
;
399 padding
: 0.1em
0.1em
0.1em
36px
;
401 background
-position
: 99%
50%
;
402 padding
: 10px
5%
10px
10px
;
411 background
-color
: #f0fff0;
415 border
-color
: #00FF00;
416 <?php
if ($GLOBALS['cfg']['ErrorIconic']) { ?
>
417 background
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_success
.png
);
418 background
-repeat
: no
-repeat
;
419 <?php
if ($GLOBALS['text_dir'] === 'ltr') { ?
>
420 background
-position
: 5px
50%
;
421 padding
: 0.2em
0.2em
0.2em
25px
;
423 background
-position
: 97%
50%
;
424 padding
: 0.2em
25px
0.2em
0.2em
;
429 border
-color
: #00FF00;
432 .notice
, .footnotes
{
434 background
-color
: #FFFFDD;
439 border
-color
: #FFD700;
440 <?php
if ($GLOBALS['cfg']['ErrorIconic']) { ?
>
441 background
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_notice
.png
);
442 background
-repeat
: no
-repeat
;
443 <?php
if ($GLOBALS['text_dir'] === 'ltr') { ?
>
444 background
-position
: 5px
50%
;
445 padding
: 0.2em
0.2em
0.2em
25px
;
447 background
-position
: 97%
50%
;
448 padding
: 0.2em
25px
0.2em
0.2em
;
453 border
-color
: #FFD700;
458 background
-color
: #FFFFCC;
463 border
-color
: #CC0000;
464 <?php
if ($GLOBALS['cfg']['ErrorIconic']) { ?
>
465 background
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_warn
.png
);
466 background
-repeat
: no
-repeat
;
467 <?php
if ($GLOBALS['text_dir'] === 'ltr') { ?
>
468 background
-position
: 5px
50%
;
469 padding
: 0.2em
0.2em
0.2em
25px
;
471 background
-position
: 97%
50%
;
472 padding
: 0.2em
25px
0.2em
0.2em
;
477 border
-color
: #cc0000;
481 background
-color
: #FFFFCC;
487 border
-color
: #ff0000;
488 <?php
if ($GLOBALS['cfg']['ErrorIconic']) { ?
>
489 background
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_error
.png
);
490 background
-repeat
: no
-repeat
;
491 <?php
if ($GLOBALS['text_dir'] === 'ltr') { ?
>
492 background
-position
: 5px
50%
;
493 padding
: 0.2em
0.2em
0.2em
25px
;
495 background
-position
: 97%
50%
;
496 padding
: 0.2em
25px
0.2em
0.2em
;
501 border
-color
: #ff0000;
505 background
-color
: #FFFFCC;
507 fieldset
.confirmation
{
508 border
: 0.1em solid
#FF0000;
510 fieldset
.confirmation legend
{
511 border
-left
: 0.1em solid
#FF0000;
512 border
-right
: 0.1em solid
#FF0000;
514 <?php
if ($GLOBALS['cfg']['ErrorIconic']) { ?
>
515 background
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_really
.png
);
516 background
-repeat
: no
-repeat
;
517 <?php
if ($GLOBALS['text_dir'] === 'ltr') { ?
>
518 background
-position
: 5px
50%
;
519 padding
: 0.2em
0.2em
0.2em
25px
;
521 background
-position
: 97%
50%
;
522 padding
: 0.2em
25px
0.2em
0.2em
;
526 /* end messageboxes */
537 color
: <?php
echo $GLOBALS['cfg']['ThColor']; ?
>;
538 background
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
544 color
: <?php
echo $GLOBALS['cfg']['ThColor']; ?
>;
545 background
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
549 .tblHeaders a
:active
,
550 .tblHeaders a
:visited
,
555 .tblFooters a
:active
,
556 .tblFooters a
:visited
{
562 .tblFooters a
:hover
{
566 /* forbidden, no privilegs */
576 .disabled a
:visited
{
582 text
-decoration
: none
;
587 background
-color
: #cccccc;
594 body
.loginform a
.logo
{
603 body
.loginform div
.container
{
604 text
-align
: <?php
echo $left; ?
>;
610 float: <?php
echo $left; ?
>;
616 border
-bottom
: 1px dashed black
;
623 /******************************************************************************/
624 /* specific elements */
627 ul
#topmenu, ul#topmenu2, ul.tabs {
629 list-style
-type
: none
;
635 margin
: 0.25em
0.5em
0;
640 ul
#topmenu li, ul#topmenu2 li {
641 float: <?php
echo $left; ?
>;
644 vertical
-align
: middle
;
647 #topmenu img, #topmenu2 img {
648 vertical
-align
: middle
;
649 margin
-<?php
echo $right; ?
>: 0.1em
;
652 /* default tab styles */
653 ul
#topmenu a, ul#topmenu span {
655 margin
: 0.2em
0.2em
0 0.2em
;
656 padding
: 0.2em
0.2em
0 0.2em
;
662 padding
-bottom
: 0.2em
;
665 ul
#topmenu .submenu {
674 list-style
-type
: none
;
676 border
: 1px
#666 solid;
679 ul
#topmenu li:hover ul, ul#topmenu .submenuhover ul {
695 ul
#topmenu span.tab {
699 /* disabled drop/empty tabs */
700 ul
#topmenu span.tabcaution {
704 /* enabled drop/empty tabs */
705 ul
#topmenu a.tabcaution {
708 ul
#topmenu a.tabcaution:hover {
710 background
-color
: #FF0000;
715 fieldset
.caution a
:hover
{
717 background
-color
: #FF0000;
720 <?php
if ($GLOBALS['cfg']['LightTabs']) { ?
>
722 ul
#topmenu a.tabactive, ul#topmenu2 a.tabactive {
727 background
: <?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
732 padding
: 0.1em
0.3em
0.1em
0.3em
;
736 -moz
-box
-shadow
: 2px
2px
3px
#666;
737 -webkit
-box
-shadow
: 2px
2px
3px
#666;
738 box
-shadow
: 2px
2px
3px
#666;
742 border
-bottom
: 1pt solid black
;
745 /* default tab styles */
746 ul
#topmenu a, ul#topmenu span {
747 background
-color
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
748 border
: 0 solid
<?php
echo $GLOBALS['cfg']['BgTwo']; ?
>;
749 border
-width
: 1pt
1pt
0 1pt
;
750 -moz
-border
-radius
: 0.4em
0.4em
0 0;
751 border
-radius
: 0.4em
0.4em
0 0;
755 border
-width
: 1pt
0 0 0;
756 -moz
-border
-radius
: 0;
760 ul
#topmenu ul li:first-child a {
764 /* enabled hover/active tabs */
765 ul
#topmenu > li > a:hover,
766 ul
#topmenu > li > .tabactive {
768 padding
: 0.2em
0.4em
0.2em
0.4em
;
769 text
-decoration
: none
;
772 ul
#topmenu ul a:hover,
773 ul
#topmenu ul .tabactive {
774 text
-decoration
: none
;
777 ul
#topmenu a.tab:hover,
778 ul
#topmenu .tabactive {
779 background
-color
: <?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
782 ul
#topmenu2 a.tab:hover,
783 ul
#topmenu2 a.tabactive {
784 background
-color
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
785 -moz
-border
-radius
: 0.3em
;
786 border
-radius
: 0.3em
;
787 text
-decoration
: none
;
790 /* to be able to cancel the bottom border, use <li class="active"> */
791 ul
#topmenu > li.active {
792 border
-bottom
: 1pt solid
<?php
echo $GLOBALS['cfg']['MainBackground']; ?
>;
795 /* disabled drop/empty tabs */
798 ul
#topmenu span.tabcaution {
799 cursor
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>error
.ico
), default;
812 table
.calendar td a
{
816 table
.calendar td a
:hover
{
817 background
-color
: #CCFFCC;
821 background
-color
: #D3DCE3;
824 table
.calendar td
.selected
{
825 background
-color
: #FFCC99;
838 div
#tablestatistics {
839 border
-bottom
: 0.1em solid
#669999;
840 margin
-bottom
: 0.5em
;
841 padding
-bottom
: 0.5em
;
844 div
#tablestatistics table {
845 float: <?php
echo $left; ?
>;
846 margin
-bottom
: 0.5em
;
847 margin
-<?php
echo $right; ?
>: 0.5em
;
850 div
#tablestatistics table caption {
851 margin
-<?php
echo $right; ?
>: 0.5em
;
853 /* END table stats */
856 /* server privileges */
858 #tablespecificuserrights td,
860 vertical
-align
: middle
;
862 /* END server privileges */
869 margin
-bottom
: 0.5em
;
876 #span_table_comment {
883 margin
: 0 0.1em
0 0.2em
;
890 font
-family
: "Courier New", Courier
, mono
;
901 background
-color
: #ffffcc;
903 border
: 0.1em solid
#000000;
907 /* user privileges */
908 #fieldset_add_user_login div.item {
909 border
-bottom
: 1px solid silver
;
910 padding
-bottom
: 0.3em
;
911 margin
-bottom
: 0.3em
;
914 #fieldset_add_user_login label {
915 float: <?php
echo $left; ?
>;
919 text
-align
: <?php
echo $right; ?
>;
920 padding
-<?php
echo $right; ?
>: 0.5em
;
923 #fieldset_add_user_login span.options #select_pred_username,
924 #fieldset_add_user_login span.options #select_pred_hostname,
925 #fieldset_add_user_login span.options #select_pred_password {
930 #fieldset_add_user_login span.options {
931 float: <?php
echo $left; ?
>;
935 padding
-<?php
echo $right; ?
>: 0.5em
;
938 #fieldset_add_user_login input {
940 clear
: <?php
echo $right; ?
>;
944 #fieldset_add_user_login span.options input {
948 #fieldset_user_priv div.item {
949 float: <?php
echo $left; ?
>;
954 #fieldset_user_priv div.item div.item {
958 #fieldset_user_priv div.item label {
962 #fieldset_user_priv div.item select {
966 #fieldset_user_global_rights fieldset {
967 float: <?php
echo $left; ?
>;
969 /* END user privileges */
973 div
#serverstatus table caption a.top {
974 float: <?php
echo $right; ?
>;
977 div
#serverstatus div#serverstatusqueriesdetails table,
978 div
#serverstatus table#serverstatustraffic,
979 div
#serverstatus table#serverstatusconnections {
980 float: <?php
echo $left; ?
>;
983 #serverstatussection,
987 div
#serverstatussection table {
991 div
#serverstatussection table .name {
994 div
#serverstatussection table .value {
998 div
#serverstatus table tbody td.descr a,
999 div
#serverstatus table .tblFooters a {
1000 white
-space
: nowrap
;
1002 div
#serverstatus div#statuslinks a:before,
1003 div
#serverstatus div#sectionlinks a:before,
1004 div
#serverstatus table tbody td.descr a:before,
1005 div
#serverstatus table .tblFooters a:before {
1008 div
#serverstatus div#statuslinks a:after,
1009 div
#serverstatus div#sectionlinks a:after,
1010 div
#serverstatus table tbody td.descr a:after,
1011 div
#serverstatus table .tblFooters a:after {
1014 /* end serverstatus */
1017 body
#bodyquerywindow {
1020 background
-image
: none
;
1021 background
-color
: #F5F5F5;
1024 div
#querywindowcontainer {
1030 div
#querywindowcontainer fieldset {
1033 /* END querywindow */
1038 div
#sqlquerycontainer {
1039 float: <?php
echo $left; ?
>;
1044 div
#tablefieldscontainer {
1045 float: <?php
echo $right; ?
>;
1050 div
#tablefieldscontainer select {
1059 textarea
#sql_query_edit{
1064 div
#queryboxcontainer div#bookmarkoptions {
1071 background
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>logo_right
.png
);
1072 background
-position
: <?php
echo $right; ?
> bottom
;
1073 background
-repeat
: no
-repeat
;
1076 #mysqlmaininformation,
1077 #pmamaininformation {
1078 float: <?php
echo $left; ?
>;
1083 list-style
-type
: disc
;
1084 vertical
-align
: middle
;
1093 <?php
if ($GLOBALS['cfg']['MainPageIconic']) { ?
>
1094 /* iconic view for ul items */
1095 li
#li_create_database {
1096 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>b_newdb
.png
);
1100 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_lang
.png
);
1103 li
#li_select_mysql_collation {
1104 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_asci
.png
);
1108 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_theme
.png
);
1112 /* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
1116 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_status
.png
);
1119 li
#li_mysql_variables{
1120 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_vars
.png
);
1123 li
#li_mysql_processes{
1124 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_process
.png
);
1127 li
#li_mysql_collations{
1128 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_asci
.png
);
1131 li
#li_mysql_engines{
1132 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>b_engine
.png
);
1135 li
#li_mysql_binlogs {
1136 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_tbl
.png
);
1139 li
#li_mysql_databases {
1140 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_db
.png
);
1144 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>b_export
.png
);
1148 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>b_import
.png
);
1151 li
#li_change_password {
1152 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_passwd
.png
);
1156 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_loggoff
.png
);
1159 li
#li_mysql_privilegs{
1160 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_rights
.png
);
1163 li
#li_switch_dbstats {
1164 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>b_dbstatistics
.png
);
1167 li
#li_flush_privileges {
1168 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_reload
.png
);
1171 li
#li_user_preferences {
1172 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>b_tblops
.png
);
1174 /* END iconic view for ul items */
1175 <?php
} /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?
>
1178 #body_browse_foreigners {
1179 background
: <?php
echo $GLOBALS['cfg']['NaviBackground']; ?
>;
1180 margin
: 0.5em
0.5em
0 0.5em
;
1184 background
: <?php
echo $GLOBALS['cfg']['NaviBackground']; ?
>;
1194 border
: 0.1em solid black
;
1197 #bodythemes a:hover img {
1198 border
: 0.1em solid red
;
1201 #fieldset_select_fields {
1202 float: <?php
echo $left; ?
>;
1211 border
-top
: 0.1em solid silver
;
1212 text
-align
: <?php
echo $right; ?
>;
1215 #table_innodb_bufferpool_usage,
1216 #table_innodb_bufferpool_activity {
1217 float: <?php
echo $left; ?
>;
1220 #div_mysql_charset_collations table {
1221 float: <?php
echo $left; ?
>;
1226 float: <?php
echo $left; ?
>;
1231 float: <?php
echo $left; ?
>;
1235 #div_partition_maintenance,
1236 #div_referential_integrity,
1238 #div_table_maintenance {
1240 float: <?php
echo $left; ?
>;
1243 #div_table_options {
1246 float: <?php
echo $left; ?
>;
1249 #qbe_div_table_list {
1250 float: <?php
echo $left; ?
>;
1253 #qbe_div_sql_query {
1254 float: <?php
echo $left; ?
>;
1259 float: <?php
echo $left; ?
>;
1266 code
.sql
, div
.sqlvalidate
{
1271 border
: <?php
echo $GLOBALS['cfg']['MainColor']; ?
> solid
1px
;
1276 background
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
1281 float: <?php
echo $left; ?
>;
1286 margin
-<?php
echo $left; ?
>: 60%
;
1288 padding
-<?php
echo $left; ?
>: 1em
;
1292 border
-<?php
echo $left; ?
>: 0.3em solid
<?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
1297 background
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;
1298 padding
: 0.1em
0.3em
;
1303 padding
: 0 0 0 0.5em
;
1304 display
: inline
-block
;
1308 /* for elements that should be revealed only via js */
1314 list-style
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>s_host
.png
);
1318 list-style
-image
: none
;
1322 * Progress bar styles
1324 div
.upload_progress_bar_outer
1326 border
: 1px solid black
;
1330 div
.upload_progress_bar_inner
1332 background
-color
: <?php
echo (isset($_SESSION['userconf']['custom_color']) ?
$_SESSION['userconf']['custom_color'] : $GLOBALS['cfg']['NaviBackground']); ?
>;
1338 table
#serverconnection_src_remote,
1339 table
#serverconnection_trg_remote,
1340 table
#serverconnection_src_local,
1341 table
#serverconnection_trg_local {
1345 * Validation error message styles
1351 * Ajax notification styling
1353 .ajax_notification
{
1354 top
: 0px
; /** The notification needs to be shown on the top of the page */
1360 padding
: 3px
5px
; /** Keep a little space on the sides of the text */
1362 max
-width
: 350px
; /** This value might have to be changed */
1363 background
-color
: #FFD700;
1364 z
-index
: 1100; /** If this is not kept at a high z-index, the jQueryUI modal dialogs (z-index:1000) might hide this */
1369 background
-image
: url(<?php
echo $_SESSION['PMA_Theme']->getImgPath(); ?
>ajax_clock_small
.gif
);
1370 background
-repeat
: no
-repeat
;
1371 background
-position
: 2%
;
1375 /** Need this parent to properly center the notification division */
1380 * Export and Import styles
1383 .exportoptions h3
, .importoptions h3
{
1384 border
-bottom
: 1px
#999999 solid;
1388 .exportoptions ul
, .importoptions ul
, .format_specific_options ul
{
1389 list-style
-type
: none
;
1390 margin
-bottom
: 15px
;
1393 .exportoptions li
, .importoptions li
{
1396 .exportoptions label
, .importoptions label
, .exportoptions p
, .importoptions p
{
1401 #csv_options label.desc, #ldi_options label.desc, #latex_options label.desc, #output label.desc{
1406 .exportoptions
, .importoptions
{
1407 margin
: 20px
30px
30px
10px
1410 .exportoptions
#buttonGo, .importoptions #buttonGo {
1412 -moz
-border
-radius
: 11px
;
1413 -webkit
-border
-radius
: 11px
;
1414 border
-radius
: 11px
;
1415 background
: -webkit
-gradient(linear
, left top
, left bottom
, from(#ffffff), to(#cccccc));
1416 background
: -moz
-linear
-gradient(top
, #ffffff, #cccccc);
1417 filter
: progid
:DXImageTransform
.Microsoft
.gradient(startColorstr
='#ffffff', endColorstr
='#cccccc');
1418 border
: 1px solid
#444444;
1422 .format_specific_options h3
{
1423 margin
: 10px
0px
0px
10px
;
1427 .format_specific_options
{
1428 border
: 1px solid
#999999;
1438 * Export styles only
1440 select
#db_select, select#table_select {
1444 .export_sub_options
{
1445 margin
: 20px
0px
0px
30px
;
1448 .export_sub_options h4
{
1449 border
-bottom
: 1px
#999999 solid;
1452 .export_sub_options li
.subgroup
{
1453 display
: inline
-block
;
1457 .export_sub_options li
{
1461 #quick_or_custom, #output_quick_export {
1465 * Import styles only
1468 .importoptions
#import_notification {
1473 input
#input_import_file {
1478 margin
: 5px
0px
5px
0px
;
1482 * ENUM/SET editor styles
1492 _position
: absolute
; /* hack for IE */
1498 #enum_editor_no_js {
1502 #enum_editor, #enum_editor_no_js {
1503 background
: #D0DCE0;
1510 _position
: absolute
; /* hack for IE6 */
1520 a
.close_enum_editor
{
1524 #enum_editor #values, #enum_editor_no_js #values {
1529 #enum_editor #values input, #enum_editor_no_js #values input {
1537 #enum_editor_output {
1542 * Table structure styles
1544 .structure_actions_dropdown
{
1553 white
-space
: nowrap
;
1561 filter
: alpha(opacity
=0);
1565 .config
-form ul
.tabs
{
1566 margin
: 1.1em
0.2em
0;
1567 padding
: 0 0 0.3em
0;
1572 .config
-form ul
.tabs li
{
1573 float: <?php
echo $left; ?
>;
1576 .config
-form ul
.tabs li a
{
1578 margin
: 0.1em
0.2em
0;
1579 padding
: 0.1em
0.4em
;
1580 white
-space
: nowrap
;
1581 text
-decoration
: none
;
1582 border
: 1px solid
<?php
echo $GLOBALS['cfg']['BgTwo']; ?
>;
1583 border
-bottom
: none
;
1586 .config
-form ul
.tabs li a
:hover
,
1587 .config
-form ul
.tabs li a
:active
,
1588 .config
-form ul
.tabs li a
.active
{
1590 padding
: 0.1em
0.6em
0.2em
;
1593 .config
-form ul
.tabs li a
.active
{
1594 background
-color
: <?php
echo $GLOBALS['cfg']['BgOne']; ?
>;
1597 .config
-form fieldset
{
1601 /*border-color: <?php echo $GLOBALS['cfg']['BgTwo']; ?>;*/
1604 .config
-form legend
{
1608 .config
-form fieldset p
{
1613 .config
-form fieldset
.errors
{ /* form error list */
1614 margin
: 0 -2px
1em
-2px
;
1615 padding
: 0.5em
1.5em
;
1616 background
: #FBEAD9;
1617 border
: 0 #C83838 solid;
1618 border
-width
: 1px
0;
1620 font
-family
: sans
-serif
;
1624 .config
-form fieldset
.inline_errors
{ /* field error list */
1625 margin
: 0.3em
0.3em
0.3em
0;
1632 .config
-form fieldset th
{
1633 padding
: 0.3em
0.3em
0.3em
0.5em
;
1635 vertical
-align
: top
;
1637 background
: transparent
;
1640 .config
-form fieldset
.doc
, .config
-form fieldset
.disabled
-notice
{
1644 .config
-form fieldset
.disabled
-notice
{
1646 text
-transform
: uppercase
;
1651 .config
-form fieldset td
{
1653 padding
-bottom
: 0.3em
;
1654 vertical
-align
: top
;
1657 .config
-form fieldset th small
{
1659 font
-weight
: normal
;
1660 font
-family
: sans
-serif
;
1665 .config
-form fieldset th
, .config
-form fieldset td
{
1666 border
-top
: 1px
<?php
echo $GLOBALS['cfg']['BgTwo']; ?
> solid
;
1669 fieldset
.group
-header th
{
1670 background
: <?php
echo $GLOBALS['cfg']['BgTwo']; ?
>;
1673 fieldset
.group
-header + tr th
{
1677 fieldset
.group
-field th
{
1678 padding
-left
: 1.5em
;
1681 fieldset
.disabled
-field th
,
1682 fieldset
.disabled
-field th small
,
1683 fieldset
.disabled
-field td
{
1685 background
-color
: #ddd;
1688 .config
-form
.lastrow
{
1689 border
-top
: 1px
#000 solid;
1692 .config
-form
.lastrow
{
1693 background
: <?php
echo $GLOBALS['cfg']['ThBackground']; ?
>;;
1698 .config
-form
.lastrow input
{
1704 .config
-form span
.checkbox
{
1706 display
: inline
-block
;
1709 .config
-form
.custom
{ /* customized field */
1713 .config
-form span
.checkbox
.custom
{
1715 border
: 1px
#EDEC90 solid;
1719 .config
-form
.field
-error
{
1720 border
-color
: #A11 !important;
1723 .config
-form input
[type
="text"],
1724 .config
-form select
,
1725 .config
-form textarea
{
1726 border
: 1px
#A7A6AA solid;
1730 .config
-form input
[type
="text"]:focus
,
1731 .config
-form select
:focus
,
1732 .config
-form textarea
:focus
{
1733 border
: 1px
#6676FF solid;
1734 background
: #F7FBFF;
1737 .config
-form
.field
-comment
-mark
{
1746 .config
-form
.field
-comment
-warning
{
1755 .config
-form dd
:before
{
1759 .click
-hide
-message
{
1764 margin
-<?php
echo $left; ?
>: 2em
;
1768 margin
-bottom
: 0.5em
;