Skip to content

Commit

Permalink
fix(dropdown): disabled option hover visuals (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Milly authored and GitHub Enterprise committed Mar 1, 2022
1 parent 0f7d5d3 commit 9dcdb43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects/ng-aquila/src/dropdown/item/dropdown-item.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ nx-checkbox {
}
}

:host:hover .nx-dropdown-results__option-label,
:host(.nx-selected):hover .nx-dropdown-results__option-label,
:host(.nx-selected):hover .nx-dropdown-results__option-checkicon {
:host:not(.nx-dropdown-item--disabled):hover .nx-dropdown-results__option-label,
:host(.nx-selected):not(.nx-dropdown-item--disabled):hover .nx-dropdown-results__option-label,
:host(.nx-selected):not(.nx-dropdown-item--disabled):hover .nx-dropdown-results__option-checkicon {
color: v(dropdown-item-hover-color);
}

Expand Down

0 comments on commit 9dcdb43

Please sign in to comment.