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

Unified Diff: ui/file_manager/video_player/css/media_controls.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
« no previous file with comments | « ui/file_manager/gallery/css/gallery.css ('k') | ui/login/account_picker/user_pod_row.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/file_manager/video_player/css/media_controls.css
diff --git a/ui/file_manager/video_player/css/media_controls.css b/ui/file_manager/video_player/css/media_controls.css
index fd1acfd6ed9bc996811b8d90e0b12b840a7a2451..f2bd382f932f6c78b814b4f1e586799054063154 100644
--- a/ui/file_manager/video_player/css/media_controls.css
+++ b/ui/file_manager/video_player/css/media_controls.css
@@ -240,26 +240,26 @@ paper-slider.volume {
opacity: 1;
}
to {
- -webkit-transform: scale(3);
+ transform: scale(3);
opacity: 0;
}
}
@-webkit-keyframes text-banner-blowup {
from {
- -webkit-transform: scale(0.5);
+ transform: scale(0.5);
opacity: 0;
}
20% {
- -webkit-transform: scale(1);
+ transform: scale(1);
opacity: 0.75;
}
80% {
- -webkit-transform: scale(1);
+ transform: scale(1);
opacity: 0.75;
}
to {
- -webkit-transform: scale(3);
+ transform: scale(3);
opacity: 0;
}
}
« no previous file with comments | « ui/file_manager/gallery/css/gallery.css ('k') | ui/login/account_picker/user_pod_row.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698