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

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

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (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 664ad5cf963fe0ecb9e1110c2199f2b4524ef72c..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 {
- from { -webkit-transform: rotate(0); }
- to { -webkit-transform: rotate(359deg); }
+@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)

Powered by Google App Engine
This is Rietveld 408576698