aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-02-28 23:23:05 -0800
committerMark Otto <[email protected]>2013-02-28 23:23:05 -0800
commit38ba057dee025052c4a602b1295571e94b524a27 (patch)
tree70e15c9e215d8c00be4c7f196081a8e80ae2cd00
parent5a30e52aac451369bf9a6abfc34c3c5d10b304d3 (diff)
downloadbootstrap-38ba057dee025052c4a602b1295571e94b524a27.tar.xz
bootstrap-38ba057dee025052c4a602b1295571e94b524a27.zip
Fixes #6998: disabled background color properly on pagination
-rw-r--r--docs/assets/css/bootstrap.css2
-rw-r--r--less/pagination.less2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index ba2b7d01b..25878bcbb 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 037c47545..4cb4767cf 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,