How can I style the notification buttons, to display black text?
I have tried with:
<style>
.md-button.md-default-theme.md-primary, .md-button.md-primary {
color: black ! important;
}
</style>
but it doesn't change.
How can I style the notification buttons, to display black text?
I have tried with:
<style>
.md-button.md-default-theme.md-primary, .md-button.md-primary {
color: black ! important;
}
</style>
but it doesn't change.
color: black !important;
(assuming your selector is correct)
yes, sorry. that was a typo.
I entered the right syntax but it doesn't work
On my installation the following works.
#nr-dashboard > div.md-dialog-container > md-dialog > md-dialog-actions > button {
color: black;
}
but i may not have the same setup / version etc.
You should use the devtools "copy CSS path" option.
Yes, I used DevTools, and that line is exactly what it reports... Weird. Your style is not working too...
My bad!!!! Sorry, I forgot to remove a msgClassname message that was interfering with the template!
Now it works...
@Steve-Mcl , and thank you for your time!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.