mirror of https://github.com/twbs/bootstrap.git
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)
This commit is contained in:
parent
cf47ef0b2e
commit
9e0a526a66
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue