From 8868e2db08ec67cfe9eed75c51caa3667a9f270c Mon Sep 17 00:00:00 2001 From: Joe Date: Thu, 9 Nov 2017 14:56:00 +0000 Subject: [PATCH] fix link to this heading visibility on focus Fixes the issue when tabbing through the documentation and you focus heading anchor the icon is not visible. --- src/styles/_markdown.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/styles/_markdown.scss b/src/styles/_markdown.scss index 76c3de148..dfd0ff5d2 100644 --- a/src/styles/_markdown.scss +++ b/src/styles/_markdown.scss @@ -76,7 +76,8 @@ pre { visibility: hidden; } - &:hover .material-icons { + &:hover .material-icons, + &:focus .material-icons { visibility: visible; } }