From 9cb36d339edcc1f8fe64d7e4fcb46e5aff3bf565 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Fri, 2 Oct 2015 22:40:02 +0200 Subject: [PATCH] Set the width of the highlight table to 100% At the moment the width of the highlight table with line numbers differes from the highlight table without line numbers. Setting the width of the highlight table to 100% will solve this issue. Change-Id: Ib784b6e572743a109cf425ec76d74b1e4cb71296 --- .../theme/openstackdocs/static/css/combined.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/openstackdocstheme/theme/openstackdocs/static/css/combined.css b/openstackdocstheme/theme/openstackdocs/static/css/combined.css index b5f05073..b56bfcfe 100644 --- a/openstackdocstheme/theme/openstackdocs/static/css/combined.css +++ b/openstackdocstheme/theme/openstackdocs/static/css/combined.css @@ -4618,3 +4618,7 @@ input[type="checkbox"], input[type="radio"] { div.tooltip-inner { max-width: 350px; } + +table.highlighttable { + width: 100%; +}