var/obj/o = new
o.name = "Test Object"
winset(src,"selectGrid","style='a:link{text-decoration:none;color:#8c8c8c;}a:visited{color:teal;}a:hover{color:#8c8c8c;}'")
src << output("<a href='?selection [o.name]'>[o.name]</a>", "selectGrid:1,1")
Problem description:
You can't change the hover color of a link. It will always be the highlight-color parameter on the interface element. With that said, I don't want all of my links to have the same hover color.
I put this in Developer Help because I'm not sure if I'm just doing something wrong.