aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sdp/output_xmls_css.d
diff options
context:
space:
mode:
Diffstat (limited to 'src/sdp/output_xmls_css.d')
-rw-r--r--src/sdp/output_xmls_css.d8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/sdp/output_xmls_css.d b/src/sdp/output_xmls_css.d
index 8d7c0ff..c746b16 100644
--- a/src/sdp/output_xmls_css.d
+++ b/src/sdp/output_xmls_css.d
@@ -848,8 +848,12 @@ template SiSUcss() {
color: #000000;
background-color: #f9f9aa;
}
+ /* in toc no list numbering */
+ nav#toc ol {
+ list-style-type: none;
+ }
";
- struct _CSS {
+ struct _css {
auto html_css() {
string _css = "/* SiSU css html stylesheet */\n" ~ css_shared;
return _css;
@@ -859,6 +863,6 @@ template SiSUcss() {
return _css;
}
}
- return _CSS();
+ return _css();
}
}