From 82f892a1ab0022275ca6bbf036374e4c87f1e47e Mon Sep 17 00:00:00 2001 From: Cassie Tarakajian Date: Fri, 10 Apr 2020 17:13:16 -0400 Subject: [PATCH] Fix issue button styling for a tags --- client/styles/abstracts/_placeholders.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/styles/abstracts/_placeholders.scss b/client/styles/abstracts/_placeholders.scss index 1b1eb377..09b9932f 100644 --- a/client/styles/abstracts/_placeholders.scss +++ b/client/styles/abstracts/_placeholders.scss @@ -87,7 +87,7 @@ fill: getThemifyVariable('button-color'); opacity: 1; } - &:enabled:hover { + &:not(disabled):hover { border-color: getThemifyVariable('button-background-hover-color'); background-color: getThemifyVariable('button-background-hover-color'); color: getThemifyVariable('button-hover-color'); @@ -95,7 +95,7 @@ fill: getThemifyVariable('button-hover-color'); } } - &:enabled:active { + &:not(disabled):active { border-color: getThemifyVariable('button-background-active-color'); background-color: getThemifyVariable('button-background-active-color'); color: getThemifyVariable('button-active-color');