diff options
-rw-r--r-- | inc/parser/xhtml.php | 4 | ||||
-rw-r--r-- | lib/tpl/default/design.css | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index b1dbb6858..dad6dfb97 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -275,11 +275,11 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } function listcontent_open() { - $this->doc .= '<span class="li">'; + $this->doc .= '<div class="li">'; } function listcontent_close() { - $this->doc .= '</span>'.DOKU_LF; + $this->doc .= '</div>'.DOKU_LF; } function unformatted($text) { diff --git a/lib/tpl/default/design.css b/lib/tpl/default/design.css index 22e1671e3..01840e8d6 100644 --- a/lib/tpl/default/design.css +++ b/lib/tpl/default/design.css @@ -362,7 +362,7 @@ ol { } /* the list items overriding the ol definition */ -span.li { +.li { color: #000000; font-weight: normal; } |