diff options
author | Frederick Muriuki Muriithi | 2024-12-03 15:09:23 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-12-03 15:11:29 -0600 |
commit | 2f4d48586a67e985f0b47b358ef15d8113b56ddb (patch) | |
tree | 9a0e4aa6c451727e5aa5daf2f5c60cf6be83c6ca /uploader/templates/cli-output.html | |
parent | 83e61557d34146454233c5c31eb6916323268f7e (diff) | |
download | gn-uploader-2f4d48586a67e985f0b47b358ef15d8113b56ddb.tar.gz |
Improve UI: stdout/stderr output
Add styling to section and limit the height of the content.
Diffstat (limited to 'uploader/templates/cli-output.html')
-rw-r--r-- | uploader/templates/cli-output.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uploader/templates/cli-output.html b/uploader/templates/cli-output.html index 33fb73b..64b1a9a 100644 --- a/uploader/templates/cli-output.html +++ b/uploader/templates/cli-output.html @@ -1,7 +1,7 @@ {%macro cli_output(job, stream)%} -<h4>{{stream | upper}} Output</h4> -<div class="cli-output"> +<h4 class="subheading">{{stream | upper}} Output</h4> +<div class="cli-output" style="max-height: 10em; overflow: auto;"> <pre>{{job.get(stream, "")}}</pre> </div> |