From: Harris Lapiroff Date: Thu, 12 May 2011 18:47:28 +0000 (-0400) Subject: Forgot to use the border-radius mixin. X-Git-Url: http://git.ithinksw.org/philo.git/commitdiff_plain/810394009cffaa97cd898ce79826ac0e63aabf79 Forgot to use the border-radius mixin. --- diff --git a/static/css/screen.css b/static/css/screen.css index 9b61ed9..d3a0107 100644 --- a/static/css/screen.css +++ b/static/css/screen.css @@ -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; diff --git a/static/scss/screen.scss b/static/scss/screen.scss index 8d2a415..38ef8e6 100644 --- a/static/scss/screen.scss +++ b/static/scss/screen.scss @@ -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);