UNPKG

445 BSCSSView Raw
1//
2// Copyright IBM Corp. 2016, 2018
3//
4// This source code is licensed under the Apache-2.0 license found in the
5// LICENSE file in the root directory of this source tree.
6//
7
8/// @access private
9/// @group tag
10@mixin tag-theme($bg-color, $text-color, $filter-hover-color: $bg-color) {
11 color: $text-color;
12 background-color: $bg-color;
13
14 .#{$prefix}--tag__close-icon {
15 &:hover {
16 background-color: $filter-hover-color;
17 }
18 }
19}