[PATCH] css: fixed font-family

Alexander Plavin me at aplavin.ru
Sat Apr 20 07:49:16 CDT 2013


# HG changeset patch
# User Alexander Plavin <me at aplavin.ru>
# Date 1366461998 -14400
#      Sat Apr 20 16:46:38 2013 +0400
# Branch stable
# Node ID 8f0060e5714c535e9344af6914e37b22aa80d8d9
# Parent  4ab185997587bb838aaacc86e17781c1a930d7bf
css: fixed font-family

There is no 'sans' font-family, replaced with 'sans-serif'

diff -r 4ab185997587 -r 8f0060e5714c mercurial/templates/static/style-gitweb.css
--- a/mercurial/templates/static/style-gitweb.css	Fri Apr 19 22:39:51 2013 +0400
+++ b/mercurial/templates/static/style-gitweb.css	Sat Apr 20 16:46:38 2013 +0400
@@ -1,4 +1,4 @@
-body { font-family: sans-serif; font-size: 12px; margin:0px; border:solid #d9d8d1; border-width:1px; margin:10px; }
+body { font-family: sans-serif; font-size: 12px; border:solid #d9d8d1; border-width:1px; margin:10px; }
 a { color:#0000cc; }
 a:hover, a:visited, a:active { color:#880000; }
 div.page_header { height:25px; padding:8px; font-size:18px; font-weight:bold; background-color:#d9d8d1; }
diff -r 4ab185997587 -r 8f0060e5714c mercurial/templates/static/style.css
--- a/mercurial/templates/static/style.css	Fri Apr 19 22:39:51 2013 +0400
+++ b/mercurial/templates/static/style.css	Sat Apr 20 16:46:38 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;
 }
 


More information about the Mercurial-devel mailing list