From: Mark Otto Date: Tue, 27 Dec 2011 22:50:27 +0000 (-0600) Subject: fix quotes in font-family usage X-Git-Tag: v2.0.0~6^2~378 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=550879cf666ec6445d1918604cb71c7202a52999;p=thirdparty%2Fbootstrap.git fix quotes in font-family usage --- diff --git a/lib/mixins.less b/lib/mixins.less index 58df9298a5..83a3a31f92 100644 --- a/lib/mixins.less +++ b/lib/mixins.less @@ -54,13 +54,13 @@ #font { #family { .serif() { - font-family: "Georgia", Times New Roman, Times, serif; + font-family: Georgia, "Times New Roman", Times, serif; } .sans-serif() { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } .monospace() { - font-family: "Menlo", Monaco, Courier New, monospace; + font-family: Menlo, Monaco, Courier New, monospace; } } .shorthand(@size: @baseFontSize, @weight: normal, @lineHeight: @baseLineHeight) {