Commit 4e5b0e18 authored by Mark Otto's avatar Mark Otto

refined pager styles to give a border on the links and improved hover state

parent 8c763589
...@@ -2707,12 +2707,17 @@ button.btn.small, input[type="submit"].btn.small { ...@@ -2707,12 +2707,17 @@ button.btn.small, input[type="submit"].btn.small {
} }
.pager a { .pager a {
display: inline-block; display: inline-block;
padding: 6px 15px; padding: 5px 14px;
background-color: #f5f5f5; background-color: #fff;
border: 1px solid #ddd;
-webkit-border-radius: 15px; -webkit-border-radius: 15px;
-moz-border-radius: 15px; -moz-border-radius: 15px;
border-radius: 15px; border-radius: 15px;
} }
.pager a:hover {
text-decoration: none;
background-color: #f5f5f5;
}
.pager .next a { .pager .next a {
float: right; float: right;
} }
......
...@@ -13,10 +13,15 @@ ...@@ -13,10 +13,15 @@
} }
.pager a { .pager a {
display: inline-block; display: inline-block;
padding: 6px 15px; padding: 5px 14px;
background-color: #f5f5f5; background-color: #fff;
border: 1px solid #ddd;
.border-radius(15px); .border-radius(15px);
} }
.pager a:hover {
text-decoration: none;
background-color: #f5f5f5;
}
.pager .next a { .pager .next a {
float: right; float: right;
} }
......
Markdown is supported
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