From 810394009cffaa97cd898ce79826ac0e63aabf79 Mon Sep 17 00:00:00 2001 From: Harris Lapiroff Date: Thu, 12 May 2011 14:47:28 -0400 Subject: [PATCH] Forgot to use the border-radius mixin. --- static/css/screen.css | 5 +++++ static/scss/screen.scss | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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); -- 2.20.1