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

Unified Diff: ui/webui/resources/css/dialogs.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/webui/resources/css/bubble.css ('k') | ui/webui/resources/css/overlay.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/webui/resources/css/dialogs.css
diff --git a/ui/webui/resources/css/dialogs.css b/ui/webui/resources/css/dialogs.css
index 9c16aca557bce7ef27ecd6f506acf8ae0934879f..fde32aab91e4d08809f4ce145b756b64a307e6b1 100644
--- a/ui/webui/resources/css/dialogs.css
+++ b/ui/webui/resources/css/dialogs.css
@@ -38,16 +38,16 @@
@-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);
}
}
@@ -59,13 +59,13 @@
}
.shown > .cr-dialog-frame {
- -webkit-transform: perspective(500px) scale(1)
+ transform: perspective(500px) scale(1)
translateY(0) rotateX(0);
opacity: 1;
}
.cr-dialog-frame {
- -webkit-transform: perspective(500px) scale(0.99)
+ transform: perspective(500px) scale(0.99)
translateY(-20px) rotateX(5deg);
-webkit-transition: all 180ms;
-webkit-transition-duration: 250ms;
« no previous file with comments | « ui/webui/resources/css/bubble.css ('k') | ui/webui/resources/css/overlay.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698