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

Unified Diff: chrome/browser/resources/ntp4/new_tab.css

Issue 893403004: webui: make 0 into 0ms when it's a <time>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/ntp4/new_tab.css
diff --git a/chrome/browser/resources/ntp4/new_tab.css b/chrome/browser/resources/ntp4/new_tab.css
index 187059f82587540af56d140abe0c3c992a3a8b2e..de911ba96a62576ba2cee7ee66e100988c8550cc 100644
--- a/chrome/browser/resources/ntp4/new_tab.css
+++ b/chrome/browser/resources/ntp4/new_tab.css
@@ -299,8 +299,8 @@ html[dir='rtl'] .login-status-icon {
#trash {
-webkit-padding-start: 10px;
- -webkit-transition: top 200ms, opacity 0;
- -webkit-transition-delay: 0, 200ms;
+ -webkit-transition: top 200ms, opacity 0ms;
+ -webkit-transition-delay: 0ms, 200ms;
color: #222;
height: 100%;
opacity: 0;
@@ -316,8 +316,8 @@ html[dir='rtl'] #trash {
}
#footer.showing-trash-mode #trash {
- -webkit-transition-delay: 0, 0;
- -webkit-transition-duration: 0, 200ms;
+ -webkit-transition-delay: 0ms, 0ms;
+ -webkit-transition-duration: 0ms, 200ms;
opacity: 0.75;
top: 0;
}
@@ -433,7 +433,7 @@ 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: 0;
+ -webkit-transition-delay: 0ms;
opacity: 0;
visibility: hidden;
}

Powered by Google App Engine
This is Rietveld 408576698