[pypy-commit] jitviewer default: webkit (i.e. chrome and the pyqt builtin browser) fails to display DroidSansMono in bold if we don't explicity declare font-weight and font-family

antocuni noreply at buildbot.pypy.org
Fri Jun 10 10:33:36 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r127:3768c0c7d1c4
Date: 2011-06-10 10:35 +0200
http://bitbucket.org/pypy/jitviewer/changeset/3768c0c7d1c4/

Log:	webkit (i.e. chrome and the pyqt builtin browser) fails to display
	DroidSansMono in bold if we don't explicity declare font-weight and
	font-family

diff --git a/static/style.css b/static/style.css
--- a/static/style.css
+++ b/static/style.css
@@ -6,6 +6,8 @@
 -----------------------------------------*/
 @font-face {
   font-family: 'DroidSansMono';
+  font-weight: normal;
+  font-style: normal;
   src: url("DroidSansMono.ttf") format("truetype");
 }
 


More information about the pypy-commit mailing list