Ticket Change Details
Not logged in
Overview

Artifact ID: c4ee22b8cdd9482382a7f220d009487bb70a0ab4
Ticket: aba72eaa589a69b0efc1a2346b429705f7ee59c1
Default CSS style has "wrong" font-family.
User & Date: anonymous 2009-10-11 19:01:32
Changes

  1. comment changed to:
    Default CSS style has font family defined as follows:
    
    <code>font-family: "sans serif";</code>
    
    While "sans serif" is an actual name of font in some Linux installations, this doesn't work for e.g. Safari on Mac -- it falls back to the default serif font (Times New Roman).
    
    The proper way to define a generic sans-serif font in CSS, according to CSS specs [http://www.w3.org/TR/CSS21/fonts.html#sans-serif-def] is this:
    
    <code>font-family: sans-serif;</code>
    
    Note the dash and absence of quotes (from specs: <i>Generic font family names are keywords and must NOT be quoted</i>).
    
  2. foundin changed to: "b99aa66d1f"
  3. private_contact changed to: "05f652db744266759b20d248ec2f451629420388"
  4. severity changed to: "Cosmetic"
  5. status changed to: "Open"
  6. title changed to: "Default CSS style has "wrong" font-family."
  7. type changed to: "Feature_Request"