Wizard: Use <pre> instead of <textarea> for displaying the setup's log

This commit is contained in:
Johannes Meyer 2015-07-30 14:13:52 +02:00
parent 8c71d56050
commit 0155599a1a
2 changed files with 4 additions and 3 deletions

View File

@ -27,7 +27,7 @@
); ?> ); ?>
<?php endif ?> <?php endif ?>
</div> </div>
<textarea class="report" readonly><?= join("\n\n", array_map(function($a) { <pre class="log-output"><?= join("\n\n", array_map(function($a) {
return join("\n", $a); return join("\n", $a);
}, $report)); ?></textarea> }, $report)); ?></pre>
</div> </div>

View File

@ -286,9 +286,10 @@ form#setup_requirements {
} }
} }
textarea.report { pre.log-output {
width: 66%; width: 66%;
height: 25em; height: 25em;
max-height: none;
} }
div.buttons { div.buttons {