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

Unified Diff: chrome/browser/resources/uber/uber.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 | « chrome/browser/resources/supervised_user_internals.js ('k') | chrome/browser/resources/uber/uber.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/uber/uber.css
diff --git a/chrome/browser/resources/uber/uber.css b/chrome/browser/resources/uber/uber.css
index dcbbb5477114f6d59d6c8adbe75ab35cf7e5d164..9831d083ca179adfa25b165e0b450b274b05aef3 100644
--- a/chrome/browser/resources/uber/uber.css
+++ b/chrome/browser/resources/uber/uber.css
@@ -28,26 +28,26 @@ body {
}
#navigation.changing-content {
- -webkit-transition: transform 100ms, width 100ms;
+ transition: transform 100ms, width 100ms;
}
.iframe-container {
-webkit-margin-start: -20px;
- -webkit-transition: margin 100ms, opacity 100ms;
bottom: 0;
left: 0;
opacity: 0;
position: absolute;
right: 0;
top: 0;
+ transition: margin 100ms, opacity 100ms;
z-index: 1;
}
.iframe-container.selected {
-webkit-margin-start: 0;
- -webkit-transition: margin 200ms, opacity 200ms;
- -webkit-transition-delay: 100ms;
opacity: 1;
+ transition: margin 200ms, opacity 200ms;
+ transition-delay: 100ms;
z-index: 2;
}
« no previous file with comments | « chrome/browser/resources/supervised_user_internals.js ('k') | chrome/browser/resources/uber/uber.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698