kareila: (Default)
kareila ([personal profile] kareila) wrote in [site community profile] changelog2009-09-18 11:58 am

[dw-nonfree] a:hover doesn't apply to already visited links

[commit: http://hg.dwscoalition.org/dw-nonfree/rev/4ba97d00525f]

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

Fix visited/hover/active precedence for Sunday Morning.

Patch by [personal profile] yvi.

Files modified:
  • bin/upgrading/s2layers/sundaymorning/layout.s2
--------------------------------------------------------------------------------
diff -r e49d2ff482b4 -r 4ba97d00525f bin/upgrading/s2layers/sundaymorning/layout.s2
--- a/bin/upgrading/s2layers/sundaymorning/layout.s2	Fri Sep 18 06:27:17 2009 -0500
+++ b/bin/upgrading/s2layers/sundaymorning/layout.s2	Fri Sep 18 06:57:58 2009 -0500
@@ -301,15 +301,15 @@ a {
     $page_link_colors
     text-decoration: none;
 }
-a:active {
-    $page_link_active_colors
-}
 a:visited {
     $page_link_visited_colors
 }
 a:hover {
     $page_link_hover_colors
     text-decoration: none;
+}
+a:active {
+    $page_link_active_colors
 }
 
 #container {
@@ -537,14 +537,14 @@ a:hover {
 .entry-wrapper a, .comment-wrapper a {
     $entry_link_colors
 }
-.entry-wrapper a:active, .comment-wrapper a:active {
-    $entry_link_active_colors
-}
 .entry-wrapper a:visited, .comment-wrapper a:visited {
     $entry_link_visited_colors
 }
 .entry-wrapper a:hover, .comment-wrapper a:hover {
     $entry_link_hover_colors
+}
+.entry-wrapper a:active, .comment-wrapper a:active {
+    $entry_link_active_colors
 }
 
 .entry .time, .entry .date {
--------------------------------------------------------------------------------