Commit 9e0a526a authored by Weslly Honorato's avatar Weslly Honorato

fixed background-color for disabled links in pagination ('none' isn't a valid...

fixed background-color for disabled links in pagination ('none' isn't a valid value for background-color property http://www.w3.org/TR/CSS2/colors.html#propdef-background-color)
parent cf47ef0b
...@@ -483,7 +483,7 @@ footer { ...@@ -483,7 +483,7 @@ footer {
} }
&.disabled a, &.disabled a,
&.disabled a:hover { &.disabled a:hover {
background-color: none; background-color: transparent;
color: @grayLight; color: @grayLight;
} }
&.next a { &.next a {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment