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

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

Issue 8036019: [filebrowser] Enable sharing in gallery. For now, show all image-related extensions as 'Sharing'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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/file_manager/js/image_editor/gallery.css
===================================================================
--- chrome/browser/resources/file_manager/js/image_editor/gallery.css (revision 102703)
+++ chrome/browser/resources/file_manager/js/image_editor/gallery.css (working copy)
@@ -292,3 +292,39 @@
.gallery .edit-modal > .range {
margin: 4px 10px 4px 0;
}
+
+.gallery .share-menu {
+ position: absolute;
+ right: 10px;
+ bottom: 80px;
+ background-color: rgba(240,240,240,1);;
+ opacity: 1.0;
+ -webkit-transition: opacity 0.5s ease-in-out;
+ padding: 10px;
+ display: -webkit-box;
+ -webkit-box-orient: vertical;
+ -webkit-box-align: stretch;
+ -webkit-box-pack: start;
+}
+
+.gallery .share-menu[hidden] {
+ opacity: 0.0;
+ pointer-events: none;
+}
+
+.gallery .share-menu > div {
+ cursor: pointer;
+ background-color: rgba(0,0,0,0);
+ padding: 5px;
+ display: -webkit-box;
+ -webkit-box-align: center;
+ -webkit-box-pack: start;
+}
+
+.gallery .share-menu > div:hover {
+ background-color: rgba(200,200,200,1);
+}
+
+.gallery .share-menu > div > img {
+ margin-right: 5px;
+}

Powered by Google App Engine
This is Rietveld 408576698