From 020b01e8f2d9416a631b53dc5e12f2537c3e702f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Gauthier?= Date: Wed, 7 Sep 2016 17:12:27 +0200 Subject: [PATCH] Fixes #8917: Code blocks in the doc overflow the page width --- template/common/css/positioning.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/template/common/css/positioning.css b/template/common/css/positioning.css index a19fce4b..320dc0b5 100644 --- a/template/common/css/positioning.css +++ b/template/common/css/positioning.css @@ -507,4 +507,12 @@ div.navfooter hr { background-color: #F2F2FF; color: #4E4726; } +} + +#content > .section > .toc + p + p + div.tip > table > tbody > tr:last-child > td:first-child { + max-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: normal; + width: 100%; } \ No newline at end of file