diff --git a/ChangeLog b/ChangeLog index 9b8a43d91..f53c55b8a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,12 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-05-26 Alexander M. Turek + * header.inc.php3, config.inc.php3, Documentation.html, images/bkg.gif, + images/vertical_line.gif: + - Made it possible to specify a background image for the right frame. + - Renamed 'images/bkg.gif' to 'images/vertical_line.gif'. + 2002-05-26 Loïc Chapeaux * scripts/create-release.sh, line 60: added the "-P" option (prune empty directory) for the cvs checkout. diff --git a/Documentation.html b/Documentation.html index ae5c11c76..9b84a4290 100755 --- a/Documentation.html +++ b/Documentation.html @@ -1028,6 +1028,14 @@ $cfg['PmaAbsoluteUri'] = (!empty($HTTPS) ? 'https' : 'http') . '://'

+
+ $cfg['RightBgImage'] string +
+
+ The URI of the background image used for the right frame. It can be + absolute as well as relative from your phpMyAdmin directory. +
+
$cfg['LeftPointerColor'] string [HTML color]
The color (HTML) used for the pointer in the left frame (does not work diff --git a/config.inc.php3 b/config.inc.php3 index 58138e92e..cd7b55d60 100755 --- a/config.inc.php3 +++ b/config.inc.php3 @@ -195,6 +195,8 @@ $cfg['LeftBgColor'] = '#D0DCE0'; // background color for the left fra $cfg['LeftPointerColor'] = '#CCFFCC'; // color of the pointer in left frame // (blank for no pointer) $cfg['RightBgColor'] = '#F5F5F5'; // background color for the right frame +$cfg['RightBgImage'] = ''; // path to a background image for the right frame + // (leave blank for no background image) $cfg['Border'] = 0; // border width on tables $cfg['ThBgcolor'] = '#D3DCE3'; // table header row colour $cfg['BgcolorOne'] = '#CCCCCC'; // table data row colour diff --git a/header.inc.php3 b/header.inc.php3 index a3f0ae4b2..967535d8b 100755 --- a/header.inc.php3 +++ b/header.inc.php3 @@ -59,8 +59,13 @@ body { font-family: ; font-size: ; color: #000000; - background-image: url('./images/bkg.gif'); - background-repeat: repeat-y; + background-color: } pre, tt {font-size: } @@ -166,7 +171,10 @@ echo "\n"; - +