From 95cbcb7fe99a0bd73424e579b1baf0f890837a02 Mon Sep 17 00:00:00 2001 From: Aaron Arney Date: Wed, 9 Dec 2015 23:21:29 -0500 Subject: [PATCH] Issue #7405 Use hover state variable for tab-title Separate the hover state from focus and aria-selected to make use of the $tab-item-background-hover variable. --- scss/components/_tabs.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scss/components/_tabs.scss b/scss/components/_tabs.scss index 9a73704ee..e0ef7788f 100644 --- a/scss/components/_tabs.scss +++ b/scss/components/_tabs.scss @@ -106,7 +106,10 @@ $tab-content-padding: 1rem !default; font-size: 12px; color: $tab-item-color; - &:hover, + &:hover { + background: $tab-item-background-hover; + } + &:focus, &[aria-selected='true'] { background: $tab-background-active; -- 2.47.2