If you want to style all your hints just redefine the .md-tooltip
class:
( JsFiddle )
.md-tooltip {
height: 35px !important;
background-color: red !important;
color: white !important;
border-radius: 5px;
}
</" > , , md-tooltip
:
(jsFiddle)
HTML
<md-tooltip class="custom-tooltip">
I'm a custom tooltip
</md-tooltip>
CSS
.custom-tooltip {
top: 25px !important;
height: 35px !important;
background-color: red !important;
color: white !important;
border-radius: 5px;
}