summaryrefslogtreecommitdiffstats
path: root/skins/standard/global.css
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-08-08 12:21:24 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-08-08 12:21:24 +0200
commit8ae965eab0c718bfbf4700e33b9098775e22e434 (patch)
tree642dfb6b317e707693addc3f06cf51f76f59db14 /skins/standard/global.css
parent14d7441b73d32614aa0e086c5f69ac087b939a48 (diff)
downloadbugzilla-8ae965eab0c718bfbf4700e33b9098775e22e434.tar.gz
bugzilla-8ae965eab0c718bfbf4700e33b9098775e22e434.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/standard/global.css')
-rw-r--r--skins/standard/global.css8
1 files changed, 4 insertions, 4 deletions
diff --git a/skins/standard/global.css b/skins/standard/global.css
index 07b289ec2..e829a7f52 100644
--- a/skins/standard/global.css
+++ b/skins/standard/global.css
@@ -38,8 +38,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;
}
@@ -88,8 +88,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;