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

Unified Diff: chrome/browser/resources/supervised_user_internals.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/supervised_user_internals.css
diff --git a/chrome/browser/resources/supervised_user_internals.css b/chrome/browser/resources/supervised_user_internals.css
index 97a8c205fb94a89bc2ebaaae0c85183ad951d7c4..97d3dba0a3b8c36fc921603ff469652fd88f7d7d 100644
--- a/chrome/browser/resources/supervised_user_internals.css
+++ b/chrome/browser/resources/supervised_user_internals.css
@@ -44,7 +44,7 @@
background: rgb(239, 243, 255);
}
-@-webkit-keyframes highlight1 {
+@keyframes highlight1 {
0% {
background: rgb(255, 255, 0);
}
@@ -53,7 +53,7 @@
}
}
-@-webkit-keyframes highlight2 {
+@keyframes highlight2 {
0% {
background: rgb(155, 158, 166);
}
@@ -63,15 +63,15 @@
}
.section-details [highlighted] {
- -webkit-animation-duration: 3s;
- -webkit-animation-name: highlight1;
- -webkit-animation-timing-function: linear;
+ animation-duration: 3s;
+ animation-name: highlight1;
+ animation-timing-function: linear;
}
.section-details [highlighted]:nth-child(odd) {
- -webkit-animation-duration: 3s;
- -webkit-animation-name: highlight2;
- -webkit-animation-timing-function: linear;
+ animation-duration: 3s;
+ animation-name: highlight2;
+ animation-timing-function: linear;
}
.section-details .uninitialized {

Powered by Google App Engine
This is Rietveld 408576698