Skip to content

Commit

Permalink
feat(Tag): split primary and primary deletable
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkahn committed Jun 25, 2019
1 parent 384638f commit 4ace5a6
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/tag/scss/placeholder.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@

%tag-statement-closable-primary {
@include tag-statement(
$tag-fill-text-color,
$tag-fill-border-color,
$tag-fill-bg-color,
$tag-fill-text-color-hover,
$tag-fill-border-color-hover,
$tag-fill-bg-color-hover,
$tag-closable-primary-fill-text-color,
$tag-closable-primary-fill-border-color,
$tag-closable-primary-fill-bg-color,
$tag-closable-primary-fill-text-color-hover,
$tag-closable-primary-fill-border-color-hover,
$tag-closable-primary-fill-bg-color-hover,
$tag-fill-tail-color,
$tag-fill-tail-color-hover,
$tag-fill-tail-color-disabled,
$tag-fill-text-color-disabled,
$tag-fill-border-color-disabled,
$tag-fill-bg-color-disabled
$tag-closable-primary-fill-text-color-disabled,
$tag-closable-primary-fill-border-color-disabled,
$tag-closable-primary-fill-bg-color-disabled
);
}

Expand Down
27 changes: 27 additions & 0 deletions src/tag/scss/variable.scss
Original file line number Diff line number Diff line change
Expand Up @@ -521,3 +521,30 @@ $tag-checkable-secondary-icon-color-selected-hover: $color-white !default;
$tag-checkable-secondary-icon-color-selected-disabled: $color-white !default;


/// text
/// @namespace statement/normal/bounding
$tag-closable-primary-fill-text-color: $color-text1-3 !default;
/// border
/// @namespace statement/normal/bounding
$tag-closable-primary-fill-border-color: $color-fill1-3;
/// background
/// @namespace statement/normal/bounding
$tag-closable-primary-fill-bg-color: $color-fill1-3 !default;
/// text
/// @namespace statement/hover/bounding
$tag-closable-primary-fill-text-color-hover: $color-text1-4 !default;
/// border
/// @namespace statement/hover/bounding
$tag-closable-primary-fill-border-color-hover: $color-fill1-4 !default;
/// background
/// @namespace statement/hover/bounding
$tag-closable-primary-fill-bg-color-hover: $color-fill1-4 !default;
/// text
/// @namespace statement/disabled/bounding
$tag-closable-primary-fill-text-color-disabled: $color-text1-1 !default;
/// border
/// @namespace statement/disabled/bounding
$tag-closable-primary-fill-border-color-disabled: $color-fill1-1 !default;
/// background
/// @namespace statement/disabled/bounding
$tag-closable-primary-fill-bg-color-disabled: $color-fill1-1 !default;

0 comments on commit 4ace5a6

Please sign in to comment.