Skip to content

Commit

Permalink
fix(overflow-menu): correct hover color (#5513)
Browse files Browse the repository at this point in the history
Co-authored-by: TJ Egan <[email protected]>
  • Loading branch information
2 people authored and joshblack committed Mar 10, 2020
1 parent 2ccd3e3 commit 40613c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,13 @@
); //used to center svg without setting display flex //display block needed for overflow text truncation
}

.#{$prefix}--data-table .#{$prefix}--overflow-menu,
.#{$prefix}--data-table .#{$prefix}--overflow-menu__trigger {
&:hover {
background-color: $hover-selected-ui;
}
}

.#{$prefix}--data-table--selected .#{$prefix}--overflow-menu,
.#{$prefix}--data-table--selected .#{$prefix}--overflow-menu__trigger {
&:hover {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
}

&:hover {
background-color: $hover-selected-ui;
background-color: $hover-ui;
}
}

Expand Down

0 comments on commit 40613c2

Please sign in to comment.