aboutsummaryrefslogtreecommitdiff
path: root/src/css.cc
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-26 21:09:52 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-01-26 21:09:52 +0100
commit307159fdc7edda9d12a174ebc7d3e0e5480aed4f (patch)
tree3d58b34d86c042ec916e4bc75d3689387d9b814b /src/css.cc
parent954f1b5dea7b6dbdf8208b0ce6576228d121656c (diff)
adapt font-family preferences to match CSS
CSS 2.1 uses the following predefined font names: 'serif', 'sans-serif', 'cursive', 'fantasy', 'monospace'. Add preferences so that the user can set real font names for these. Basically the new "font_sans_serif" option is what "vw_fontame" used to be and "font_monospace" is equivalent to "fw_fontname". The other two options are new.
Diffstat (limited to 'src/css.cc')
-rw-r--r--src/css.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css.cc b/src/css.cc
index 986bd6ca..84b66738 100644
--- a/src/css.cc
+++ b/src/css.cc
@@ -356,7 +356,7 @@ void CssContext::addRule (CssRule *rule, CssPrimaryOrder order) {
void CssContext::buildUserAgentStyle () {
const char *cssBuf =
- "body {background-color: #dcd1ba; font-family: sans; color: black;"
+ "body {background-color: #dcd1ba; font-family: sans-serif; color: black;"
" margin: 5px}"
"big {font-size: 1.17em}"
"blockquote, dd {margin-left: 40px; margin-right: 40px}"