From 5d5dd4b7932e4a0cd7c1dee5417251120f14334c Mon Sep 17 00:00:00 2001 From: phil Date: Fri, 4 Aug 2006 16:22:07 +0000 Subject: [PATCH] * Workarounds fuer den IE --- cd-template/doku/cryptocd.css | 4 +++- documents/mod_html_files.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cd-template/doku/cryptocd.css b/cd-template/doku/cryptocd.css index c516b30..2c709dd 100644 --- a/cd-template/doku/cryptocd.css +++ b/cd-template/doku/cryptocd.css @@ -7,10 +7,12 @@ body { margin: 0px; padding: 0px; font-size: 11pt; + font-family: helvetica, luxi sans, trebuchet ms, bitstream vera sans, sans-serif; + } html>body { - font-family: trebuchet ms, bitstream vera sans, sans-serif; + font-family: luxi sans, trebuchet ms, bitstream vera sans, sans-serif; } diff --git a/documents/mod_html_files.py b/documents/mod_html_files.py index 9462393..371a2f7 100644 --- a/documents/mod_html_files.py +++ b/documents/mod_html_files.py @@ -71,7 +71,7 @@ try: # Linie vor Fussnoten wird entfernt # Fussnoten bekommen id, damit sie per css formatierbar sind - content = string.replace(content,'

Fußnoten

','\n
\n

Fußnoten

') + content = string.replace(content,'

Fußnoten

','\n
\n
Fußnoten
') # Sonderzeichen in Fussnoten werden ersetzt (Hotfix fuer einen latex2html-Bug) content = string.replace(content,'ä','ä')