fu: Close-up of Fu, bringing a scoop of water to her mouth (Default)
fu ([personal profile] fu) wrote in [site community profile] changelog2010-11-03 07:10 am

[dw-free] Misc. Layouts: hard-coded font faces into the CSS

[commit: http://hg.dwscoalition.org/dw-free/rev/e3dcc8f71fbf]

http://bugs.dwscoalition.org/show_bug.cgi?id=2629

Tweak font settings in Nouveau Oleanders.

Patch by [personal profile] ninetydegrees.

Files modified:
  • bin/upgrading/s2layers/nouveauoleanders/layout.s2
--------------------------------------------------------------------------------
diff -r 108933dea3a6 -r e3dcc8f71fbf bin/upgrading/s2layers/nouveauoleanders/layout.s2
--- a/bin/upgrading/s2layers/nouveauoleanders/layout.s2	Wed Nov 03 15:08:35 2010 +0800
+++ b/bin/upgrading/s2layers/nouveauoleanders/layout.s2	Wed Nov 03 15:10:39 2010 +0800
@@ -25,9 +25,11 @@ set comment_management_links = "text";
 ## Fonts
 ##===============================
 
-set font_journal_title = "Palatino";
-set font_entry_title = "Palatino";
-set font_module_heading = "Palatino";
+set font_journal_title = "Palatino, serif";
+set font_journal_subtitle = "Palatino, serif";
+set font_entry_title = "Palatino, serif";
+set font_comment_title = "Palatino, serif";
+set font_module_heading = "Palatino, serif";
 
 ##===============================
 ## Images
@@ -368,8 +370,13 @@ ul ul ul ul, .module-content ul ul ul ul
     }
 
 h1, h2, h3, h4, .comment-title {
-    font-family: $*font_journal_title, serif;
     font-style: italic;
+    }
+
+.tags-container h2,
+.page-archive h3,
+.page-day h3.day-date {
+    font-family: $*font_journal_title;
     }
 
 h2, h3, h4 {
@@ -417,7 +424,6 @@ a:hover {
     }
 
 body {
-    font-family: $*font_base, Verdana, Helvetica, sans-serif;
     margin: 0;
     }
 
--------------------------------------------------------------------------------