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

Unified Diff: ui/webui/resources/cr_elements/network/cr_network_icon.html

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: sort Created 4 years, 1 month 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/webui/resources/cr_elements/network/cr_network_icon.html
diff --git a/ui/webui/resources/cr_elements/network/cr_network_icon.html b/ui/webui/resources/cr_elements/network/cr_network_icon.html
index ff14df1208393e46cb259fdc4387b72a18c08fde..3a3068790742782c0ae04286a80ee74ba8d9c5ab 100644
--- a/ui/webui/resources/cr_elements/network/cr_network_icon.html
+++ b/ui/webui/resources/cr_elements/network/cr_network_icon.html
@@ -47,11 +47,11 @@
/* Connecting animation */
#icon.connecting {
- -webkit-animation: levels 1s infinite;
- -webkit-animation-timing-function: steps(4, start);
+ animation: levels 1s infinite;
+ animation-timing-function: steps(4, start);
}
- @-webkit-keyframes levels {
+ @keyframes levels {
from {
top: 0%;
}

Powered by Google App Engine
This is Rietveld 408576698