@namespace url(http://www.w3.org/1999/xhtml);
/*
  userscripts.org: front page news links format
*/
@-moz-document url("http://userscripts.org/") {

/* format for 2 lines, allow up to 3 if needed */
div#browser-news > ul li[class] {
  height: auto !important;
  min-height: 32px !important;
  max-height: 54px !important; /* but no more */
  overflow: hidden !important; /*  than 3     */
}
div#browser-news > ul li[class]:not(:last-child) {
  border-bottom: 1px dotted #bbb !important; /* sep */
  padding-bottom: 5px !important; /* not 0 */
  margin-bottom: 5px !important; /* not 10 */
}
/* all links, all the time (so eye-catcher not needed) */
div#browser-news > ul li[class] a {
  text-decoration: none !important;
  display: block !important;
}
/* black (easy to read) and */
div#browser-news > ul li[class] a:not(:hover):not(:visited) {
  color: #000 !important;
}
/* orange (for Us.o) */
div#browser-news > ul li[class] a:not(:hover):visited {
  color: #f40 !important;
}

}