From 01bee75644519bc7d90aa0edb2ba88f0f0dd0b98 Mon Sep 17 00:00:00 2001 From: Caroline Horn <549577+cchaos@users.noreply.github.com> Date: Mon, 2 Jul 2018 17:26:18 -0400 Subject: [PATCH] Fixed disabled states of icon buttons (#963) --- CHANGELOG.md | 4 ++++ src/components/button/button_icon/_button_icon.scss | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01c46c5e0f3..25d1833cd83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ - Added more (mainly style) options to `EuiRange` ([#932](https://github.com/elastic/eui/pull/932)) +**Bug fixes** + +- Fixed disabled states of icon buttons ([#963](https://github.com/elastic/eui/pull/963)) + ## [`1.0.1`](https://github.com/elastic/eui/tree/v1.0.1) - `EuiAccordion` use MutationObserver to re-calculate height when children DOM changes ([#947](https://github.com/elastic/eui/pull/947)) diff --git a/src/components/button/button_icon/_button_icon.scss b/src/components/button/button_icon/_button_icon.scss index ddf10b9688e..5c2b849a92d 100644 --- a/src/components/button/button_icon/_button_icon.scss +++ b/src/components/button/button_icon/_button_icon.scss @@ -24,7 +24,7 @@ } &:hover, &:focus { - background-color: $euiColorEmptyShade; + background-color: transparent; text-decoration: none; } }