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

Unified Diff: ui/webui/resources/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
« no previous file with comments | « ui/webui/resources/css/trash.css ('k') | ui/webui/resources/images/throbber_medium.svg » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/webui/resources/css/tree.css
diff --git a/ui/webui/resources/css/tree.css b/ui/webui/resources/css/tree.css
index a47735a1f3f0308c20338418c088933c84407ec7..a86baba5b08d53090e1b3f5578ced6b68624a503 100644
--- a/ui/webui/resources/css/tree.css
+++ b/ui/webui/resources/css/tree.css
@@ -22,7 +22,7 @@ tree {
}
.expand-icon {
- -webkit-transform: rotate(-90deg);
+ transform: rotate(-90deg);
-webkit-transition: all 150ms;
background: url(../images/tree_triangle.svg) no-repeat center center;
background-size: 8px 5px;
@@ -36,11 +36,11 @@ tree {
}
html[dir=rtl] .expand-icon {
- -webkit-transform: rotate(90deg);
+ transform: rotate(90deg);
}
.tree-item[expanded] > .tree-row > .expand-icon {
- -webkit-transform: rotate(0);
+ transform: rotate(0);
background-image: url(../images/tree_triangle.svg);
opacity: .5;
}
« no previous file with comments | « ui/webui/resources/css/trash.css ('k') | ui/webui/resources/images/throbber_medium.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698