From 679a838efc649c6779a6de64a237dbaee0a628bc Mon Sep 17 00:00:00 2001
From: thomaswoehlke <thomas.woehlke@gmail.com>
Date: Thu, 27 May 2021 23:16:12 +0200
Subject: [PATCH] Refactoring: vaccination

---
 .../templates/owid/country/all/owid_country_all_table.html    | 2 +-
 .../data_owid/templates/owid/flat/owid_flat_table.html        | 4 ++--
 .../templates/owid/imported/owid_imported_table.html          | 4 ++--
 .../data_owid/templates/owid/owid_data/owid_data_table.html   | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/flask_covid19/blueprints/data_owid/templates/owid/country/all/owid_country_all_table.html b/src/flask_covid19/blueprints/data_owid/templates/owid/country/all/owid_country_all_table.html
index c2b4b4cf..c6c85bfd 100644
--- a/src/flask_covid19/blueprints/data_owid/templates/owid/country/all/owid_country_all_table.html
+++ b/src/flask_covid19/blueprints/data_owid/templates/owid/country/all/owid_country_all_table.html
@@ -39,7 +39,7 @@
             </tr>
         {% endfor %}
         </tbody>
-        <tfoot>
+        <tfoot class="table-secondary">
             {% include 'owid/country/all/owid_country_all_table_head.html' %}
         </tfoot>
     </table>
diff --git a/src/flask_covid19/blueprints/data_owid/templates/owid/flat/owid_flat_table.html b/src/flask_covid19/blueprints/data_owid/templates/owid/flat/owid_flat_table.html
index 5c6b5159..bf7eed1b 100644
--- a/src/flask_covid19/blueprints/data_owid/templates/owid/flat/owid_flat_table.html
+++ b/src/flask_covid19/blueprints/data_owid/templates/owid/flat/owid_flat_table.html
@@ -1,6 +1,6 @@
                 <div class="table-responsive">
                 <table class="table table-hover table-striped table-dark">
-                    <thead>
+                    <thead class="table-secondary">
                         {% include 'owid/flat/owid_flat_table_header.html' %}
                     </thead>
                     <tbody>
@@ -68,7 +68,7 @@
                         </tr>
                     {% endfor %}
                     </tbody>
-                    <tfoot>
+                    <tfoot class="table-secondary">
                          {% include 'owid/flat/owid_flat_table_header.html' %}
                     </tfoot>
                 </table>
diff --git a/src/flask_covid19/blueprints/data_owid/templates/owid/imported/owid_imported_table.html b/src/flask_covid19/blueprints/data_owid/templates/owid/imported/owid_imported_table.html
index ac8c1c07..d3be58dd 100644
--- a/src/flask_covid19/blueprints/data_owid/templates/owid/imported/owid_imported_table.html
+++ b/src/flask_covid19/blueprints/data_owid/templates/owid/imported/owid_imported_table.html
@@ -1,6 +1,6 @@
                 <div class="table-responsive">
                 <table class="table table-hover table-striped table-dark">
-                    <thead>
+                    <thead class="table-secondary">
                         {% include 'owid/imported/owid_imported_table_head.html' %}
                     </thead>
                     <tbody>
@@ -68,7 +68,7 @@
                         </tr>
                     {% endfor %}
                     </tbody>
-                    <tfoot>
+                    <tfoot class="table-secondary">
                         {% include 'owid/imported/owid_imported_table_head.html' %}
                     </tfoot>
                 </table>
diff --git a/src/flask_covid19/blueprints/data_owid/templates/owid/owid_data/owid_data_table.html b/src/flask_covid19/blueprints/data_owid/templates/owid/owid_data/owid_data_table.html
index 25ddca08..e03f2b04 100644
--- a/src/flask_covid19/blueprints/data_owid/templates/owid/owid_data/owid_data_table.html
+++ b/src/flask_covid19/blueprints/data_owid/templates/owid/owid_data/owid_data_table.html
@@ -144,7 +144,7 @@
             </tr>
         {% endfor %}
         </tbody>
-        <tfoot>
+        <tfoot class="table-secondary">
             {% include 'owid/owid_data/owid_data_table_head.html' %}
         </tfoot>
     </table>
-- 
GitLab