From 0fd9f6e27a6b9f9a3d97263bf64943de8915ccf8 Mon Sep 17 00:00:00 2001 From: Claude Brisson Date: Thu, 13 Jun 2024 19:03:05 +0200 Subject: [PATCH] Fix repeated table header top border when printing --- view-webapp/src/main/sass/main.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view-webapp/src/main/sass/main.scss b/view-webapp/src/main/sass/main.scss index 7eae0f5..fcc7867 100644 --- a/view-webapp/src/main/sass/main.scss +++ b/view-webapp/src/main/sass/main.scss @@ -678,7 +678,11 @@ } } + table { border-top: none; } table tr td, table tr th { page-break-inside:avoid; } + table thead th { + border-top: 1px solid rgba(34, 36, 38, .1); + } thead { display:table-header-group; } tfoot { display:table-footer-group; } }