From 10c93f968943b06c1197b4c121edb7974b02a52e Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Wed, 8 Aug 2012 12:23:45 +0200 Subject: Bug 781059: -moz-border-radius is obsolete and must be replaced by the standard border-radius CSS property r=reed a=LpSolit --- skins/contrib/Dusk/global.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'skins/contrib') diff --git a/skins/contrib/Dusk/global.css b/skins/contrib/Dusk/global.css index 3a18e401e..63375672b 100644 --- a/skins/contrib/Dusk/global.css +++ b/skins/contrib/Dusk/global.css @@ -30,8 +30,8 @@ body { /* page title */ #titles { - -moz-border-radius-topleft: 5px; - -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; } #header .links, #footer { @@ -40,8 +40,8 @@ body { } #header { - -moz-border-radius-bottomleft: 5px; - -moz-border-radius-bottomright: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; border: none; } @@ -61,7 +61,7 @@ body { border: 1px solid #747e93; padding: 10px; font-size: 10pt; - -moz-border-radius: 5px; + border-radius: 5px; } a { @@ -174,7 +174,7 @@ hr { #footer { border: 1px solid #747e93; width: 100%; - -moz-border-radius: 5px; + border-radius: 5px; } #footer #links-actions, -- cgit v1.2.3-24-g4f1b