diff options
author | Stephane Deschamps <notabene@users.noreply.github.com> | 2021-03-27 10:44:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-27 10:44:51 +0100 |
commit | bd386c8e750521c33e01f4e585f234a0a3218f4a (patch) | |
tree | 549914d92dd96b2d6fb4d5c89b672bdf0e1ab7df /files/fr/web/css | |
parent | 5f8ca832cd3ce12ac30a88ad011071b928e6b7fb (diff) | |
download | translated-content-bd386c8e750521c33e01f4e585f234a0a3218f4a.tar.gz translated-content-bd386c8e750521c33e01f4e585f234a0a3218f4a.tar.bz2 translated-content-bd386c8e750521c33e01f4e585f234a0a3218f4a.zip |
Default :focus was not accessible (#336)
Diffstat (limited to 'files/fr/web/css')
-rw-r--r-- | files/fr/web/css/_colon_focus-visible/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/css/_colon_focus-visible/index.html b/files/fr/web/css/_colon_focus-visible/index.html index 7e3bde9044..ecdd7ca410 100644 --- a/files/fr/web/css/_colon_focus-visible/index.html +++ b/files/fr/web/css/_colon_focus-visible/index.html @@ -70,7 +70,7 @@ translation_of: 'Web/CSS/:focus-visible' custom-button:focus { /* Fournir une alternative pour les navigateurs qui ne prennent pas en charge :focus-visible */ - outline: none; + outline: 2px solid red; background: lightgrey; } |