diff options
author | nyamatongwe <unknown> | 2009-04-04 23:02:05 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-04-04 23:02:05 +0000 |
commit | 6880155f458723211ff3dbe697cff3529d6304db (patch) | |
tree | 31032caf02f1232524416491df1173d088357da6 | |
parent | 89db940cd0d6f3a2da913bc0098c777c5c7c50ee (diff) | |
download | scintilla-mirror-6880155f458723211ff3dbe697cff3529d6304db.tar.gz |
Avoid serifs on code.
-rw-r--r-- | doc/ScintillaDoc.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index c6f9fe46a..721e3a33c 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -14,10 +14,10 @@ <style type="text/css"> <!-- /*<![CDATA[*/ - CODE { font-family: "Courier New", monospace; } + CODE { font-weight: bold; font-family: Consolas,Bitstream Vera Sans Mono,Courier New,monospace; } A:visited { color: blue; } A:hover { text-decoration: underline ! important; } - A.message { text-decoration: none; font-family: "Courier New", monospace; } + A.message { text-decoration: none; font-weight: bold; font-family: Consolas,Bitstream Vera Sans Mono,Courier New,monospace; } A.toc { text-decoration: none; } A.jump { text-decoration: none; } /*]]>*/ @@ -521,7 +521,7 @@ struct TextRange { is limited and should only be used for simple cases and initial development. A different regular expression library can be <a class="jump" href="#AlternativeRegEx">integrated into Scintilla</a> or can be called from the container using direct access to the buffer contents through - <a class="jump" href="#SCI_GETCHARACTERPOINTER">SCI_GETCHARACTERPOINTER</a>. + <a class="message" href="#SCI_GETCHARACTERPOINTER">SCI_GETCHARACTERPOINTER</a>. </p> <code><a class="message" href="#SCI_FINDTEXT">SCI_FINDTEXT(int flags, TextToFind *ttf)</a><br /> |