From 8c2541d43af8c4458e5b1352660ddae56066c48b Mon Sep 17 00:00:00 2001 From: Justin Dwyer Date: Mon, 19 Apr 2021 16:08:40 +0100 Subject: [PATCH 1/2] Cause text in session activity to wrap The text in the session activity table doesn't wrap, so you have to scroll sideways for a long time if your notes are long. This little CSS change should fix the issue. --- HTMLReport/preview.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/HTMLReport/preview.css b/HTMLReport/preview.css index 4431368..fdbffe6 100644 --- a/HTMLReport/preview.css +++ b/HTMLReport/preview.css @@ -2,6 +2,11 @@ body{ min-width: 40%; max-width: 100%; } + +td { + white-space: normal; +} + #sessionInfo { font-size: 0.7rem; } @@ -27,6 +32,7 @@ img{ #sessionActivityTable.tr { vertical-align: top; + table-layout: fixed; } .annotationDescription, .annotationUrl { @@ -70,4 +76,4 @@ img{ display:none; color:#fff; } -#imgPreview{max-width: 400px;} \ No newline at end of file +#imgPreview{max-width: 400px;} From 3ac493a56bede1da0c689fe28e27323429147725 Mon Sep 17 00:00:00 2001 From: Justin Dwyer Date: Mon, 19 Apr 2021 11:10:26 -0400 Subject: [PATCH 2/2] Remove accidental CSS addition --- HTMLReport/preview.css | 1 - 1 file changed, 1 deletion(-) diff --git a/HTMLReport/preview.css b/HTMLReport/preview.css index fdbffe6..d1a6fc7 100644 --- a/HTMLReport/preview.css +++ b/HTMLReport/preview.css @@ -32,7 +32,6 @@ img{ #sessionActivityTable.tr { vertical-align: top; - table-layout: fixed; } .annotationDescription, .annotationUrl {