fixed image paths
This commit is contained in:
@@ -440,7 +440,7 @@ fieldset.confirmation legend {
|
||||
font-weight: normal;
|
||||
color: #000000;
|
||||
background-color: #DDDDDD;
|
||||
background-image: url(../themes/aqua/img/AquaStringGreyLarge.png);
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>AquaStringGreyLarge.png);
|
||||
background-repeat: repeat-x;
|
||||
|
||||
}
|
||||
@@ -566,7 +566,7 @@ ul#topmenu li {
|
||||
|
||||
/* default tab styles */
|
||||
.tab, .tabcaution, .tabactive {
|
||||
background-image: url(../themes/aqua/img/AquaStringGrey.png); background-repeat: repeat-x;
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>AquaStringGrey.png); background-repeat: repeat-x;
|
||||
background-color: #E5E5E5;
|
||||
border: 0.1em solid silver;
|
||||
border-bottom: 0;
|
||||
@@ -585,7 +585,7 @@ a.tabcaution:hover,
|
||||
padding: 0.2em 0.4em 0.2em 0.4em;
|
||||
text-decoration: none;
|
||||
background-color: #E5E5E5;
|
||||
background-image: url(../themes/aqua/img/AquaStringGrey.png); background-repeat: repeat-x;
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>AquaStringGrey.png); background-repeat: repeat-x;
|
||||
}
|
||||
|
||||
a.tabcaution:hover {
|
||||
@@ -601,7 +601,7 @@ a.tab:hover,
|
||||
font-weight: bold;
|
||||
color: #FFFFFF;
|
||||
background-color: #8FBDE9;
|
||||
background-image: url(../themes/aqua/img/AquaString.png); background-repeat: repeat-x;
|
||||
background-image: url(../<?php echo $_SESSION['PMA_Theme']->getImgPath(); ?>AquaString.png); background-repeat: repeat-x;
|
||||
}
|
||||
|
||||
/* disabled drop/empty tabs */
|
||||
|
@@ -14,7 +14,7 @@ $GLOBALS['cfg']['NaviWidth'] = 175;
|
||||
$GLOBALS['cfg']['NaviColor'] = '#ffffff';
|
||||
|
||||
// background for the navi frame
|
||||
$GLOBALS['cfg']['NaviBackground'] = '#3E7BB6 right repeat-y url(../themes/aqua/img/bg_aquaGrad.png)';
|
||||
$GLOBALS['cfg']['NaviBackground'] = '#3E7BB6 right repeat-y url(../' . $_SESSION['PMA_Theme']->getImgPath() . 'bg_aquaGrad.png)';
|
||||
|
||||
// color of the pointer in navi frame
|
||||
$GLOBALS['cfg']['NaviPointerColor'] = 'Navy';
|
||||
@@ -26,7 +26,7 @@ $GLOBALS['cfg']['NaviPointerColor'] = 'Navy';
|
||||
$GLOBALS['cfg']['MainColor'] = '#000000';
|
||||
|
||||
// background for the main frame
|
||||
//$GLOBALS['cfg']['MainBackground'] = '#3E7BB6 right repeat url(../themes/aqua/img/bg_main.png)';
|
||||
//$GLOBALS['cfg']['MainBackground'] = '#3E7BB6 right repeat url(../' . $_SESSION['PMA_Theme']->getImgPath() . 'bg_main.png)';
|
||||
$GLOBALS['cfg']['MainBackground'] = 'white';
|
||||
|
||||
// color of the pointer in browse mode
|
||||
@@ -61,7 +61,7 @@ $GLOBALS['cfg']['FontSize'] = '';
|
||||
// border
|
||||
$GLOBALS['cfg']['Border'] = 0;
|
||||
// table header and footer color
|
||||
$GLOBALS['cfg']['ThBackground'] = '#cacaca repeat-x url(../themes/aqua/img/bg_tblHeaders.png)';
|
||||
$GLOBALS['cfg']['ThBackground'] = '#cacaca repeat-x url(../' . $_SESSION['PMA_Theme']->getImgPath() . 'bg_tblHeaders.png)';
|
||||
// table header and footer background
|
||||
$GLOBALS['cfg']['ThColor'] = '#000000';
|
||||
// table data row background
|
||||
|
Reference in New Issue
Block a user