Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: ui/accessibility/extensions/alt/hide-images.css

Issue 1549903002: Replace -webkit-transform with transform in Chrome UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase CL Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/accessibility/extensions/colorenhancer/res/setup.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 a9d30e333a958551e640521a240774ab3650f43c..840d7f233972ec5618624c7d36fe5080be1f1eb8 100644
--- a/ui/accessibility/extensions/alt/hide-images.css
+++ b/ui/accessibility/extensions/alt/hide-images.css
@@ -29,19 +29,19 @@ body[show-alt] img:not([aria-hidden=true]):not([role=presentation]):not([alt='']
@-webkit-keyframes slideDown {
from {
- -webkit-transform: translateY(-150%);
+ transform: translateY(-150%);
}
to {
- -webkit-transform: translateY(0px);
+ transform: translateY(0px);
}
}
@-webkit-keyframes slideUp {
from {
- -webkit-transform: translateY(0%);
+ transform: translateY(0%);
}
to {
- -webkit-transform: translateY(-150%);
+ transform: translateY(-150%);
}
}
@@ -52,7 +52,7 @@ body[show-alt] .show-alt-infobar {
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease;
-webkit-animation-direction: forwards;
- -webkit-transform: translateY(0%);
+ transform: translateY(0%);
}
body:not([show-alt]) .show-alt-infobar {
@@ -62,7 +62,7 @@ body:not([show-alt]) .show-alt-infobar {
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: ease;
-webkit-animation-direction: forwards;
- -webkit-transform: translateY(-150%);
+ transform: translateY(-150%);
}
.show-alt-infobar {
« no previous file with comments | « no previous file | ui/accessibility/extensions/colorenhancer/res/setup.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698