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

Unified Diff: ui/webui/resources/css/tree.css

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only Created 3 years, 10 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/css/widgets.css » ('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 8b1e368e1dd74ba4e7e8feac0df52c6a2e3d0b49..d4c11e102a470b55556c256b4a27be7eea5f99fd 100644
--- a/ui/webui/resources/css/tree.css
+++ b/ui/webui/resources/css/tree.css
@@ -22,8 +22,6 @@ tree {
}
.expand-icon {
- transform: rotate(-90deg);
- -webkit-transition: all 150ms;
background: url(../images/tree_triangle.svg) no-repeat center center;
background-size: 8px 5px;
display: inline-block;
@@ -31,6 +29,8 @@ tree {
opacity: .6;
position: relative;
top: 6px;
+ transform: rotate(-90deg);
+ transition: all 150ms;
vertical-align: top;
width: 16px;
}
@@ -40,9 +40,9 @@ html[dir=rtl] .expand-icon {
}
.tree-item[expanded] > .tree-row > .expand-icon {
- transform: rotate(0);
background-image: url(../images/tree_triangle.svg);
opacity: .5;
+ transform: rotate(0);
}
.tree-row .expand-icon {
« no previous file with comments | « ui/webui/resources/css/trash.css ('k') | ui/webui/resources/css/widgets.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698