summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxzilla2007-12-31 16:46:07 +0000
committerxzilla2007-12-31 16:46:07 +0000
commitac381415c2c8940e0938f25180ae70b516fa962c (patch)
tree2f7643e1b007dfbedf42e356846492c47fbc8863
parenta15e4f42bdef6340a646e158bc7070846d03c08c (diff)
widen constraint boxes, i had a hard time working on tables with wide column names, hopefully this lines up ok with other folks browsers too
-rw-r--r--constraints.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/constraints.php b/constraints.php
index 137f8a6b..eb925951 100644
--- a/constraints.php
+++ b/constraints.php
@@ -3,7 +3,7 @@
/**
* List constraints on a table
*
- * $Id: constraints.php,v 1.55 2007/12/28 15:28:57 ioguix Exp $
+ * $Id: constraints.php,v 1.56 2007/12/31 16:46:07 xzilla Exp $
*/
// Include application functions
@@ -53,7 +53,7 @@
$data->setSchema($_REQUEST['schema']);
$selColumns = new XHTML_select('TableColumnList', true, 10);
- $selColumns->set_style('width: 10em;');
+ $selColumns->set_style('width: 15em;');
if ($attrs->recordCount() > 0) {
while (!$attrs->EOF) {
@@ -63,7 +63,7 @@
}
$selIndex = new XHTML_select('IndexColumnList[]', true, 10);
- $selIndex->set_style('width: 10em;');
+ $selIndex->set_style('width: 15em;');
$selIndex->set_attribute('id', 'IndexColumnList');
$buttonAdd = new XHTML_Button('add', '>>');
$buttonAdd->set_attribute('onclick', 'buttonPressed(this);');
@@ -156,7 +156,7 @@
$tables = $data->getTables(true);
$selColumns = new XHTML_select('TableColumnList', true, 10);
- $selColumns->set_style('width: 10em;');
+ $selColumns->set_style('width: 15em;');
if ($attrs->recordCount() > 0) {
while (!$attrs->EOF) {
@@ -166,7 +166,7 @@
}
$selIndex = new XHTML_select('IndexColumnList[]', true, 10);
- $selIndex->set_style('width: 10em;');
+ $selIndex->set_style('width: 15em;');
$selIndex->set_attribute('id', 'IndexColumnList');
$buttonAdd = new XHTML_Button('add', '>>');
$buttonAdd->set_attribute('onclick', 'buttonPressed(this);');
@@ -249,7 +249,7 @@
$selColumns = new XHTML_select('TableColumnList', true, 10);
- $selColumns->set_style('width: 10em;');
+ $selColumns->set_style('width: 15em;');
if ($attrs->recordCount() > 0) {
while (!$attrs->EOF) {
@@ -259,7 +259,7 @@
}
$selIndex = new XHTML_select('IndexColumnList[]', true, 10);
- $selIndex->set_style('width: 10em;');
+ $selIndex->set_style('width: 15em;');
$selIndex->set_attribute('id', 'IndexColumnList');
$buttonAdd = new XHTML_Button('add', '>>');
$buttonAdd->set_attribute('onclick', 'buttonPressed(this);');