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

Unified Diff: ui/file_manager/file_manager/foreground/css/tree.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/tree.css
diff --git a/ui/file_manager/file_manager/foreground/css/tree.css b/ui/file_manager/file_manager/foreground/css/tree.css
index a319a94ec1d1d46e6cf29de92a0ca7cf21770cb5..517d7d1aed2858387525bcea385a8207fdc625b9 100644
--- a/ui/file_manager/file_manager/foreground/css/tree.css
+++ b/ui/file_manager/file_manager/foreground/css/tree.css
@@ -18,7 +18,7 @@ tree {
}
.tree-row > .expand-icon {
- -webkit-transform: rotate(-90deg);
+ transform: rotate(-90deg);
-webkit-transition: all 150ms;
background-image: -webkit-image-set(
url(../images/files/ui/expand_more.png) 1x,
@@ -37,11 +37,11 @@ tree {
}
html[dir=rtl] .tree-row > .expand-icon {
- -webkit-transform: rotate(90deg);
+ transform: rotate(90deg);
}
.tree-item[expanded] > .tree-row > .expand-icon {
- -webkit-transform: rotate(0);
+ transform: rotate(0);
}
.tree-row > .expand-icon {
« no previous file with comments | « ui/file_manager/file_manager/foreground/css/file_manager.css ('k') | ui/file_manager/gallery/css/gallery.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698