diff --git a/ChangeLog b/ChangeLog index 207a63a5c..6ad9c9f15 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,12 @@ phpMyAdmin - Changelog $Id$ $Source$ +2001-10-07 Loïc Chapeaux + * config.inc.php3, lines 152-153; Documentation.html, lines 573-581; + header.inc.php3, line 119; left.php3, line 150: the background colors for + both the fames are now defined in the configuration file thanks to + Laurent Penou . + 2001-10-04 Loïc Chapeaux * left.php3: - improved the js object detection system; diff --git a/Documentation.html b/Documentation.html index 3f7b7fda7..7740f97ef 100755 --- a/Documentation.html +++ b/Documentation.html @@ -570,6 +570,15 @@

+
+ $cfgLeftBgColor string [HTML color] + $cfgRightBgColor string [HTML color] +
+
+ The background colors (HTML) used for both the frames. +

+
+
$cfgBorder integer
The size of a table's border. diff --git a/config.inc.php3 b/config.inc.php3 index de9077009..3e411087b 100755 --- a/config.inc.php3 +++ b/config.inc.php3 @@ -149,6 +149,8 @@ require('./libraries/select_lang.lib.php3'); /** * Customization & design */ +$cfgLeftBgColor = '#D0DCE0'; // background color for the left frame +$cfgRightBgColor = '#F5F5F5'; // background color for the right frame $cfgBorder = 0; // border width on tables $cfgThBgcolor = '#D3DCE3'; // table header row colour $cfgBgcolorOne = '#CCCCCC'; // table data row colour diff --git a/header.inc.php3 b/header.inc.php3 index 911a34d84..6a07ac533 100755 --- a/header.inc.php3 +++ b/header.inc.php3 @@ -43,7 +43,7 @@ echo '' . "\n"; phpMyAdmin