diff --git a/_layouts/docwithnav.html b/_layouts/docwithnav.html
index c15077857a5a4..f3d885d24698f 100755
--- a/_layouts/docwithnav.html
+++ b/_layouts/docwithnav.html
@@ -81,7 +81,7 @@
{{ site.data[foundTOC].abstract }}
ga('create', 'UA-36037335-10', 'auto');
ga('send', 'pageview');
- // hide docs nav area if no nav is present
+ // hide docs nav area if no nav is present, or if nav only contains a link to the current page
(function () {
window.addEventListener('DOMContentLoaded', init)
@@ -97,7 +97,8 @@ {{ site.data[foundTOC].abstract }}
// container is built dynamically, so it may not be present on the first runloop
if (container) {
- if (container.childElementCount === 0) {
+ if (container.childElementCount === 0 || toc.querySelectorAll('a.item').length === 1) {
+ toc.style.display = 'none'
document.getElementById('docsContent').style.width = '100%'
}
} else {
diff --git a/_sass/_base.sass b/_sass/_base.sass
index 0feee846ff8c4..1eabc9ac14133 100644
--- a/_sass/_base.sass
+++ b/_sass/_base.sass
@@ -883,7 +883,7 @@ dd
max-width: 100%
a
- font-weight: 700
+ //font-weight: 700
text-decoration: underline
a:visited