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

Unified Diff: chrome/browser/resources/uber/uber.css

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: rebase 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: chrome/browser/resources/uber/uber.css
diff --git a/chrome/browser/resources/uber/uber.css b/chrome/browser/resources/uber/uber.css
index 76ba333dd3ad203af9f3b50ac667f1706d15d631..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: -webkit-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;
}

Powered by Google App Engine
This is Rietveld 408576698