commit 7616272b38dc90310f459c9b5e8b407906f29743 Author: Karsten Loesing karsten.loesing@gmx.net Date: Wed Aug 12 22:22:02 2015 +0200
Wrap permanent link inside its <pre> block.
Bootstrap doesn't wrap the permanent link inside its <pre> block, but if that link contains an IPv6 address it gets too long to be printed out. That somewhat defeats the purpose of the permanent link.
Fix by qbi. Fixes #16588. --- web/css/exonerator.css | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/web/css/exonerator.css b/web/css/exonerator.css index e3750c4..cfd1d85 100644 --- a/web/css/exonerator.css +++ b/web/css/exonerator.css @@ -25,3 +25,7 @@ body { margin-bottom: 15px; }
+pre { + white-space: pre-wrap; +} +