angular-material-sidemenu icon indicating copy to clipboard operation
angular-material-sidemenu copied to clipboard

Can't change md-heading css

Open cajuuh opened this issue 8 years ago • 2 comments

is there a way to change the font-weight and text-transform of the md-heading?

cajuuh avatar Jan 12 '17 14:01 cajuuh

I have a similar problem. I need to change the Font weight and background color of a selected button, but CSS is not working.

lpsandaruwan avatar Jan 18 '17 11:01 lpsandaruwan

The md-heading you can to change with this

.md-sidemenu-toggle.md-active{ background: red !important; }

.md-sidemenu-toggle.md-active span, .md-sidemenu-toggle.md-active md-icon{ font-weight: normal !important; color: #fff; }

the children buttons, you can use ui-sref-active to add the md-primary clss or other class that you need.

This solutions resolve the problem?

andersonfalcao avatar Nov 09 '17 12:11 andersonfalcao