Forgot to use the border-radius mixin.
authorHarris Lapiroff <harris@chromamine.com>
Thu, 12 May 2011 18:47:28 +0000 (14:47 -0400)
committerHarris Lapiroff <harris@chromamine.com>
Thu, 12 May 2011 18:47:28 +0000 (14:47 -0400)
static/css/screen.css
static/scss/screen.scss

index 9b61ed9..d3a0107 100644 (file)
@@ -119,6 +119,11 @@ a {
   padding: 3px;
   margin: -4px 0;
   border: 1px solid #aebbd5;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
+  -o-border-radius: 3px;
+  -ms-border-radius: 3px;
+  -khtml-border-radius: 3px;
   border-radius: 3px;
   -moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 0 0 white;
   -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15) inset, 0 1px 0 0 white;
index 8d2a415..38ef8e6 100644 (file)
@@ -59,7 +59,7 @@ a{
                padding:3px;
                margin:-4px 0;
                border: 1px solid darken($page-background, 15%);
-               border-radius:3px;
+               @include border-radius(3px);
                @include box-inset;
                font-family:Menlo, monospace;
                @include adjust-font-size-to(13px);