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

Unified Diff: chrome/browser/resources/file_manager/js/image_editor/gallery.css

Issue 8770044: [filebrowser] Yet another animation in gallery ribbon. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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/file_manager/js/image_editor/gallery.css
===================================================================
--- chrome/browser/resources/file_manager/js/image_editor/gallery.css (revision 112662)
+++ chrome/browser/resources/file_manager/js/image_editor/gallery.css (working copy)
@@ -238,7 +238,7 @@
.gallery .filename-spacer > input {
background-color: transparent;
color: white;
- width: 40em;
+ width: 200px;
border: none;
outline: none;
}
@@ -252,31 +252,26 @@
/* Thumbnails */
.gallery .ribbon-spacer {
- position: relative;
display: -webkit-box;
-webkit-box-flex: 1;
-webkit-box-orient: horizontal;
+ -webkit-box-pack: center;
}
.gallery .toolbar .ribbon {
- position: absolute;
- top: 0px;
- left: 0px;
overflow: hidden;
height: 100%;
+ -webkit-box-flex: 0;
display: -webkit-box;
-webkit-box-orient: horizontal;
- -webkit-box-pack: left;
+ -webkit-box-pack: start;
+ width: 280px;
max-width: 100%;
-webkit-transition: max-width 500ms ease-in-out;
z-index: 0;
}
-.gallery .toolbar .ribbon[inactive] {
- z-index: -1;
-}
-
.gallery[editing] .toolbar .ribbon {
max-width: 0;
}
@@ -292,20 +287,25 @@
height: 47px;
margin: 2px;
border: 2px solid rgba(255,255,255,0); /* transparent white */
+ -webkit-transition: margin-left 180ms linear;
+}
- margin-left: 2px;
- -webkit-transition: opacity 200ms linear;
+.gallery .ribbon-image[selected] {
+ border: 2px solid rgba(255,233,168,1);
}
-.gallery .ribbon-image[inactive] {
- opacity: 0;
- pointer-events: none;
+.gallery .toolbar .ribbon.fade-left {
+ -webkit-mask-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 0, rgba(0,0,0,1) 40px);
}
-.gallery .ribbon-image[selected] {
- border: 2px solid rgba(255,233,168,1);
+.gallery .toolbar .ribbon.fade-right {
+ -webkit-mask-image: -webkit-linear-gradient(right, rgba(0,0,0,0) 0, rgba(0,0,0,1) 40px);
}
+.gallery .toolbar .ribbon.fade-left.fade-right {
+ -webkit-mask-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 0, rgba(0,0,0,1) 40px, rgba(0,0,0,1) 230px, rgba(0,0,0,0) 100%);
+}
+
.gallery .image-wrapper {
position: relative;
overflow: hidden;
@@ -314,34 +314,6 @@
border: 1px solid rgba(0,0,0,0); /* transparent black */
}
-.gallery .toolbar .fade {
- background-repeat: no-repeat;
- background-position: center center;
- position: absolute;
- z-index: 10;
- width: 55px;
- height: 100%;
- pointer-events: none;
- opacity: 0;
- -webkit-transition: opacity 200ms linear;
-}
-
-.gallery .toolbar .fade[active] {
- opacity: 1;
-}
-
-.gallery[editing] .toolbar .fade[active] {
- opacity: 0;
-}
-
-.gallery .toolbar .fade.left {
- background-image: url(../../images/gallery/thumb_fade_left.png);
-}
-
-.gallery .toolbar .fade.right {
- background-image: url(../../images/gallery/thumb_fade_right.png);
-}
-
/* Editor buttons */
.gallery .toolbar .edit-bar {

Powered by Google App Engine
This is Rietveld 408576698