diff --git a/collects/scribble/html-render.ss b/collects/scribble/html-render.ss index 8de6dccb..2af395e0 100644 --- a/collects/scribble/html-render.ss +++ b/collects/scribble/html-render.ss @@ -277,7 +277,8 @@ flows))) (table-flowss table))))]) (apply append (map flow-element-targets (flow-paragraphs (part-flow d))))) - (map flatten (part-parts d)))))]) + (map flatten (part-parts d)))))] + [any-parts? (ormap part? ps)]) (if (null? ps) null `((div ((class "tocsub")) @@ -303,7 +304,9 @@ (format "#~a" (anchor-name (tag-key (target-element-tag p) ri))))) (class ,(if (part? p) "tocsubseclink" - "tocsublink"))) + (if any-parts? + "tocsubnonseclink" + "tocsublink")))) ,@(if (part? p) (render-content (or (part-title-content p) '("???")) d ri) (render-content (element-content p) d ri))))))))) diff --git a/collects/scribble/scribble.css b/collects/scribble/scribble.css index 55e2b024..31805e7c 100644 --- a/collects/scribble/scribble.css +++ b/collects/scribble/scribble.css @@ -137,7 +137,8 @@ font-weight: bold; .tocsub { text-align: left; - background-color: #DCF5F5; + margin-top: 0.5em; + background-color: #F5F5F5; } .tocviewtitle { @@ -182,6 +183,11 @@ font-weight: bold; text-decoration: none; } +.tocsubnonseclink { + text-decoration: none; + padding-left: 0.5em; +} + .tocsubtitle { font-size: 80%; font-style: italic;