From: Mark Otto Date: Fri, 1 Mar 2013 07:23:05 +0000 (-0800) Subject: Fixes #6998: disabled background color properly on pagination X-Git-Tag: v3.0.0-rc1~616 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=38ba057dee025052c4a602b1295571e94b524a27;p=thirdparty%2Fbootstrap.git Fixes #6998: disabled background color properly on pagination --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index ba2b7d01b9..25878bcbbb 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -3687,7 +3687,7 @@ button.close { .pagination > .disabled > a:focus { color: #999999; cursor: default; - background-color: transparent; + background-color: #ffffff; } .pagination > li:first-child > a, diff --git a/less/pagination.less b/less/pagination.less index 037c475458..4cb4767cff 100644 --- a/less/pagination.less +++ b/less/pagination.less @@ -35,7 +35,7 @@ .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: @grayLight; - background-color: transparent; + background-color: @pagination-background; cursor: default; } .pagination > li:first-child > a,