# HG changeset patch # User Alexander Plavin # Date 1366481357 -14400 # Node ID 6bc76c0e60b98ee96fcb5df8b056b45307d0f7bc # Parent a1922b9a2cad6f36df51e482d626e8d02ac2ac81 css: fixed font-family There is no 'sans' font-family, replaced with 'sans-serif' diff -r a1922b9a2cad -r 6bc76c0e60b9 mercurial/templates/static/style.css --- a/mercurial/templates/static/style.css Fri Apr 19 22:03:59 2013 -0700 +++ b/mercurial/templates/static/style.css Sat Apr 20 22:09:17 2013 +0400 @@ -14,13 +14,13 @@ background-color: #666; padding: 2pt; color: white; - font-family: sans; + font-family: sans-serif; font-weight: bold; } .navigate a { background-color: #ccc; padding: 2pt; - font-family: sans; + font-family: sans-serif; color: black; } diff -r a1922b9a2cad -r 6bc76c0e60b9 tests/test-hgweb-commands.t --- a/tests/test-hgweb-commands.t Fri Apr 19 22:03:59 2013 -0700 +++ b/tests/test-hgweb-commands.t Sat Apr 20 22:09:17 2013 +0400 @@ -1178,13 +1178,13 @@ background-color: #666; padding: 2pt; color: white; - font-family: sans; + font-family: sans-serif; font-weight: bold; } .navigate a { background-color: #ccc; padding: 2pt; - font-family: sans; + font-family: sans-serif; color: black; }