From 4275e8edb2f6eb801167f671c259113c7bdd7385 Mon Sep 17 00:00:00 2001 From: Aaron Arney Date: Thu, 10 Dec 2015 20:14:34 -0500 Subject: [PATCH] Issue #7160 Add styling for disabled attribute button Add disabled attribute selector to include the disabled styling for buttons. --- scss/components/_button.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/components/_button.scss b/scss/components/_button.scss index 6b01bb5e3..2f4d64903 100644 --- a/scss/components/_button.scss +++ b/scss/components/_button.scss @@ -239,7 +239,8 @@ $button-opacity-disabled: 0.25 !default; } // Disabled style - &.disabled { + &.disabled, + &[disabled] { @include button-disabled; } -- 2.47.2