From 6a3cf2cafcc7063bb8fd6144ef9e5152a8c58de8 Mon Sep 17 00:00:00 2001 From: jlukic Date: Sat, 16 Nov 2013 22:54:59 -0500 Subject: [PATCH] Fixes :not specificity adding too much weight to button state selector --- src/elements/button.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/elements/button.less b/src/elements/button.less index b1b1ba767..91901fc8b 100755 --- a/src/elements/button.less +++ b/src/elements/button.less @@ -122,7 +122,7 @@ Hover ---------------*/ -.ui.button:not(.loading):hover { +.ui.button:hover { background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)); color: rgba(0, 0, 0, 0.7); } @@ -139,8 +139,8 @@ Down ---------------*/ -.ui.button:not(.loading):active, -.ui.active.button:not(.loading):active { +.ui.button:active, +.ui.active.button:active { background-color: #F1F1F1; color: rgba(0, 0, 0, 0.7); box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05) inset !important;