]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fixes #4295: add vars for pagination
authorMark Otto <markotto@twitter.com>
Wed, 8 Aug 2012 05:37:38 +0000 (22:37 -0700)
committerMark Otto <markotto@twitter.com>
Wed, 8 Aug 2012 05:37:38 +0000 (22:37 -0700)
docs/assets/css/bootstrap.css
less/pagination.less
less/variables.less

index 651e764bd6494486676af39c4781550ed1bff99d..6bb9e1545be281919a369eb25a48f6bbc3a65ba4 100644 (file)
@@ -4545,7 +4545,8 @@ input[type="submit"].btn.btn-mini {
   padding: 0 14px;
   line-height: 38px;
   text-decoration: none;
-  border: 1px solid #ddd;
+  background-color: #ffffff;
+  border: 1px solid #dddddd;
   border-left-width: 0;
 }
 
index 9b0066077a077330e2ba16ac92a54f1e26d92855..2c19880c09e2d79e240dd98d5da3cc22692fe895 100644 (file)
@@ -24,7 +24,8 @@
   padding: 0 14px;
   line-height: (@baseLineHeight * 2) - 2;
   text-decoration: none;
-  border: 1px solid #ddd;
+  background-color: @paginationBackground;
+  border: 1px solid @paginationBorder;
   border-left-width: 0;
 }
 .pagination a:hover,
index 93cd1d639ed381909f081b6ebf7197be6378da44..d4b44a2de247a274682cb7e02880df61ce8924c5 100644 (file)
 @navbarInverseBrandColor:                @navbarInverseLinkColor;
 
 
+// Pagination
+// -------------------------
+@paginationBackground:                #fff;
+@paginationBorder:                    #ddd;
+@paginationActiveBackground:          #f5f5f5;
+
 
 // Hero unit
 // -------------------------