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

Unified Diff: ui/webui/resources/css/trash.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/overlay.css ('k') | ui/webui/resources/css/tree.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/webui/resources/css/trash.css
diff --git a/ui/webui/resources/css/trash.css b/ui/webui/resources/css/trash.css
index fb06e9aa5b71e2cffc749ba2c96e17533471a96a..dfe66dc0c3ffe41738eaab3583e3dcf258e9a764 100644
--- a/ui/webui/resources/css/trash.css
+++ b/ui/webui/resources/css/trash.css
@@ -29,7 +29,7 @@
.trash > .lid {
-webkit-transform-origin: -7% 100%;
- -webkit-transition: -webkit-transform 150ms;
+ -webkit-transition: transform 150ms;
height: 6px;
width: 14px;
}
@@ -39,12 +39,12 @@ html[dir='rtl'] .trash > .lid {
}
.trash:-webkit-any(:focus, :hover, .open) > .lid {
- -webkit-transform: rotate(-45deg);
- -webkit-transition: -webkit-transform 250ms;
+ transform: rotate(-45deg);
+ -webkit-transition: transform 250ms;
}
html[dir='rtl'] .trash:-webkit-any(:focus, :hover, .open) > .lid {
- -webkit-transform: rotate(45deg);
+ transform: rotate(45deg);
}
.trash > .can {
« no previous file with comments | « ui/webui/resources/css/overlay.css ('k') | ui/webui/resources/css/tree.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698