Skip to content
This repository has been archived by the owner on Oct 29, 2020. It is now read-only.

Commit

Permalink
fixed background-color for disabled links in pagination ('none' isn't…
Browse files Browse the repository at this point in the history
… a valid value for background-color property http://www.w3.org/TR/CSS2/colors.html#propdef-background-color)
  • Loading branch information
weslly committed Aug 26, 2011
1 parent cf47ef0 commit 9e0a526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/patterns.less
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ footer {
}
&.disabled a,
&.disabled a:hover {
background-color: none;
background-color: transparent;
color: @grayLight;
}
&.next a {
Expand Down

0 comments on commit 9e0a526

Please sign in to comment.