aboutsummaryrefslogtreecommitdiff
path: root/qc_app/static/css/styles.css
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-04-28 09:50:58 +0300
committerFrederick Muriuki Muriithi2022-04-28 09:50:58 +0300
commitdefc1cf0c1635f3262200a9ba25d8bd0c6fc0a93 (patch)
tree8f637c1890037d046b4d63ecb2b9ff582aa506bb /qc_app/static/css/styles.css
parentaadd9aa5dd4c552b573828ddac581a8b7064b0e2 (diff)
downloadgn-uploader-defc1cf0c1635f3262200a9ba25d8bd0c6fc0a93.tar.gz
Update queuing and display results of file parsing
* Make the 'worker' functions free from needing the application context by passing all the details they need as arguments. * Enable the display of parsing results.
Diffstat (limited to 'qc_app/static/css/styles.css')
-rw-r--r--qc_app/static/css/styles.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/qc_app/static/css/styles.css b/qc_app/static/css/styles.css
index d009e40..a5f0e01 100644
--- a/qc_app/static/css/styles.css
+++ b/qc_app/static/css/styles.css
@@ -41,3 +41,37 @@ fieldset {
background-color: #F8D7DA;
border-color: #E7C6C9;
}
+
+.alert-success {
+ colour: #448944;
+ font-weight: bold;
+ background-color: #AAEEAA;
+}
+
+table {
+ border-collapse: collapse;
+}
+
+.reports-table {
+ border: 1px solid;
+ border-color: #336699;
+}
+
+.reports-table thead {
+ color: #FEFEFE;
+ background-color: #336699;
+ border-width: 0 1px 0 1px;
+ border-style: solid;
+ border-color: #336699;
+}
+
+.reports-table thead tr th {
+ text-transform: capitalize;
+}
+
+.reports-table th,td {
+ border-width: 0 1px 0 1px;
+ border-style: solid;
+ border-color: #336699;
+ padding: 0 0.3em 0.3em 0.3em;
+}