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

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

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: bluetooth_internals/snackbar.js Created 3 years, 10 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
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..5ed474d8b3c0f806998ab928be33237799758e80 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,26 +46,27 @@ 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-delay: 0.5s;
+ animation-direction: forwards;
+ animation-duration: 0.5s;
+ animation-iteration-count: 1;
+ animation-name: slideDown;
+ animation-timing-function: ease;
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-delay: 0.5s;
+ animation-direction: forwards;
+ animation-duration: 0.5s;
+ animation-iteration-count: 1;
+ animation-name: slideUp;
+ animation-timing-function: ease;
transform: translateY(-150%);
}
.show-alt-infobar {
+ animation-fill-mode: backwards;
top: 0;
left: 0;
right: 0;
@@ -76,10 +77,8 @@ body:not([show-alt]) .show-alt-infobar {
line-height: 2.0;
overflow: hidden;
box-shadow: 0 0 5px black;
- box-shadow: 0 0 5px black;
font-family: Arial, sans-serif !important;
font-size: 12pt !important;
- -webkit-animation-fill-mode: backwards;
}
.show-alt-infobar .content {
« no previous file with comments | « chrome/browser/resources/bluetooth_internals/snackbar.js ('k') | ui/accessibility/extensions/caretbrowsing/caretbrowsing.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698