mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 16:55:05 +02:00
Wiz. Added textarea input
Former-commit-id: 319ab37377e6649c1cd6c6adea1e956e934f2e23
This commit is contained in:
parent
65db8482c1
commit
a63e497497
@ -388,6 +388,17 @@ class Wizard
|
|||||||
case 'switch':
|
case 'switch':
|
||||||
return html_print_switch($data);
|
return html_print_switch($data);
|
||||||
|
|
||||||
|
case 'textarea':
|
||||||
|
return html_print_textarea(
|
||||||
|
$data['name'],
|
||||||
|
$data['rows'],
|
||||||
|
$data['columns'],
|
||||||
|
((isset($data['value']) === true) ? $data['value'] : ''),
|
||||||
|
((isset($data['attributes']) === true) ? $data['attributes'] : ''),
|
||||||
|
((isset($data['return']) === true) ? $data['return'] : false),
|
||||||
|
((isset($data['class']) === true) ? $data['class'] : '')
|
||||||
|
);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
// Ignore.
|
// Ignore.
|
||||||
break;
|
break;
|
||||||
|
@ -10,6 +10,12 @@ ul.wizard li {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ul.wizard li > label:not(.p-switch) {
|
ul.wizard li > label:not(.p-switch) {
|
||||||
|
width: 250px;
|
||||||
|
vertical-align: top;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.wizard li > textarea {
|
||||||
width: 250px;
|
width: 250px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user