Commit 8ed77c41 authored by Mark Otto's avatar Mark Otto
Browse files

fixes #4295: add vars for pagination

parent 0cb3ba6b
1 merge request!4427Use variable for desktop media query
Showing with 10 additions and 2 deletions
+10 -2
...@@ -4545,7 +4545,8 @@ input[type="submit"].btn.btn-mini { ...@@ -4545,7 +4545,8 @@ input[type="submit"].btn.btn-mini {
padding: 0 14px; padding: 0 14px;
line-height: 38px; line-height: 38px;
text-decoration: none; text-decoration: none;
border: 1px solid #ddd; background-color: #ffffff;
border: 1px solid #dddddd;
border-left-width: 0; border-left-width: 0;
} }
......
...@@ -24,7 +24,8 @@ ...@@ -24,7 +24,8 @@
padding: 0 14px; padding: 0 14px;
line-height: (@baseLineHeight * 2) - 2; line-height: (@baseLineHeight * 2) - 2;
text-decoration: none; text-decoration: none;
border: 1px solid #ddd; background-color: @paginationBackground;
border: 1px solid @paginationBorder;
border-left-width: 0; border-left-width: 0;
} }
.pagination a:hover, .pagination a:hover,
......
...@@ -194,6 +194,12 @@ ...@@ -194,6 +194,12 @@
@navbarInverseBrandColor: @navbarInverseLinkColor; @navbarInverseBrandColor: @navbarInverseLinkColor;
// Pagination
// -------------------------
@paginationBackground: #fff;
@paginationBorder: #ddd;
@paginationActiveBackground: #f5f5f5;
// Hero unit // Hero unit
// ------------------------- // -------------------------
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment