0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

-background to -bg on pagination vars

This commit is contained in:
Mark Otto 2013-03-31 17:20:16 -07:00
parent f2e5c32936
commit 996ec4ca69
2 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@
padding: 4px 12px; padding: 4px 12px;
line-height: @line-height-base; line-height: @line-height-base;
text-decoration: none; text-decoration: none;
background-color: @pagination-background; background-color: @pagination-bg;
border: 1px solid @pagination-border; border: 1px solid @pagination-border;
border-left-width: 0; border-left-width: 0;
} }
@ -23,7 +23,7 @@
.pagination > li > a:focus, .pagination > li > a:focus,
.pagination > .active > a, .pagination > .active > a,
.pagination > .active > span { .pagination > .active > span {
background-color: @pagination-background-active; background-color: @pagination-bg-active;
} }
.pagination > .active > a, .pagination > .active > a,
.pagination > .active > span { .pagination > .active > span {
@ -35,7 +35,7 @@
.pagination > .disabled > a:hover, .pagination > .disabled > a:hover,
.pagination > .disabled > a:focus { .pagination > .disabled > a:focus {
color: @grayLight; color: @grayLight;
background-color: @pagination-background; background-color: @pagination-bg;
cursor: default; cursor: default;
} }
.pagination > li:first-child > a, .pagination > li:first-child > a,

View File

@ -222,8 +222,8 @@
// Pagination // Pagination
// ------------------------- // -------------------------
@pagination-background: #fff; @pagination-bg: #fff;
@pagination-background-active: #f5f5f5; @pagination-bg-active: #f5f5f5;
@pagination-border: #ddd; @pagination-border: #ddd;