remove hyperlink border for doc icons in game titles

svn: r10783
This commit is contained in:
Matthew Flatt 2008-07-15 22:23:41 +00:00
parent 1c6281111b
commit b1e859a5c2
2 changed files with 11 additions and 3 deletions

View File

@ -2,6 +2,7 @@
(require scribble/manual (require scribble/manual
scribble/decode scribble/decode
scribble/struct
setup/main-collects) setup/main-collects)
(provide (all-from-out scribble/manual) (provide (all-from-out scribble/manual)
selflink selflink
@ -16,9 +17,12 @@
(make-splice (make-splice
(list (list
(title #:tag subcol (title #:tag subcol
(make-element
"noborder"
(list
(image (path->main-collects-relative (image (path->main-collects-relative
(build-path (collection-path "games" subcol) (build-path (collection-path "games" subcol)
(format "~a.png" subcol)))) (format "~a.png" subcol))))))
" " (onscreen name) " --- " subtitle) " " (onscreen name) " --- " subtitle)
(margin-note "To play " (margin-note "To play "
(onscreen name) (onscreen name)

View File

@ -480,3 +480,7 @@ i {
margin: 0em; margin: 0em;
padding: 0em; padding: 0em;
} }
.noborder img {
border: 0;
}