diff --git a/py_app/app/static/style.css b/py_app/app/static/style.css index 5d149d2..b82cd27 100644 --- a/py_app/app/static/style.css +++ b/py_app/app/static/style.css @@ -667,4 +667,26 @@ body.dark-mode .export-description { padding: 5px 10px; /* Make the buttons smaller */ font-size: 0.9em; /* Reduce the font size */ border-radius: 3px; /* Slightly smaller border radius */ +} + +/* Style for the report-table container */ +.report-table-container { + max-height: 1000px; /* Set the maximum height */ + overflow-y: auto; /* Enable vertical scrolling */ + border: 1px solid #ddd; /* Optional: Add a border for better visibility */ + margin-top: 10px; /* Optional: Add spacing above the table */ +} + +/* Ensure the table takes full width */ +.report-table-container table { + width: 100%; /* Make the table take the full width of the container */ + border-collapse: collapse; /* Optional: Collapse table borders */ +} + +/* Optional: Add styles for table rows and cells */ +.report-table-container th, +.report-table-container td { + padding: 8px; + text-align: left; + border: 1px solid #ddd; /* Add borders to table cells */ } \ No newline at end of file diff --git a/py_app/app/templates/quality.html b/py_app/app/templates/quality.html index c29cca9..bce10c5 100644 --- a/py_app/app/templates/quality.html +++ b/py_app/app/templates/quality.html @@ -29,7 +29,7 @@
- +
@@ -37,16 +37,19 @@

No data to display, please select a report.

- - - - - - - - - -
+
+ + + + + + + + + +
+
-{% endblock %} \ No newline at end of file +{% endblock %} +