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

Unified Diff: ui/file_manager/file_manager/foreground/css/common.css

Issue 1549903002: Replace -webkit-transform with transform in Chrome UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase CL Created 4 years, 9 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: ui/file_manager/file_manager/foreground/css/common.css
diff --git a/ui/file_manager/file_manager/foreground/css/common.css b/ui/file_manager/file_manager/foreground/css/common.css
index 42d67c4414786e8657e60440eafc586e6419eae1..07b43bb211f92682417bf2e62f0c257971104723 100644
--- a/ui/file_manager/file_manager/foreground/css/common.css
+++ b/ui/file_manager/file_manager/foreground/css/common.css
@@ -229,16 +229,16 @@ html[dir='rtl'] .entry-name {
@-webkit-keyframes pulse {
0% {
- -webkit-transform: scale(1);
+ transform: scale(1);
}
40% {
- -webkit-transform: scale(1.02);
+ transform: scale(1.02);
}
60% {
- -webkit-transform: scale(1.02);
+ transform: scale(1.02);
}
100% {
- -webkit-transform: scale(1);
+ transform: scale(1);
}
}
« no previous file with comments | « ui/file_manager/file_manager/common/js/util.js ('k') | ui/file_manager/file_manager/foreground/css/file_manager.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698