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)))
|
'tech)))
|
||||||
|
|
||||||
(define (tech #:doc [doc #f] . s)
|
(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)
|
(define (techlink #:doc [doc #f] . s)
|
||||||
(*tech make-link-element #f doc s))
|
(*tech make-link-element #f doc s))
|
||||||
|
|
|
@ -437,16 +437,24 @@ i {
|
||||||
color: blue;
|
color: blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
.techlink {
|
.techoutside {
|
||||||
text-decoration: none;
|
text-decoration: underline;
|
||||||
color: #0000a0;
|
color: #d0d0d0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.techlink:hover {
|
.techoutside:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
color: blue;
|
color: blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.techinside {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.techoutside:hover > .techinside {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
.bibliography td {
|
.bibliography td {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user