From 3d0a6a8da9470ee2e10b13b27ee640368cf71e79 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Thu, 23 Jun 2011 14:53:00 -0700 Subject: [PATCH] fixes Bug 665132 - On search, Source button is not border-radius'd on the top/bottom left when it is the only button --- media/jetpack/css/UI.Layout.css | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/media/jetpack/css/UI.Layout.css b/media/jetpack/css/UI.Layout.css index c5ce3c53..a5f733e5 100644 --- a/media/jetpack/css/UI.Layout.css +++ b/media/jetpack/css/UI.Layout.css @@ -367,37 +367,33 @@ a:hover { /* Starting element */ .UI_Actions li:first-child { - -moz-border-radius: 6px; - -moz-border-radius-topright: 0; - -moz-border-radius-bottomright: 0; + -moz-border-radius-topleft: 6px; + -moz-border-radius-bottomleft: 6px; } .UI_Actions li:first-child a { - -moz-border-radius: 5px; - -moz-border-radius-topright: 0; - -moz-border-radius-bottomright: 0; + -moz-border-radius-topleft: 5px; + -moz-border-radius-bottomleft: 5px; } /* Ending element */ .UI_Actions li:last-child { - -moz-border-radius: 6px; - -moz-border-radius-topleft: 0; - -moz-border-radius-bottomleft: 0; + -moz-border-radius-topright: 6px; + -moz-border-radius-bottomright: 6px; } .UI_Actions li:last-child a { - -moz-border-radius: 5px; - -moz-border-radius-topleft: 0; - -moz-border-radius-bottomleft: 0; + -moz-border-radius-topright: 5px; + -moz-border-radius-bottomright: 5px; } /* There's only one element */ .UI_Actions li.single { - -moz-border-radius: 6px; + border-radius: 6px; } .UI_Actions li.single a { - -moz-border-radius: 5px; + border-radius: 5px; } .UI_Actions li a:hover,