summaryrefslogtreecommitdiffstats
path: root/skins
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-08-08 12:23:45 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-08-08 12:23:45 +0200
commit10c93f968943b06c1197b4c121edb7974b02a52e (patch)
treea37e74f1b87177d01b2df4da137b0c389b4260cd /skins
parentcfe703f3b83e2dd790696e3fcf1e238caccca7d9 (diff)
downloadbugzilla-10c93f968943b06c1197b4c121edb7974b02a52e.tar.gz
bugzilla-10c93f968943b06c1197b4c121edb7974b02a52e.tar.xz
Bug 781059: -moz-border-radius is obsolete and must be replaced by the standard border-radius CSS property
r=reed a=LpSolit
Diffstat (limited to 'skins')
-rw-r--r--skins/contrib/Dusk/global.css12
-rw-r--r--skins/standard/global.css8
2 files changed, 10 insertions, 10 deletions
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,
diff --git a/skins/standard/global.css b/skins/standard/global.css
index 0b28ff3b6..4d4b02153 100644
--- a/skins/standard/global.css
+++ b/skins/standard/global.css
@@ -55,8 +55,8 @@
border-left: 1px solid #747E93;
border-right: 1px solid #747E93;
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;
}
@@ -105,8 +105,8 @@
width: 100%;
background-color: #404D6C;
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;