I’ve made a dark and green theme but is there anyway to change the text color on the buttons once hovering over them? Any info is useful.
Hey OP - if you’re still using Stylish then I would uninstall it <mark>immediately</mark> as there is a sever security issue with the plugin. Instead, look for Stylus which is a forked version without the issues of Stylish (and a few improvements). Your existing styles should still work
If you just need to change the text color on hover then you can target this:
> .button:hover {
> color: #fff;
> }
If you need the background color of the button to change from yellow, this is what you’re after
> .button:after {
> background-color: #fff;
> }
I didn’t even see it with the browser debug tools and thanks for the heads up, I’ve downloaded stylus.