diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-08 12:21:24 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-08-08 12:21:24 +0200 |
commit | 8ae965eab0c718bfbf4700e33b9098775e22e434 (patch) | |
tree | 642dfb6b317e707693addc3f06cf51f76f59db14 /skins/contrib/Dusk | |
parent | 14d7441b73d32614aa0e086c5f69ac087b939a48 (diff) | |
download | bugs-8ae965eab0c718bfbf4700e33b9098775e22e434.tar bugs-8ae965eab0c718bfbf4700e33b9098775e22e434.tar.gz bugs-8ae965eab0c718bfbf4700e33b9098775e22e434.tar.bz2 bugs-8ae965eab0c718bfbf4700e33b9098775e22e434.tar.xz bugs-8ae965eab0c718bfbf4700e33b9098775e22e434.zip |
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/contrib/Dusk')
-rw-r--r-- | skins/contrib/Dusk/global.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/skins/contrib/Dusk/global.css b/skins/contrib/Dusk/global.css index d5179f5c8..f051a3b58 100644 --- a/skins/contrib/Dusk/global.css +++ b/skins/contrib/Dusk/global.css @@ -16,8 +16,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 { @@ -26,8 +26,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; } @@ -47,7 +47,7 @@ body { border: 1px solid #747e93; padding: 10px; font-size: 10pt; - -moz-border-radius: 5px; + border-radius: 5px; } a { @@ -160,7 +160,7 @@ hr { #footer { border: 1px solid #747e93; width: 100%; - -moz-border-radius: 5px; + border-radius: 5px; } #footer #links-actions, |