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

Unified Diff: ui/file_manager/file_manager/foreground/elements/files_metadata_entry.html

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: js 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/file_manager/file_manager/foreground/elements/files_metadata_entry.html
diff --git a/ui/file_manager/file_manager/foreground/elements/files_metadata_entry.html b/ui/file_manager/file_manager/foreground/elements/files_metadata_entry.html
index 6bbd82a857c411b15f792b87ea7edd4f14eee479..6b62d313c982fa9d243dc8f35f43ffd73daa32f9 100644
--- a/ui/file_manager/file_manager/foreground/elements/files_metadata_entry.html
+++ b/ui/file_manager/file_manager/foreground/elements/files_metadata_entry.html
@@ -48,7 +48,7 @@
}
#value[loading]:after {
- -webkit-animation: ellipsis steps(4,end) 900ms infinite;
+ animation: ellipsis steps(4,end) 900ms infinite;
Dan Beam 2016/11/29 06:17:12 can you just remove this line?
Eric Willigers 2016/11/30 04:04:55 Done.
animation: ellipsis steps(4,end) 900ms infinite;
content: "\2026"; /* ascii code for the ellipsis character */
display: inline-block;
@@ -63,7 +63,7 @@
}
}
- @-webkit-keyframes ellipsis {
+ @keyframes ellipsis {
to {
width: 1.25em;
}

Powered by Google App Engine
This is Rietveld 408576698