On 2006-08-17, Boris Zbarsky <[EMAIL PROTECTED]> wrote:
> Ben Hutchings wrote:
>> Yes, that's what I found.  However *something* is overriding the UA
>> stylesheet rule for :hover but not a page stylesheet rule.
>
> What's the UA stylesheet rule in question?  Maybe attach the stylesheet?

Sorry for the delay in answering; I've been busy with other things
and wanted to double-check this in a fresh build.  The stylesheet is
quite short and is included below.

Ben.

-- BEGIN --
body {
  /* Sans-serif fonts will be much more readable than serif on a TV. */
  font-family: sans-serif;
  /* Let the background overscan, but not the content. */
  padding: 60px;
  /* No scroll bars. */
  overflow: hidden;
}
a:link, a:visited {
  color: blue;
  /* Don't underline links because underlining tends to flicker on TVs. */
  text-decoration: none;
  /* Buttons have to be rectangular (AFAIK). */
  white-space: nowrap;
}
/* The hover state must be made obvious since DVD players have no pointer. */
a:hover {
  color: red;
}
/* The active state should provide visual feedback, but is not so critical. */
a:active {
  color: purple;
}
/* Don't show focus rectangles. */
*|*:-moz-any-link:focus {
  -moz-outline: none !important;
}
-- END --

-- 
Ben Hutchings -- [EMAIL PROTECTED] shortened to [EMAIL PROTECTED]
If you've signed my GPG key, please send a signature on and to the new uid.
compatible: Gracefully accepts erroneous data from any source
_______________________________________________
dev-embedding mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-embedding

Reply via email to