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

Unified Diff: chrome/browser/resources/hotword_audio_verification/style.css

Issue 2689163002: Remove webkit prefixes for CSS Animation in chrome/ styles (Closed)
Patch Set: rebase 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: chrome/browser/resources/hotword_audio_verification/style.css
diff --git a/chrome/browser/resources/hotword_audio_verification/style.css b/chrome/browser/resources/hotword_audio_verification/style.css
index 916b8a77ce050b56424e8864be1b167a45625820..233ad3143f78bb3d5bab6dc026ba47e4ba445caf 100644
--- a/chrome/browser/resources/hotword_audio_verification/style.css
+++ b/chrome/browser/resources/hotword_audio_verification/style.css
@@ -174,13 +174,13 @@ a[is='action-link'] {
color: rgba(66, 133, 244, 1);
}
-@-webkit-keyframes rotate {
+@keyframes rotate {
from { transform: rotate(0); }
to { transform: rotate(359deg); }
}
.train.listening .icon {
- -webkit-animation: rotate 2s linear infinite;
+ animation: rotate 2s linear infinite;
background: -webkit-image-set(
url(../images/placeholder-loader-1x.png) 1x,
url(../images/placeholder-loader-2x.png) 2x)
@@ -290,7 +290,7 @@ div.buttonbar {
}
.buttonbar .message.wait .icon {
- -webkit-animation: rotate 2s linear infinite;
+ animation: rotate 2s linear infinite;
background: -webkit-image-set(
url(../images/placeholder-loader-1x.png) 1x,
url(../images/placeholder-loader-2x.png) 2x)
« no previous file with comments | « chrome/browser/resources/chromeos/login/screen_error_message.css ('k') | chrome/browser/resources/local_ntp/local_ntp.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698