From 57cfdb1a48a836569c09930b65b6159652c74107 Mon Sep 17 00:00:00 2001 From: Cassandra Targett Date: Wed, 28 Feb 2018 15:17:50 -0600 Subject: [PATCH] Ref Guide: fix line height changed in SOLR-11646 which inadvertently vertically stretched the left-hand nav; adds a new CSS rule for tabbed sections on a page with the larger line height and changes back left-hand nav line height --- solr/solr-ref-guide/src/css/customstyles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/solr/solr-ref-guide/src/css/customstyles.css b/solr/solr-ref-guide/src/css/customstyles.css index ca2071e67ea..8ead55c7b9b 100755 --- a/solr/solr-ref-guide/src/css/customstyles.css +++ b/solr/solr-ref-guide/src/css/customstyles.css @@ -233,10 +233,14 @@ background-color: #347DBE; } .nav > li > a { - line-height: 30px; + line-height: 20px; padding: 4px 10px; } +.nav-pills > li > a { + line-height: 30px; +} + ul#mysidebar { border-radius:0; }