angular-material-sidemenu
angular-material-sidemenu copied to clipboard
Can't change md-heading css
is there a way to change the font-weight and text-transform of the md-heading?
I have a similar problem. I need to change the Font weight and background color of a selected button, but CSS is not working.
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?