From defc1cf0c1635f3262200a9ba25d8bd0c6fc0a93 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 28 Apr 2022 09:50:58 +0300 Subject: 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. --- qc_app/static/css/styles.css | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'qc_app/static/css') 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; +} -- cgit v1.2.3