aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-03-31 17:20:16 -0700
committerMark Otto <[email protected]>2013-03-31 17:20:16 -0700
commit996ec4ca69a7f9ff2a5697356605f2d5b621ebe0 (patch)
tree2c04a60dae546d97f6b1474d739bff92c3343935
parentf2e5c3293644917161a2f01c877b817ea58c2631 (diff)
downloadbootstrap-996ec4ca69a7f9ff2a5697356605f2d5b621ebe0.tar.xz
bootstrap-996ec4ca69a7f9ff2a5697356605f2d5b621ebe0.zip
-background to -bg on pagination vars
-rw-r--r--less/pagination.less6
-rw-r--r--less/variables.less4
2 files changed, 5 insertions, 5 deletions
diff --git a/less/pagination.less b/less/pagination.less
index 4cb4767cf..529219797 100644
--- a/less/pagination.less
+++ b/less/pagination.less
@@ -15,7 +15,7 @@
padding: 4px 12px;
line-height: @line-height-base;
text-decoration: none;
- background-color: @pagination-background;
+ background-color: @pagination-bg;
border: 1px solid @pagination-border;
border-left-width: 0;
}
@@ -23,7 +23,7 @@
.pagination > li > a:focus,
.pagination > .active > a,
.pagination > .active > span {
- background-color: @pagination-background-active;
+ background-color: @pagination-bg-active;
}
.pagination > .active > a,
.pagination > .active > span {
@@ -35,7 +35,7 @@
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
color: @grayLight;
- background-color: @pagination-background;
+ background-color: @pagination-bg;
cursor: default;
}
.pagination > li:first-child > a,
diff --git a/less/variables.less b/less/variables.less
index 1f4e45874..e901e70c0 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -222,8 +222,8 @@
// Pagination
// -------------------------
-@pagination-background: #fff;
-@pagination-background-active: #f5f5f5;
+@pagination-bg: #fff;
+@pagination-bg-active: #f5f5f5;
@pagination-border: #ddd;