Skip to content

Commit 9e0a526

Browse files
committed
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)
1 parent cf47ef0 commit 9e0a526

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/patterns.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ footer {
483483
}
484484
&.disabled a,
485485
&.disabled a:hover {
486-
background-color: none;
486+
background-color: transparent;
487487
color: @grayLight;
488488
}
489489
&.next a {

0 commit comments

Comments
 (0)