Ben Hutchings wrote:
/* The hover state must be made obvious since DVD players have no pointer. */
a:hover {

Ah... So the problem is that the preference stylesheet is a user stylesheet, which means that the

  *|*:link { color: whatever }

rule in it takes precedence over an "a:hover" rule in a UA stylesheet...

Could you make your sheet a user sheet instead of a UA sheet?  That should help.

-Boris

P.S. Styling "a:hover" is probably not what you want. See http://dbaron.org/css/1999/09/links for some details. As a simple example, your CSS will style

   <a name="foo">Target name</a>

when hovered and will not style other links (e.g. <link> and <area>).
_______________________________________________
dev-embedding mailing list
dev-embedding@lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-embedding

Reply via email to