textarea tweak
This commit is contained in:
parent
5a692586e9
commit
f3105ed1df
2 changed files with 5 additions and 3 deletions
|
@ -73,7 +73,7 @@ class SetupBlock extends Block {
|
|||
if(!is_null($label)) {
|
||||
$this->body .= "<label for='$name'>$label</label>";
|
||||
}
|
||||
$this->body .= "<textarea rows='5' cols='40' id='$name' name='_config_$name'>$val</textarea>\n";
|
||||
$this->body .= "<textarea rows='5' id='$name' name='_config_$name'>$val</textarea>\n";
|
||||
$this->body .= "<!--<br><br><br><br>-->\n"; // setup page auto-layout counts <br> tags
|
||||
$this->body .= "<input type='hidden' name='_type_$name' value='string'>\n";
|
||||
}
|
||||
|
|
|
@ -182,11 +182,13 @@ UL {
|
|||
.hrrcontent {margin: 0px 8px;}
|
||||
|
||||
.setupblock {
|
||||
border: 1px solid #AAA;
|
||||
padding: 8px;
|
||||
text-align: center;
|
||||
margin: 16px;
|
||||
width: 350px;
|
||||
}
|
||||
.setupblock TEXTAREA {
|
||||
width: 300px;
|
||||
}
|
||||
|
||||
.helpable {
|
||||
border-bottom: 1px dashed gray;
|
||||
|
|
Reference in a new issue