From: Bjoern Jacke Date: Thu, 10 Mar 2011 07:43:13 +0000 (+0800) Subject: Bug 640184: Use CSS3 border radius styles X-Git-Tag: bugzilla-4.0.1~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebc99a42a95cbed48702c96a8671d04299326d48;p=thirdparty%2Fbugzilla.git Bug 640184: Use CSS3 border radius styles r=glob, a=mkanat --- diff --git a/skins/contrib/Dusk/global.css b/skins/contrib/Dusk/global.css index 3a18e401ea..1e9a5e9dc2 100644 --- a/skins/contrib/Dusk/global.css +++ b/skins/contrib/Dusk/global.css @@ -32,6 +32,8 @@ body { #titles { -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; } #header .links, #footer { @@ -42,6 +44,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; } @@ -62,6 +66,7 @@ body { padding: 10px; font-size: 10pt; -moz-border-radius: 5px; + border-radius: 5px; } a { @@ -175,6 +180,7 @@ hr { border: 1px solid #747e93; width: 100%; -moz-border-radius: 5px; + border-radius: 5px; } #footer #links-actions, diff --git a/skins/standard/global.css b/skins/standard/global.css index 394715e4a8..8909445fd4 100644 --- a/skins/standard/global.css +++ b/skins/standard/global.css @@ -57,6 +57,8 @@ border-bottom: 1px solid #747E93; -moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px; + border-bottom-left-radius: 5px; + border-bottom-right-radius: 5px; padding: 0.5em; } @@ -107,6 +109,8 @@ color: #fff; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; + border-top-left-radius: 5px; + border-top-right-radius: 5px; font-size: 110%; margin: 0; padding: 0.5em; diff --git a/skins/standard/show_bug.css b/skins/standard/show_bug.css index 99c0b405e6..da8a5c389f 100644 --- a/skins/standard/show_bug.css +++ b/skins/standard/show_bug.css @@ -3,6 +3,7 @@ padding: 0.3em; background-color: rgb(208, 208, 208); -moz-border-radius: 0.5em; + border-radius: 0.5em; font-size: 125%; font-weight: bold; }