bug #1664240 [GUI] css height makes cfg TextareaRows useless

This commit is contained in:
Sebastian Mendel
2007-12-14 09:22:43 +00:00
parent c3f7496a7f
commit 899c69facd
4 changed files with 8 additions and 1 deletions

View File

@@ -23,6 +23,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
+ rfe #1758177 [core] Add the Geometry DataTypes + rfe #1758177 [core] Add the Geometry DataTypes
+ rfe #1741101, patch #1798184 UUID default for CHAR(36) PRIMARY KEY, + rfe #1741101, patch #1798184 UUID default for CHAR(36) PRIMARY KEY,
thanks to Gert Palok - gert_p thanks to Gert Palok - gert_p
- bug #1664240 [GUI] css height makes cfg TextareaRows useless
2.11.4.0 (not yet released) 2.11.4.0 (not yet released)
- bug #1843428 [GUI] Space issue with DROP/DELETE/ALTER TABLE - bug #1843428 [GUI] Space issue with DROP/DELETE/ALTER TABLE

View File

@@ -290,7 +290,10 @@ fieldset legend {
button { display: inline; } button { display: inline; }
/* Textarea */ /* Textarea */
textarea { overflow: auto; } textarea {
overflow: auto;
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
}
/* topmenu */ /* topmenu */

View File

@@ -108,6 +108,7 @@ form {
textarea { textarea {
overflow: visible; overflow: visible;
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
} }
fieldset { fieldset {

View File

@@ -91,6 +91,7 @@ form {
textarea { textarea {
overflow: visible; overflow: visible;
height: <?php echo ceil($GLOBALS['cfg']['TextareaRows'] * 1.2); ?>em;
} }
fieldset { fieldset {