Commit 2435b641 authored by Jacob Thornton's avatar Jacob Thornton

give pagination nav borders in ie

parent b18e76f9
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Designed and built with all the love in the world @twitter by @mdo and @fat. * Designed and built with all the love in the world @twitter by @mdo and @fat.
* Date: Sun Aug 21 12:18:33 PDT 2011 * Date: Sun Aug 21 12:26:03 PDT 2011
*/ */
/* Reset.less /* Reset.less
* Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc). * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
......
...@@ -456,7 +456,7 @@ div.pagination { ...@@ -456,7 +456,7 @@ div.pagination {
ul { ul {
float: left; float: left;
margin: 0; margin: 0;
border: 1px solid rgba(0,0,0,.15); border: 1px solid #ddd;
.border-radius(3px); .border-radius(3px);
.box-shadow(0 1px 2px rgba(0,0,0,.075); .box-shadow(0 1px 2px rgba(0,0,0,.075);
li { li {
...@@ -465,7 +465,9 @@ div.pagination { ...@@ -465,7 +465,9 @@ div.pagination {
float: left; float: left;
padding: 0 14px; padding: 0 14px;
line-height: (@baseline * 2) - 2; line-height: (@baseline * 2) - 2;
border-right: 1px solid rgba(0,0,0,.15); border-right: 1px solid;
border-right-color: #ddd;
border-right-color: rgba(0,0,0,.15);
text-decoration: none; text-decoration: none;
} }
a:hover, a:hover,
......
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