From f63d2b1ae8000c518901dbe65a92b7e0e689581e Mon Sep 17 00:00:00 2001 From: Surya Date: Fri, 25 Aug 2017 23:10:21 +0530 Subject: [PATCH] If deeplinking is disabled the anchor tag has no href attribute as a result the mouse pointer is not a pointer as it is no longer a hyperlink, setting the cursor explicitly to pointer. --- src/style/_layout.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/style/_layout.scss b/src/style/_layout.scss index 9ee357f0..427c7dc5 100644 --- a/src/style/_layout.scss +++ b/src/style/_layout.scss @@ -726,12 +726,12 @@ section a.nostyle { text-decoration: inherit; color: inherit; - cursor: auto; + cursor: pointer; display: inline; &:visited { text-decoration: inherit; color: inherit; - cursor: auto; + cursor: pointer; } }