mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 00:45:34 +00:00
make textarea wider
This commit is contained in:
parent
4a69c1258e
commit
360b1be159
|
@ -33,7 +33,7 @@ class SeedDMS_View_Settings extends SeedDMS_Bootstrap_Style {
|
|||
|
||||
protected function showTextField($name, $value, $type='') { /* {{{ */
|
||||
if($type != 'password' && strlen($value) > 80)
|
||||
echo '<textarea class="input-xlarge" name="'.$name.'">'.$value.'</textarea>';
|
||||
echo '<textarea class="input-xxlarge" name="'.$name.'">'.$value.'</textarea>';
|
||||
elseif(strlen($value) > 40)
|
||||
echo '<input '.($type=='password' ? 'type="password"' : 'type="text"').'" class="input-xxlarge" name="'.$name.'" value="'.$value.'"/>';
|
||||
elseif(strlen($value) > 30)
|
||||
|
|
Loading…
Reference in New Issue
Block a user