| Index: ui/accessibility/extensions/alt/hide-images.css
|
| diff --git a/ui/accessibility/extensions/alt/hide-images.css b/ui/accessibility/extensions/alt/hide-images.css
|
| index 840d7f233972ec5618624c7d36fe5080be1f1eb8..8590b6576345901449359283222841aebdf73123 100644
|
| --- a/ui/accessibility/extensions/alt/hide-images.css
|
| +++ b/ui/accessibility/extensions/alt/hide-images.css
|
| @@ -27,7 +27,7 @@ body[show-alt] img:not([aria-hidden=true]):not([role=presentation]):not([alt='']
|
| clear: both;
|
| }
|
|
|
| -@-webkit-keyframes slideDown {
|
| +@keyframes slideDown {
|
| from {
|
| transform: translateY(-150%);
|
| }
|
| @@ -36,7 +36,7 @@ body[show-alt] img:not([aria-hidden=true]):not([role=presentation]):not([alt='']
|
| }
|
| }
|
|
|
| -@-webkit-keyframes slideUp {
|
| +@keyframes slideUp {
|
| from {
|
| transform: translateY(0%);
|
| }
|
| @@ -46,22 +46,22 @@ body[show-alt] img:not([aria-hidden=true]):not([role=presentation]):not([alt='']
|
| }
|
|
|
| body[show-alt] .show-alt-infobar {
|
| - -webkit-animation-name: slideDown;
|
| - -webkit-animation-duration: 0.5s;
|
| - -webkit-animation-delay: 0.5s;
|
| - -webkit-animation-iteration-count: 1;
|
| - -webkit-animation-timing-function: ease;
|
| - -webkit-animation-direction: forwards;
|
| + animation-name: slideDown;
|
| + animation-duration: 0.5s;
|
| + animation-delay: 0.5s;
|
| + animation-iteration-count: 1;
|
| + animation-timing-function: ease;
|
| + animation-direction: forwards;
|
| transform: translateY(0%);
|
| }
|
|
|
| body:not([show-alt]) .show-alt-infobar {
|
| - -webkit-animation-name: slideUp;
|
| - -webkit-animation-duration: 0.5s;
|
| - -webkit-animation-delay: 0.5s;
|
| - -webkit-animation-iteration-count: 1;
|
| - -webkit-animation-timing-function: ease;
|
| - -webkit-animation-direction: forwards;
|
| + animation-name: slideUp;
|
| + animation-duration: 0.5s;
|
| + animation-delay: 0.5s;
|
| + animation-iteration-count: 1;
|
| + animation-timing-function: ease;
|
| + animation-direction: forwards;
|
| transform: translateY(-150%);
|
| }
|
|
|
| @@ -79,7 +79,7 @@ body:not([show-alt]) .show-alt-infobar {
|
| box-shadow: 0 0 5px black;
|
| font-family: Arial, sans-serif !important;
|
| font-size: 12pt !important;
|
| - -webkit-animation-fill-mode: backwards;
|
| + animation-fill-mode: backwards;
|
| }
|
|
|
| .show-alt-infobar .content {
|
|
|