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)
master
Øyvind A. Holm 2011-02-22 18:14:21 +01:00 committed by Joey Hess
parent a3bcff502d
commit f256d4e7e6
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ a.openid_large_btn:focus {
outline: none; outline: none;
} }
a.openid_large_btn:focus { a.openid_large_btn:focus {
-moz-outline-style: none; outline-style: none;
} }
.openid_selected { .openid_selected {
border: 4px solid #DDD; border: 4px solid #DDD;