From 0a3916c07e2444eaab01540161bba1f67df66c3b Mon Sep 17 00:00:00 2001 From: Tom Johnson Date: Wed, 25 Jan 2017 10:06:57 -0800 Subject: [PATCH] Make links in sidebar for current page more prominent When viewing a page, it's kind of hard to see what page you're viewing. The little triangle graphic pointing to the page is too subtle. Making the link to the current page orange (the same as the hover color) would make it visually more apparent where you are in the navigation. Here's a screenshot showing the change: [https://www.screencast.com/t/e6NKerSAUL](https://www.screencast.com/t/e6NKerSAUL). The link to the current page is orange even when I'm not hovering over the link with my mouse. --- docs/_sass/_style.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/_sass/_style.scss b/docs/_sass/_style.scss index f1e3de5f..e39e8f01 100644 --- a/docs/_sass/_style.scss +++ b/docs/_sass/_style.scss @@ -459,6 +459,9 @@ aside { top: 0; left: -30px; } + &.current a { + color: #f90; + } } }