From 21bbd80d4af87cd614ac08e6f4eff2be2cbe89b4 Mon Sep 17 00:00:00 2001 From: "Douglas G.R." Date: Fri, 30 Jan 2015 16:39:35 -0200 Subject: [PATCH] Disabled buttons should have `cursor: pointer` `pointer` cursors means "clickable" items. --- sass/components/_buttons.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sass/components/_buttons.scss b/sass/components/_buttons.scss index 8885b2d995..62c1ba0717 100755 --- a/sass/components/_buttons.scss +++ b/sass/components/_buttons.scss @@ -17,6 +17,7 @@ background-color: $button-bg-color-disabled; box-shadow: none; color: $button-color-disabled; + cursor: default; &:hover { background-color: $button-bg-color-disabled; @@ -121,6 +122,7 @@ &.disabled { color: lighten(#999, 10%); + cursor: default; } }