Browse code

Fix deprecated Compass transition arguments

Stephen Tudor authored on 17/07/2011 at 02:18:39
Showing 3 changed files
... ...
@@ -69,7 +69,7 @@ aside[role=sidebar] a {
69 69
   @include link-colors($sidebar-link-color, $hover: $sidebar-link-color-hover, $focus: $sidebar-link-color-hover, $active: $sidebar-link-color-active);
70 70
 }
71 71
 a {
72
-  @include transition(color, .3s);
72
+  @include transition(color .3s);
73 73
 }
74 74
 
75 75
 html {
... ...
@@ -108,7 +108,7 @@ article + article {
108 108
     text-decoration: none;
109 109
     color: mix($text-color, $text-color-light);
110 110
     @extend .serif;
111
-    @include transition(background-color, .5s);
111
+    @include transition(background-color .5s);
112 112
     &:hover {
113 113
       background: $link-color-hover;
114 114
       text-shadow: none;
... ...
@@ -34,7 +34,7 @@ aside[role=sidebar] {
34 34
   }
35 35
   a {
36 36
     color: inherit;
37
-    @include transition(color, .5s);
37
+    @include transition(color .5s);
38 38
   }
39 39
   &:hover a {
40 40
     color: $sidebar-link-color;