get rid of propicon
This commit is contained in:
@@ -194,13 +194,16 @@ table tr.even {
|
||||
text-align: <?php echo $left; ?>;
|
||||
}
|
||||
|
||||
<?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
|
||||
/* marked table rows */
|
||||
table tr.marked th,
|
||||
table tr.marked {
|
||||
background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?>
|
||||
/* hovered items */
|
||||
.odd:hover,
|
||||
.even:hover,
|
||||
@@ -216,6 +219,7 @@ table tr.hover th {
|
||||
background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
/**
|
||||
* marks table rows/cells if the db field is in a where condition
|
||||
@@ -365,7 +369,7 @@ div.notice {
|
||||
border: 0.1em solid #FFD700;
|
||||
width: 90%;
|
||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
|
||||
background-repeat: no-repeat;
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||
background-position: 10px 50%;
|
||||
@@ -396,7 +400,7 @@ div.warning {
|
||||
border: 0.1em solid #CC0000;
|
||||
width: 90%;
|
||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
|
||||
background-repeat: no-repeat;
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||
background-position: 10px 50%;
|
||||
@@ -427,7 +431,7 @@ div.error {
|
||||
border: 0.1em solid #ff0000;
|
||||
width: 90%;
|
||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
|
||||
background-repeat: no-repeat;
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||
background-position: 10px 50%;
|
||||
@@ -458,7 +462,7 @@ fieldset.confirmation legend {
|
||||
border-right: 0.1em solid #FF0000;
|
||||
font-weight: bold;
|
||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_really.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_really.png);
|
||||
background-repeat: no-repeat;
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||
background-position: 5px 50%;
|
||||
@@ -649,7 +653,7 @@ a.tab:hover,
|
||||
span.tab,
|
||||
a.warning,
|
||||
span.tabcaution {
|
||||
cursor: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
|
||||
cursor: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
|
||||
}
|
||||
<?php } ?>
|
||||
/* end topmenu */
|
||||
@@ -943,7 +947,7 @@ div#queryboxcontainer div#bookmarkoptions {
|
||||
|
||||
/* main page */
|
||||
#maincontainer {
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png);
|
||||
background-position: <?php echo $right; ?> bottom;
|
||||
background-repeat: no-repeat;
|
||||
border-bottom: 1px solid silver;
|
||||
@@ -956,7 +960,7 @@ div#queryboxcontainer div#bookmarkoptions {
|
||||
}
|
||||
|
||||
#maincontainer ul {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>item_<?php echo $GLOBALS['text_dir']; ?>.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>item_<?php echo $GLOBALS['text_dir']; ?>.png);
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
@@ -969,96 +973,96 @@ div#queryboxcontainer div#bookmarkoptions {
|
||||
<?php if ($GLOBALS['cfg']['MainPageIconic']) { ?>
|
||||
/* iconic view for ul items */
|
||||
li#li_create_database {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png);
|
||||
}
|
||||
|
||||
li#li_select_lang {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
|
||||
}
|
||||
|
||||
li#li_select_mysql_collation,
|
||||
li#li_select_mysql_charset {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
|
||||
}
|
||||
|
||||
li#li_select_theme{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
|
||||
}
|
||||
|
||||
li#li_server_info{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
|
||||
}
|
||||
|
||||
li#li_user_info{
|
||||
/* list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
|
||||
/* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
|
||||
}
|
||||
|
||||
li#li_mysql_status{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png);
|
||||
}
|
||||
|
||||
li#li_mysql_variables{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png);
|
||||
}
|
||||
|
||||
li#li_mysql_processes{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png);
|
||||
}
|
||||
|
||||
li#li_mysql_collations{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
|
||||
}
|
||||
|
||||
li#li_mysql_engines{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png);
|
||||
}
|
||||
|
||||
li#li_mysql_binlogs {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png);
|
||||
}
|
||||
|
||||
li#li_mysql_databases {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png);
|
||||
}
|
||||
|
||||
li#li_export {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png);
|
||||
}
|
||||
|
||||
li#li_import {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png);
|
||||
}
|
||||
|
||||
li#li_change_password {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png);
|
||||
}
|
||||
|
||||
li#li_log_out {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
|
||||
}
|
||||
|
||||
li#li_pma_docs {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
|
||||
}
|
||||
|
||||
li#li_phpinfo {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png);
|
||||
}
|
||||
|
||||
li#li_pma_homepage {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_home.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_home.png);
|
||||
}
|
||||
|
||||
li#li_mysql_privilegs{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png);
|
||||
}
|
||||
|
||||
li#li_switch_dbstats {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png);
|
||||
}
|
||||
|
||||
li#li_flush_privileges {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png);
|
||||
}
|
||||
/* END iconic view for ul items */
|
||||
<?php } /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 6.7 KiB |
@@ -30,7 +30,7 @@ $GLOBALS['cfg']['MainColor'] = '#000000';
|
||||
|
||||
// background for the main frame
|
||||
$GLOBALS['cfg']['MainBackground'] = '#ffffff';
|
||||
//$GLOBALS['cfg']['MainBackground'] = '#ffffff url(../' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
|
||||
//$GLOBALS['cfg']['MainBackground'] = '#ffffff url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
|
||||
|
||||
// foreground (text) color of the pointer in browse mode
|
||||
$GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
|
||||
@@ -64,7 +64,7 @@ $GLOBALS['cfg']['FontFamilyFixed'] = 'monospace';
|
||||
// border
|
||||
$GLOBALS['cfg']['Border'] = 0;
|
||||
// table header and footer color
|
||||
$GLOBALS['cfg']['ThBackground'] = '#ff9900 url(../' . $_SESSION['PMA_Theme']->getImgPath() . 'tbl_th.png) repeat-x top';
|
||||
$GLOBALS['cfg']['ThBackground'] = '#ff9900 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'tbl_th.png) repeat-x top';
|
||||
// table header and footer background
|
||||
$GLOBALS['cfg']['ThColor'] = '#000000';
|
||||
// table data row background
|
||||
|
@@ -102,7 +102,7 @@ div#leftframelinks a:hover {
|
||||
|
||||
/* serverlist */
|
||||
#body_leftFrame #list_server {
|
||||
list-style-image: url(../<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_host.png);
|
||||
list-style-image: url(<?php echo $GLOBALS['cfg']['ThemePath']; ?>/original/img/s_host.png);
|
||||
list-style-position: inside;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
|
@@ -169,13 +169,16 @@ table tr.even {
|
||||
text-align: <?php echo $left; ?>;
|
||||
}
|
||||
|
||||
<?php if ($GLOBALS['cfg']['BrowseMarkerEnable']) { ?>
|
||||
/* marked table rows */
|
||||
table tr.marked th,
|
||||
table tr.marked {
|
||||
background: <?php echo $GLOBALS['cfg']['BrowseMarkerBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['BrowseMarkerColor']; ?>;
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($GLOBALS['cfg']['BrowsePointerEnable']) { ?>
|
||||
/* hovered items */
|
||||
.odd:hover,
|
||||
.even:hover,
|
||||
@@ -191,6 +194,7 @@ table tr.hover th {
|
||||
background: <?php echo $GLOBALS['cfg']['BrowsePointerBackground']; ?>;
|
||||
color: <?php echo $GLOBALS['cfg']['BrowsePointerColor']; ?>;
|
||||
}
|
||||
<?php } ?>
|
||||
|
||||
/**
|
||||
* marks table rows/cells if the db field is in a where condition
|
||||
@@ -340,7 +344,7 @@ div.notice {
|
||||
margin: 0.5em 0 0.5em 0;
|
||||
border: 0.1em solid #FFD700;
|
||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_notice.png);
|
||||
background-repeat: no-repeat;
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||
background-position: 10px 50%;
|
||||
@@ -370,7 +374,7 @@ div.warning {
|
||||
margin: 0.5em 0 0.5em 0;
|
||||
border: 0.1em solid #CC0000;
|
||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_warn.png);
|
||||
background-repeat: no-repeat;
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||
background-position: 10px 50%;
|
||||
@@ -400,7 +404,7 @@ div.error {
|
||||
margin: 0.5em 0 0.5em 0;
|
||||
border: 0.1em solid #ff0000;
|
||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_error.png);
|
||||
background-repeat: no-repeat;
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||
background-position: 10px 50%;
|
||||
@@ -431,7 +435,7 @@ fieldset.confirmation legend {
|
||||
border-right: 0.1em solid #FF0000;
|
||||
font-weight: bold;
|
||||
<?php if ( $GLOBALS['cfg']['ErrorIconic'] ) { ?>
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_really.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_really.png);
|
||||
background-repeat: no-repeat;
|
||||
<?php if ( $GLOBALS['text_dir'] === 'ltr' ) { ?>
|
||||
background-position: 5px 50%;
|
||||
@@ -621,7 +625,7 @@ a.tab:hover,
|
||||
span.tab,
|
||||
a.warning,
|
||||
span.tabcaution {
|
||||
cursor: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
|
||||
cursor: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>error.ico), default;
|
||||
}
|
||||
<?php } ?>
|
||||
/* end topmenu */
|
||||
@@ -889,7 +893,7 @@ div#queryboxcontainer div#bookmarkoptions {
|
||||
|
||||
/* main page */
|
||||
#maincontainer {
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png);
|
||||
background-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>logo_right.png);
|
||||
background-position: <?php echo $right; ?> bottom;
|
||||
background-repeat: no-repeat;
|
||||
border-bottom: 1px solid silver;
|
||||
@@ -902,7 +906,7 @@ div#queryboxcontainer div#bookmarkoptions {
|
||||
}
|
||||
|
||||
#maincontainer ul {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>item_<?php echo $GLOBALS['text_dir']; ?>.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>item_<?php echo $GLOBALS['text_dir']; ?>.png);
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
@@ -915,96 +919,96 @@ div#queryboxcontainer div#bookmarkoptions {
|
||||
<?php if ($GLOBALS['cfg']['MainPageIconic']) { ?>
|
||||
/* iconic view for ul items */
|
||||
li#li_create_database {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_newdb.png);
|
||||
}
|
||||
|
||||
li#li_select_lang {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_lang.png);
|
||||
}
|
||||
|
||||
li#li_select_mysql_collation,
|
||||
li#li_select_mysql_charset {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
|
||||
}
|
||||
|
||||
li#li_select_theme{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_theme.png);
|
||||
}
|
||||
|
||||
li#li_server_info{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_host.png);
|
||||
}
|
||||
|
||||
li#li_user_info{
|
||||
/* list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
|
||||
/* list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png); */
|
||||
}
|
||||
|
||||
li#li_mysql_status{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_status.png);
|
||||
}
|
||||
|
||||
li#li_mysql_variables{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_vars.png);
|
||||
}
|
||||
|
||||
li#li_mysql_processes{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_process.png);
|
||||
}
|
||||
|
||||
li#li_mysql_collations{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_asci.png);
|
||||
}
|
||||
|
||||
li#li_mysql_engines{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_engine.png);
|
||||
}
|
||||
|
||||
li#li_mysql_binlogs {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_tbl.png);
|
||||
}
|
||||
|
||||
li#li_mysql_databases {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_db.png);
|
||||
}
|
||||
|
||||
li#li_export {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_export.png);
|
||||
}
|
||||
|
||||
li#li_import {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_import.png);
|
||||
}
|
||||
|
||||
li#li_change_password {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_passwd.png);
|
||||
}
|
||||
|
||||
li#li_log_out {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_loggoff.png);
|
||||
}
|
||||
|
||||
li#li_pma_docs {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_docs.png);
|
||||
}
|
||||
|
||||
li#li_phpinfo {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>php_sym.png);
|
||||
}
|
||||
|
||||
li#li_pma_homepage {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_home.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_home.png);
|
||||
}
|
||||
|
||||
li#li_mysql_privilegs{
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_rights.png);
|
||||
}
|
||||
|
||||
li#li_switch_dbstats {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>b_dbstatistics.png);
|
||||
}
|
||||
|
||||
li#li_flush_privileges {
|
||||
list-style-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png);
|
||||
list-style-image: url(<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>s_reload.png);
|
||||
}
|
||||
/* END iconic view for ul items */
|
||||
<?php } /* end if $GLOBALS['cfg']['MainPageIconic'] */ ?>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 6.7 KiB |
@@ -29,7 +29,7 @@ $GLOBALS['cfg']['MainColor'] = '#000000';
|
||||
|
||||
// background for the main frame
|
||||
$GLOBALS['cfg']['MainBackground'] = '#F5F5F5';
|
||||
//$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(../' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
|
||||
//$GLOBALS['cfg']['MainBackground'] = '#F5F5F5 url(' . $_SESSION['PMA_Theme']->getImgPath() . 'vertical_line.png) repeat-y';
|
||||
|
||||
// foreground (text) color of the pointer in browse mode
|
||||
$GLOBALS['cfg']['BrowsePointerColor'] = '#000000';
|
||||
|
Reference in New Issue
Block a user