Moved global styles to base view template until permanently merged into global CSS file.

This commit is contained in:
Matt Scott 2023-02-19 11:39:56 -05:00
parent b52b7d7e4f
commit ec28e76ff5
2 changed files with 6 additions and 6 deletions

View File

@ -23,6 +23,12 @@
.sidebar .info { color: #fff; } .sidebar .info { color: #fff; }
.sidebar .info p { margin: 0; } .sidebar .info p { margin: 0; }
.sidebar .info a { font-size: 0.8em; } .sidebar .info a { font-size: 0.8em; }
/* Global Styles */
table.records thead th, table.records tbody td { text-align: center; vertical-align: middle; }
table.records thead th:last-of-type { width: 50px; }
div.table-responsive > div.dataTables_wrapper > div.row:first-of-type { margin: 0 0.5em 0 0.5em; }
div.table-responsive > div.dataTables_wrapper > div.row:last-of-type { margin: 0.4em 0.5em 0.4em 0.5em; }
div.table-responsive > div.dataTables_wrapper table.dataTable { margin: 0 !important; }
</style> </style>
{% block head_styles %}{% endblock %} {% block head_styles %}{% endblock %}
{% endblock %} {% endblock %}

View File

@ -238,12 +238,6 @@
{% block head_styles %} {% block head_styles %}
<style type="text/css"> <style type="text/css">
/* Global Styles */
table.records thead th, table.records tbody td { text-align: center; vertical-align: middle; }
table.records thead th:last-of-type { width: 50px; }
div.table-responsive > div.dataTables_wrapper > div.row:first-of-type { margin: 0 0.5em 0 0.5em; }
div.table-responsive > div.dataTables_wrapper > div.row:last-of-type { margin: 0.4em 0.5em 0.4em 0.5em; }
div.table-responsive > div.dataTables_wrapper table.dataTable { margin: 0 !important; }
/* Page Specific Overrides */ /* Page Specific Overrides */
table.records tbody td:first-of-type { text-align: left; } table.records tbody td:first-of-type { text-align: left; }
</style> </style>