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

Unified Diff: ui/file_manager/file_manager/foreground/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
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 a5edc2f31e76726b359d70367f1217dd8c1c0ff0..a096307935afd12cf89a5afe2864e9e402badda5 100644
--- a/ui/file_manager/file_manager/foreground/css/tree.css
+++ b/ui/file_manager/file_manager/foreground/css/tree.css
@@ -18,16 +18,16 @@ tree {
}
.tree-row > .expand-icon {
- transform: rotate(-90deg);
- -webkit-transition: all 150ms;
background-image: -webkit-image-set(
url(../images/files/ui/expand_more.png) 1x,
url(../images/files/ui/2x/expand_more.png) 2x);
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: 16px 16px;
- vertical-align: top;
position: relative;
+ transform: rotate(-90deg);
+ transition: all 150ms;
+ vertical-align: top;
}
.tree-row[selected] > .expand-icon {

Powered by Google App Engine
This is Rietveld 408576698