aboutsummaryrefslogtreecommitdiff
path: root/lib/patterns.less
diff options
context:
space:
mode:
authorWeslly Honorato <[email protected]>2011-08-26 13:30:38 -0300
committerWeslly Honorato <[email protected]>2011-08-26 13:30:38 -0300
commit9e0a526a660354ee7edf5d9b8250da65acae2ab1 (patch)
tree67a9a80bb2bd3281b4329fc7b57b8c5cdafaf201 /lib/patterns.less
parentcf47ef0b2eb737e00d37b41ae545fbfbf10c6196 (diff)
downloadbootstrap-9e0a526a660354ee7edf5d9b8250da65acae2ab1.tar.xz
bootstrap-9e0a526a660354ee7edf5d9b8250da65acae2ab1.zip
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)
Diffstat (limited to 'lib/patterns.less')
-rw-r--r--lib/patterns.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/patterns.less b/lib/patterns.less
index ec42b033c..528e6ffdc 100644
--- a/lib/patterns.less
+++ b/lib/patterns.less
@@ -483,7 +483,7 @@ footer {
}
&.disabled a,
&.disabled a:hover {
- background-color: none;
+ background-color: transparent;
color: @grayLight;
}
&.next a {