[haiku-doc] Re: User guide design issues

  • From: Simon Kennedy <haiku@xxxxxxxxxxxxxxx>
  • To: haiku-doc@xxxxxxxxxxxxx
  • Date: Mon, 24 Aug 2009 18:32:29 +0300


And this for the Index box, being a <table class="index"> (CSS, line
140ff):

table.index a:link, a:visited {
font-weight: normal;
text-decoration: none;
color: #dc3c01;
}
table.index a:hover, a:active {
text-decoration: underline;
color: #ff4500;
}


What looks wrong on initial viewing is that you need to copy ``table.index`` before ``a:active``. The comma separates the selectors and so the ``a:active`` then matches any ``a`` element in the HTML rather than those only in ``table.index``.

Regards
Simon


Other related posts: