From bd5b4bfab9379ad43e9f608d7aeb7045936f8f11 Mon Sep 17 00:00:00 2001 From: Michael Keck Date: Sun, 24 Oct 2004 09:53:39 +0000 Subject: [PATCH] bug #1050666 - Query window too small darkblue/orange theme --- ChangeLog | 6 +++++- config.inc.php | 8 ++++++-- themes/darkblue_orange/layout.inc.php | 4 ++++ themes/original/layout.inc.php | 4 ++++ 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 54cf33c45..116d334f3 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,14 @@ ----------------------- +---------------------- phpMyAdmin - Changelog ---------------------- $Id$ $Source$ +2004-10-24 Michael Keck + * config.inc.php, themes/*/layout.inc.php: + bug #1050666 - Query window too small darkblue/orange theme + 2004-10-23 Marc Delisle * server_privileges.php: top index for user initials diff --git a/config.inc.php b/config.inc.php index c7a96fd23..4be14e1a0 100644 --- a/config.inc.php +++ b/config.inc.php @@ -507,8 +507,12 @@ $cfg['RepeatCells'] = 100; // repeat header names every X cells $cfg['QueryFrame'] = TRUE; // displays a link or icon in the left frame to open the querybox, and activates the querybox when clicking on [Edit] on the results page. $cfg['QueryFrameJS'] = TRUE; // whether to use JavaScript functions for opening a new window for SQL commands. // if set to 'false', the target of the querybox is always the right frame. -$cfg['QueryWindowWidth'] = 550; // Width of Query window -$cfg['QueryWindowHeight'] = 310; // Height of Query window + +/* is moved to ./themes/.../layout.inc.php + * bug #1050666: Query window too small darkblue/orange theme + * $cfg['QueryWindowWidth'] = 550; // Width of Query window + * $cfg['QueryWindowHeight'] = 310; // Height of Query window +*/ $cfg['QueryHistoryDB'] = FALSE; // Set to TRUE if you want DB-based query history. // If FALSE, this utilizes JS-routines to display // query history (lost by window close) diff --git a/themes/darkblue_orange/layout.inc.php b/themes/darkblue_orange/layout.inc.php index 35fff21cb..fcc962b70 100644 --- a/themes/darkblue_orange/layout.inc.php +++ b/themes/darkblue_orange/layout.inc.php @@ -14,6 +14,10 @@ $cfg['BgcolorTwo'] = '#E5E5E5'; // table data row colour, alternate $cfg['BrowsePointerColor'] = '#CCCCFF'; // color of the pointer in browse mode $cfg['BrowseMarkerColor'] = '#FFCC99'; // color of the marker (visually marks row // by clicking on it) in browse mode + +$cfg['QueryWindowWidth'] = 550; // Width of Query window +$cfg['QueryWindowHeight'] = 310; // Height of Query window + /** * SQL Parser Settings */ diff --git a/themes/original/layout.inc.php b/themes/original/layout.inc.php index b48b320f6..50db8527e 100644 --- a/themes/original/layout.inc.php +++ b/themes/original/layout.inc.php @@ -14,6 +14,10 @@ $cfg['BgcolorTwo'] = '#D5D5D5'; // table data row colour, alternate $cfg['BrowsePointerColor'] = '#CCFFCC'; // color of the pointer in browse mode $cfg['BrowseMarkerColor'] = '#FFCC99'; // color of the marker (visually marks row // by clicking on it) in browse mode + +$cfg['QueryWindowWidth'] = 550; // Width of Query window +$cfg['QueryWindowHeight'] = 310; // Height of Query window + /** * SQL Parser Settings */