To change icon and text-color of button on mouse hover in menu component

Viewed 8684

I am using Menu with icons component in my project.On mouse hovering the menu items(ex: edit) i want to change both the text and icon color,something like this.

enter image description here

But i am able to give only background-color on mouse hover but unable to change the text-color on mouse hover.

enter image description here

I tried giving color: !important; also, still no result.

Here is the stackblitz link.

3 Answers

put on your css man! here's the code.

 .mat-menu-item:hover{
      color: blue;
  }

Use the simple code change background color..

.mat-menu-item:hover{
    background-color:blue !important;
}
Related