diff options
author | matthiasgrimm <matthiasgrimm@users.sourceforge.net> | 2005-06-06 18:36:59 +0200 |
---|---|---|
committer | matthiasgrimm <matthiasgrimm@users.sourceforge.net> | 2005-06-06 18:36:59 +0200 |
commit | 50d915fed681509e84e625a5bfd4e3602dfe98d2 (patch) | |
tree | c4f3c583ddf662e1ce58e5a234e44111e8afab63 /inc/parser | |
parent | ed956383c3a142f0466a61732469a6a73274744c (diff) | |
download | rpg-50d915fed681509e84e625a5bfd4e3602dfe98d2.tar.gz rpg-50d915fed681509e84e625a5bfd4e3602dfe98d2.tar.bz2 |
TOC arrow with simple transparency
This patch exchanges the images for the TOC arrow from
PNG with alpha channel to GIF with transparent background.
This is done because the IE doesn't cope with transparent
PNG images very well. Shame on you Microsoft.
darcs-hash:20050606163659-7ef76-8a5d482ec2c73b87f4ece0b1226933cbd1ca7d60.gz
Diffstat (limited to 'inc/parser')
-rw-r--r-- | inc/parser/xhtml.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index dde735b2f..d325c0ee6 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -73,8 +73,8 @@ class Doku_Renderer_xhtml extends Doku_Renderer { /* The (+/-) version will work too but needs some CSS tweaking to look fine */ /* $this->doc .= ' <script type="text/javascript">showTocToggle("+","-")';*/ $this->doc .= '<script type="text/javascript">showTocToggle('; - $this->doc .= '\'<img src="'.DOKU_BASE.'lib/images/arrow_down.png">\','; - $this->doc .= '\'<img src="'.DOKU_BASE.'lib/images/arrow_up.png">\')'; + $this->doc .= '\'<img src="'.DOKU_BASE.'lib/images/arrow_down.gif">\','; + $this->doc .= '\'<img src="'.DOKU_BASE.'lib/images/arrow_up.gif">\')'; $this->doc .= '</script>'; $this->doc .= $lang['toc']; $this->doc .= '</div>'.DOKU_LF; |