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

Unified Diff: chrome/browser/resources/ntp4/new_tab.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/ntp4/nav_dot.js ('k') | chrome/browser/resources/ntp4/tile_page.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/ntp4/new_tab.css
diff --git a/chrome/browser/resources/ntp4/new_tab.css b/chrome/browser/resources/ntp4/new_tab.css
index e00cd94f29ca11c003224d254e6c762e6afd84e5..26dc2828a76b55b61971038239abb39b0e36c4aa 100644
--- a/chrome/browser/resources/ntp4/new_tab.css
+++ b/chrome/browser/resources/ntp4/new_tab.css
@@ -133,7 +133,7 @@ html[dir='rtl'] #attribution {
}
.starting-up * {
- -webkit-transition: none !important;
+ transition: none !important;
}
/* Login Status. **************************************************************/
@@ -211,14 +211,14 @@ html[dir='rtl'] .login-status-icon {
#trash {
-webkit-padding-start: 10px;
- -webkit-transition: top 200ms, opacity 0ms;
- -webkit-transition-delay: 0ms, 200ms;
color: #222;
height: 100%;
opacity: 0;
position: absolute;
right: 0;
top: 50px;
+ transition: top 200ms, opacity 0ms;
+ transition-delay: 0ms, 200ms;
width: auto;
}
@@ -228,10 +228,10 @@ html[dir='rtl'] #trash {
}
#footer.showing-trash-mode #trash {
- -webkit-transition-delay: 0ms, 0ms;
- -webkit-transition-duration: 0ms, 200ms;
opacity: 0.75;
top: 0;
+ transition-delay: 0ms, 0ms;
+ transition-duration: 0ms, 200ms;
}
#footer.showing-trash-mode #trash.drag-target {
@@ -281,7 +281,6 @@ html[dir='rtl'] #footer.showing-trash-mode #trash.drag-target .lid {
/* Page switcher buttons. *****************************************************/
.page-switcher {
- -webkit-transition: width 150ms, right 150ms, background-color 150ms;
background-color: transparent;
border: none;
bottom: 0;
@@ -293,6 +292,7 @@ html[dir='rtl'] #footer.showing-trash-mode #trash.drag-target .lid {
padding: 0;
position: absolute;
top: 0;
+ transition: width 150ms, right 150ms, background-color 150ms;
z-index: 5;
}
@@ -301,12 +301,12 @@ html[dir='rtl'] #footer.showing-trash-mode #trash.drag-target .lid {
#chrome-web-store-link {
-webkit-order: 3;
-webkit-padding-end: 12px;
- -webkit-transition-delay: 100ms;
color: inherit;
cursor: pointer;
display: inline-block;
margin: 0;
text-decoration: none;
+ transition-delay: 100ms;
white-space: nowrap;
}
@@ -328,8 +328,8 @@ html[dir='rtl'] #chrome-web-store-title {
/* In trash mode, hide the menus and web store link. */
#footer.showing-trash-mode .menu-container {
- -webkit-transition-delay: 0ms;
opacity: 0;
+ transition-delay: 0ms;
visibility: hidden;
}
« no previous file with comments | « chrome/browser/resources/ntp4/nav_dot.js ('k') | chrome/browser/resources/ntp4/tile_page.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698