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

Unified Diff: chrome/browser/resources/local_ntp/local_ntp.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/inspect/inspect.css ('k') | chrome/browser/resources/local_ntp/local_ntp.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/local_ntp/local_ntp.css
diff --git a/chrome/browser/resources/local_ntp/local_ntp.css b/chrome/browser/resources/local_ntp/local_ntp.css
index ab2bf92572f729a1158ddf8bc52849329e09cbc5..61800071f7c3f53ef8e78ee46f91114001aa945a 100644
--- a/chrome/browser/resources/local_ntp/local_ntp.css
+++ b/chrome/browser/resources/local_ntp/local_ntp.css
@@ -50,7 +50,6 @@ body.alternate-logo #logo {
}
#fakebox {
- -webkit-transition: transform 100ms linear, border-color 100ms linear;
background-color: #fff;
border: 1px solid rgb(185, 185, 185);
border-radius: 1px;
@@ -62,6 +61,7 @@ body.alternate-logo #logo {
max-width: 672px;
position: relative;
transform: translate3d(0, 0, 0);
+ transition: transform 100ms linear, border-color 100ms linear;
/* #fakebox width (here and below) should be 2px less than #mv-tiles
to account for its border. */
width: 298px;
@@ -248,9 +248,9 @@ html[dir=rtl] #mv-notice-x {
}
#mv-notice.mv-notice-delayed-hide {
- -webkit-transition-delay: 10s;
- -webkit-transition-property: opacity;
opacity: 0;
+ transition-delay: 10s;
+ transition-property: opacity;
}
#mv-notice.mv-notice-hide {
« no previous file with comments | « chrome/browser/resources/inspect/inspect.css ('k') | chrome/browser/resources/local_ntp/local_ntp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698