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

Unified Diff: ui/file_manager/gallery/css/gallery.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: ui/file_manager/gallery/css/gallery.css
diff --git a/ui/file_manager/gallery/css/gallery.css b/ui/file_manager/gallery/css/gallery.css
index 02507a37f5112d78febb0ba0c3608cd64ce42fb9..993dbeb63aae9bca11a353a1f9e965a817a01697 100644
--- a/ui/file_manager/gallery/css/gallery.css
+++ b/ui/file_manager/gallery/css/gallery.css
@@ -190,7 +190,7 @@ input[type='checkbox']:checked {
/* Hide immediately when entering the slideshow. */
.gallery[tools][slideshow] > .toolbar {
- transition-duration: 0;
+ transition-duration: 0ms;
}
.gallery[tools][locked] > .toolbar {
@@ -294,7 +294,7 @@ input[type='checkbox']:checked {
background-color: transparent;
overflow: hidden;
position: absolute;
- transition: visibility 0 linear 180ms, all 180ms linear;
Dan Beam 2015/02/04 18:09:27 ambiguous
arv (Not doing code reviews) 2015/02/04 20:37:37 same
+ transition: visibility 0ms linear 180ms, all 180ms linear;
width: 260px;
}
@@ -440,13 +440,13 @@ input[type='checkbox']:checked {
.gallery .toolbar .ribbon {
height: 100%;
overflow: hidden;
- transition: opacity 180ms linear, visibility 0 linear;
+ transition: opacity 180ms linear, visibility 0ms linear;
Dan Beam 2015/02/04 18:09:27 ambiguous
z-index: 0;
}
.gallery[editing] .toolbar .ribbon {
opacity: 0;
- transition-delay: 0, 180ms;
+ transition-delay: 0ms, 180ms;
visibility: hidden;
}
@@ -518,7 +518,7 @@ input[type='checkbox']:checked {
left: 280px;
opacity: 0;
right: 280px;
- transition: opacity 180ms linear, visibility 0 linear 180ms;
+ transition: opacity 180ms linear, visibility 0ms linear 180ms;
Dan Beam 2015/02/04 18:09:27 ambiguous
arv (Not doing code reviews) 2015/02/04 20:37:37 same
visibility: hidden;
margin-bottom: -55px;
}

Powered by Google App Engine
This is Rietveld 408576698