From 95c515ef16d59f515f54eb22cfb5a20b1181cfe9 Mon Sep 17 00:00:00 2001 From: Florian Date: Wed, 25 Mar 2015 09:17:42 +0100 Subject: [PATCH 1/2] Fix `.social-count` underline `.social-count` elements get an underline when pressing down (`:active`), then dragging out of them. --- scss/_buttons.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scss/_buttons.scss b/scss/_buttons.scss index 96631eeaa7..fc4bc88178 100644 --- a/scss/_buttons.scss +++ b/scss/_buttons.scss @@ -250,9 +250,13 @@ border-top-right-radius: 3px; border-bottom-right-radius: 3px; + &:hover, + &:active{ + text-decoration: none; + } + &:hover { color: $brand-blue; - text-decoration: none; cursor: pointer; } } From 564c14e64629ad8e0c0b64e02fc601643585549a Mon Sep 17 00:00:00 2001 From: Florian Date: Wed, 25 Mar 2015 09:35:04 +0100 Subject: [PATCH 2/2] Added missing space --- scss/_buttons.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_buttons.scss b/scss/_buttons.scss index fc4bc88178..81153a6d56 100644 --- a/scss/_buttons.scss +++ b/scss/_buttons.scss @@ -251,7 +251,7 @@ border-bottom-right-radius: 3px; &:hover, - &:active{ + &:active { text-decoration: none; }