diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-08 12:23:45 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-08 12:23:45 +0200 |
commit | 10c93f968943b06c1197b4c121edb7974b02a52e (patch) | |
tree | a37e74f1b87177d01b2df4da137b0c389b4260cd /skins/standard | |
parent | cfe703f3b83e2dd790696e3fcf1e238caccca7d9 (diff) | |
download | bugzilla-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/standard')
-rw-r--r-- | skins/standard/global.css | 8 |
1 files changed, 4 insertions, 4 deletions
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; |