Skip to content

Commit

Permalink
fix(progress-indicator): make unclickable step look non-interactive (#…
Browse files Browse the repository at this point in the history
…5843)

Fixes #5515.
  • Loading branch information
asudoh authored and joshblack committed Apr 16, 2020
1 parent 62bfbb6 commit c3ff370
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,24 @@

//unclickable button
.#{$prefix}--progress-step-button--unclickable {
cursor: default;
outline: none;
}

.#{$prefix}--progress-step-button--unclickable
.#{$prefix}--progress-label:hover {
color: $text-01;
cursor: default;
box-shadow: none;
}

.#{$prefix}--progress-step-button--unclickable
.#{$prefix}--tooltip__label:hover {
color: $link-01;
cursor: pointer;
box-shadow: 0 rem(1px) $link-01;
}

//DISABLED STYLING
.#{$prefix}--progress-step--disabled {
cursor: not-allowed;
Expand Down

0 comments on commit c3ff370

Please sign in to comment.