render tech links as gray underline, turn blue on hover
svn: r10436 original commit: 80505abf29825ef03517d4ec32ef56bd5bc0777d
This commit is contained in:
parent
0e7b4fe513
commit
4997fb9c79
|
@ -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))
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user