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

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

Issue 2535493002: Reduce webkit CSS prefixes in ui/ styles (Closed)
Patch Set: sort Created 4 years, 1 month 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/webui/resources/css/tree.css
diff --git a/ui/webui/resources/css/tree.css b/ui/webui/resources/css/tree.css
index 2681f5e70f99f65564cf422d361a4679c7a1b0cb..29d31377971a2567cc92dfcf3a5366e106163b5f 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 {

Powered by Google App Engine
This is Rietveld 408576698