aboutsummaryrefslogtreecommitdiff
path: root/qc_app/static
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-08-05 10:10:56 +0300
committerFrederick Muriuki Muriithi2022-08-05 10:10:56 +0300
commit19c376c4b60592f4bba0e26952faa3a71b6f5641 (patch)
tree0916ef296a57bb450102093429422953d92c009e /qc_app/static
parent3da6848381b6103fbb58eeab8d7051cba0bded58 (diff)
downloadgn-uploader-19c376c4b60592f4bba0e26952faa3a71b6f5641.tar.gz
Update job status. Display stdout and stderr outputs
* Display the status of the job, as it is running * Display STDERR output if an error occurs * Display STDOUT output as job is running and on successful completion of the job
Diffstat (limited to 'qc_app/static')
-rw-r--r--qc_app/static/css/styles.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/qc_app/static/css/styles.css b/qc_app/static/css/styles.css
index 5340701..d20c1fb 100644
--- a/qc_app/static/css/styles.css
+++ b/qc_app/static/css/styles.css
@@ -2,6 +2,10 @@
box-sizing: border-box;
}
+body {
+ padding: 0 1em 0 1em;
+}
+
label, legend {
text-transform: capitalize;
}
@@ -130,3 +134,12 @@ form legend {
font-weight: bolder;
line-height: 2em;
}
+
+.cli-output {
+ background: black;
+ color: #00DD00;
+ padding: 1em;
+ font-weight: bold;
+ border-radius: 0.8em;
+ width: 55em;
+}