From e9ee8553ce7caa042de268326e343ffeb653309f Mon Sep 17 00:00:00 2001 From: George Drummond Date: Wed, 20 Feb 2019 13:49:46 -0500 Subject: [PATCH 1/2] Fix hover state of disabled link on IE --- styles/elements/_icon_link.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/styles/elements/_icon_link.scss b/styles/elements/_icon_link.scss index 23b694e9..fb0f4b51 100644 --- a/styles/elements/_icon_link.scss +++ b/styles/elements/_icon_link.scss @@ -67,8 +67,13 @@ &.icon-link--disabled { opacity: 0.3; - pointer-events: none; text-decoration: none; + pointer-events: none; + + &:hover { + cursor: default; + background: $color-white; + } } &.icon-link--left { From 219636245b7143cbdaba1f62c84410077189719e Mon Sep 17 00:00:00 2001 From: George Drummond Date: Thu, 21 Feb 2019 14:26:09 -0500 Subject: [PATCH 2/2] Use inherit background for non white background links --- styles/elements/_icon_link.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/elements/_icon_link.scss b/styles/elements/_icon_link.scss index fb0f4b51..a1785ed3 100644 --- a/styles/elements/_icon_link.scss +++ b/styles/elements/_icon_link.scss @@ -72,7 +72,7 @@ &:hover { cursor: default; - background: $color-white; + background: inherit; } }