diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/plugins/info/syntax.php | 4 | ||||
-rw-r--r-- | lib/plugins/plugin/admin.php | 4 | ||||
-rw-r--r-- | lib/tpl/default/design.css | 12 | ||||
-rw-r--r-- | lib/tpl/default/layout.css | 1 |
4 files changed, 10 insertions, 11 deletions
diff --git a/lib/plugins/info/syntax.php b/lib/plugins/info/syntax.php index 25b2fff45..d5209397f 100644 --- a/lib/plugins/info/syntax.php +++ b/lib/plugins/info/syntax.php @@ -110,7 +110,7 @@ class syntax_plugin_info extends DokuWiki_Syntax_Plugin { if (!$po =& plugin_load('syntax',$p)) continue; $info = $po->getInfo(); - $renderer->doc .= '<li>'; + $renderer->doc .= '<li><div class="li">'; $renderer->externallink($info['url'],$info['name']); $renderer->doc .= ' '; $renderer->doc .= '<em>'.$info['date'].'</em>'; @@ -120,7 +120,7 @@ class syntax_plugin_info extends DokuWiki_Syntax_Plugin { $renderer->emaillink($info['email'],$info['author']); $renderer->doc .= '<br />'; $renderer->doc .= strtr(htmlspecialchars($info['desc']),array("\n"=>"<br />")); - $renderer->doc .= '</li>'; + $renderer->doc .= '</div></li>'; unset($po); } diff --git a/lib/plugins/plugin/admin.php b/lib/plugins/plugin/admin.php index cffcf8057..0f25cbc85 100644 --- a/lib/plugins/plugin/admin.php +++ b/lib/plugins/plugin/admin.php @@ -388,7 +388,7 @@ class ap_manage { ptln('<p>'.$this->lang['downloads'].'</p>'); ptln('<ul>'); foreach ($this->downloaded as $plugin) { - ptln('<li>'.$plugin.'</li>',2); + ptln('<li><div class="li">'.$plugin.'</div></li>',2); } ptln('</ul>'); } else { // none found in download @@ -546,7 +546,7 @@ class ap_manage { ptln('<p>'.$this->lang['updates'].'</p>'); ptln('<ul>'); foreach ($this->downloaded as $plugin) { - ptln('<li>'.$plugin.'</li>',2); + ptln('<li><div class="li">'.$plugin.'</div></li>',2); } ptln('</ul>'); } else { // none found in download diff --git a/lib/tpl/default/design.css b/lib/tpl/default/design.css index d9f0a2307..f7055ddf9 100644 --- a/lib/tpl/default/design.css +++ b/lib/tpl/default/design.css @@ -369,7 +369,8 @@ ul { list-style-type: square; margin: 0 0 0.5em 1.5em; padding: 0; - list-style-image: url(images/bullet.gif); + color: __darker__; + list-style-image: none; } /* ordered lists */ @@ -379,10 +380,10 @@ ol { padding: 0; color: __darker__; font-weight: bold; - list-style-image: none; + list-style-image: none; } -/* the list items overriding the ol definition */ +/* the list items overriding the ul/ol definition */ .li { color: __black__; font-weight: normal; @@ -395,10 +396,12 @@ ol ol ol ol {list-style-type: lower-greek} li.open { list-style-image: url(images/open.gif); + /*list-style-type: circle;*/ } li.closed { list-style-image: url(images/closed.gif); + /*list-style-type: disc;*/ } blockquote { @@ -493,9 +496,6 @@ div.tocheader { margin-bottom: 2px; } -div.toctoggle { -} - div.tocheader img { width:0.8em; height:0.8em; diff --git a/lib/tpl/default/layout.css b/lib/tpl/default/layout.css index 2f1386256..d541fa2f9 100644 --- a/lib/tpl/default/layout.css +++ b/lib/tpl/default/layout.css @@ -5,7 +5,6 @@ * @author moraes <moraes@tipos.com.br> */ - /* -------------- top row --------------- */ .header { height:35px; |