From 00b5a8ad81ee3dc00708ae22be78e313d9857f0d Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sun, 29 Mar 2009 12:24:26 -0700 Subject: [PATCH] Discovered that WebKit CSS border radius can be set on individual corners. --- static/css/style.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 2f3003b..b2ffa36 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -388,7 +388,8 @@ h1 { .note_button { -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px; - -webkit-border-radius: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; border-style: outset; border-width: 0px; background-color: #d0e0f0; @@ -480,7 +481,8 @@ h1 { .note_grabber { -moz-border-radius-topright: 5px; -moz-border-radius-bottomright: 5px; - -webkit-border-radius: 5px; + -webkit-border-top-right-radius: 5px; + -webkit-border-bottom-right-radius: 5px; -moz-user-select: none; -webkit-user-select: none; color: #fafafa;