kareila: (Default)
kareila ([personal profile] kareila) wrote in [site community profile] changelog2010-10-24 05:18 pm

[dw-free] Modish: unreadable text in comments in some themes

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

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

Make sure links in entry titles are colored appropriately.

Patch by [personal profile] ninetydegrees.

Files modified:
  • bin/upgrading/s2layers/modish/layout.s2
  • bin/upgrading/s2layers/modish/themes.s2
--------------------------------------------------------------------------------
diff -r eab0259123d0 -r 02a1e40fab97 bin/upgrading/s2layers/modish/layout.s2
--- a/bin/upgrading/s2layers/modish/layout.s2	Sun Oct 24 12:04:08 2010 -0500
+++ b/bin/upgrading/s2layers/modish/layout.s2	Sun Oct 24 12:18:08 2010 -0500
@@ -96,10 +96,14 @@ border: none; }
 
 .entry .entry-title a,
 .entry .entry-title a:visited {
+    color: $*color_entry_title;
     text-decoration: none;
     }
 
-.entry .entry-title a:hover { text-decoration: underline; }
+.entry .entry-title a:hover {
+    color: $*color_entry_title;
+    text-decoration: underline;
+    }
 
 .entry .datetime { font-size: small;
     padding: 0 5px;
diff -r eab0259123d0 -r 02a1e40fab97 bin/upgrading/s2layers/modish/themes.s2
--- a/bin/upgrading/s2layers/modish/themes.s2	Sun Oct 24 12:04:08 2010 -0500
+++ b/bin/upgrading/s2layers/modish/themes.s2	Sun Oct 24 12:18:08 2010 -0500
@@ -257,6 +257,14 @@ function Page::print_theme_stylesheet() 
     span.date, span.time {
         color: $*color_page_title;
         }
+
+    .entry .entry-title a:visited {
+        color: $*color_entry_link_visited;
+    }
+
+    .entry .entry-title a:hover {
+        color: $*color_entry_link_hover;
+    }
 
     ul.entry-interaction-links, ul.entry-management-links {
         padding-top: 2px;
--------------------------------------------------------------------------------