diff options
author | Øyvind A. Holm <sunny@sunbase.org> | 2011-02-22 18:14:21 +0100 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-02-22 15:53:10 -0400 |
commit | f256d4e7e63dcf94591ec05d0beb493ba04102dd (patch) | |
tree | fb334d14ea26e8dc03e1ded0105f1f0ee7043b9a /doc/style.css | |
parent | a3bcff502de4b63a056bd07859d3a90c6f53eee7 (diff) | |
download | ikiwiki-f256d4e7e63dcf94591ec05d0beb493ba04102dd.tar ikiwiki-f256d4e7e63dcf94591ec05d0beb493ba04102dd.tar.gz |
style.css: Replace obsolete -moz-outline-style property with outline-style
The "-moz-outline-style" property generates an error at the W3C CSS
validator, saying the property doesn't exist. According to
<https://developer.mozilla.org/en/CSS/-moz-outline-style>, this property
is obsolete and the use of "outline-style" is preferred.
(cherry picked from commit e3b5eab2971109d18332fe44fd396322bb148cfc)
Diffstat (limited to 'doc/style.css')
-rw-r--r-- | doc/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/style.css b/doc/style.css index 922b82a75..fa413cf24 100644 --- a/doc/style.css +++ b/doc/style.css @@ -485,7 +485,7 @@ a.openid_large_btn:focus { outline: none; } a.openid_large_btn:focus { - -moz-outline-style: none; + outline-style: none; } .openid_selected { border: 4px solid #DDD; |