render tech links as gray underline, turn blue on hover

svn: r10436

original commit: 80505abf29825ef03517d4ec32ef56bd5bc0777d
This commit is contained in:
Matthew Flatt 2008-06-24 15:12:45 +00:00
parent 0e7b4fe513
commit 4997fb9c79
2 changed files with 19 additions and 5 deletions

View File

@ -585,7 +585,13 @@
'tech)))
(define (tech #:doc [doc #f] . s)
(*tech make-link-element "techlink" doc s))
(*tech (lambda (style c tag)
(make-link-element
style
(list (make-element "techinside" c))
tag))
"techoutside"
doc s))
(define (techlink #:doc [doc #f] . s)
(*tech make-link-element #f doc s))

View File

@ -437,16 +437,24 @@ i {
color: blue;
}
.techlink {
text-decoration: none;
color: #0000a0;
.techoutside {
text-decoration: underline;
color: #d0d0d0;
}
.techlink:hover {
.techoutside:hover {
text-decoration: underline;
color: blue;
}
.techinside {
color: black;
}
.techoutside:hover > .techinside {
color: inherit;
}
.bibliography td {
vertical-align: top;
}