From 4c6a88c7b856cfac249bddd8df943e83f6c7e10b Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Thu, 16 Oct 2014 10:47:57 +0200 Subject: [PATCH] SONAR-5751 Table headers don't wrap correctly in printable version --- server/sonar-web/src/main/less/layout.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/sonar-web/src/main/less/layout.less b/server/sonar-web/src/main/less/layout.less index fa1c19ab380..1934b20e2ac 100644 --- a/server/sonar-web/src/main/less/layout.less +++ b/server/sonar-web/src/main/less/layout.less @@ -35,6 +35,11 @@ #content { margin-left: 0 !important; } + + .widget thead { + // Fix for phantomjs bug about wrapping tables + display: table-row-group; + } } @media screen { -- 2.39.5