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 { |