diff options
author | Anika Henke <a.c.henke@arcor.de> | 2007-05-15 00:44:19 +0200 |
---|---|---|
committer | Anika Henke <a.c.henke@arcor.de> | 2007-05-15 00:44:19 +0200 |
commit | 688774a0131564d4276cbff67eeb8bc4485f03ad (patch) | |
tree | 58d8453551dbbe088152c9f1a826a1ae70b73188 | |
parent | ed7ecb791be76223682b576af6242134cdca9496 (diff) | |
download | rpg-688774a0131564d4276cbff67eeb8bc4485f03ad.tar.gz rpg-688774a0131564d4276cbff67eeb8bc4485f03ad.tar.bz2 |
fix for former patch (FS#744)
darcs-hash:20070514224419-d5083-7f072fa6f2b3100adbeecc856f1babd2b9919186.gz
-rw-r--r-- | inc/html.php | 2 | ||||
-rw-r--r-- | lib/tpl/default/design.css | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php index 3da238f5d..42457670b 100644 --- a/inc/html.php +++ b/inc/html.php @@ -305,7 +305,7 @@ function html_hilight($html,$query){ function html_hilight_callback($m) { $hlight = unslash($m[0]); if ( !isset($m[2])) { - $hlight = '<strong class="search_hit">'.$hlight.'</strong>'; + $hlight = '<span class="search_hit">'.$hlight.'</span>'; } return $hlight; } diff --git a/lib/tpl/default/design.css b/lib/tpl/default/design.css index 7c8671e22..c407de815 100644 --- a/lib/tpl/default/design.css +++ b/lib/tpl/default/design.css @@ -660,6 +660,8 @@ div.dokuwiki .search_sep { div.dokuwiki .search_hit { color: __text__; background-color: __highlight__; +} +div.dokuwiki strong.search_hit { font-weight: normal; } |