Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Fixes vertical tab regression (#1958)
Browse files Browse the repository at this point in the history
Resolves #1956
  • Loading branch information
Blackbaud-TrevorBurch authored Sep 5, 2018
1 parent 3ab6c6d commit de8ad15
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="sky-vertical-tabset-group">
<div
class="sky-vertical-tabset-group-header sky-emphasized sky-padding-even-default"
[ngClass]="{'sky-vertical-tabset-group-header-sub-open': subMenuOpen()}"
class="sky-vertical-tabset-group-header sky-padding-even-default"
[ngClass]="{'sky-vertical-tabset-group-header-sub-open sky-emphasized': subMenuOpen()}"
(click)="toggleMenuOpen()"
(keyup.enter)="toggleMenuOpen()"
[tabIndex]="-1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@
cursor: pointer;
display: flex;
justify-content: space-between;
font-weight: 400;
color: $sky-text-color-deemphasized;

&:not(.sky-emphasized) {
font-weight: 400;
color: $sky-text-color-deemphasized;
}

&:hover {
color: $sky-text-color-default;
Expand Down

0 comments on commit de8ad15

Please sign in to comment.