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

Side by Side Diff: chrome/browser/resources/file_manager/css/gallery.css

Issue 7828044: [filebrowser] First step to image editor. (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 .gallery-container {
8 position: absolute;
9 -webkit-user-select: none;
10 top: 0;
11 left: 0;
12 height: 100%;
13 width: 100%;
14
15 background-color: rgba(0,0,0,1);
16 -webkit-box-shadow: inset 0px 0px 100px #000;
17 opacity: 0;
18 -webkit-transition: opacity 0.25s linear;
19
20 overflow: hidden;
21
22 z-index: 9999;
23 }
24
25 .gallery-close {
26 position: absolute;
27 right: 10px;
28 top: 10px;
29 height: 20px;
30 display: -webkit-box;
31 -webkit-box-orient: horizontal;
32 -webkit-box-pack: end;
33 color: white;
34 cursor: pointer;
35 }
36
37 .gallery-image-container {
38 position: absolute;
39 top: 30px;
40 bottom: 80px;
41 width: 100%;
42 background-color: rgba(0,0,0,1);
43 }
44
45 .gallery-ribbon {
46 position: absolute;
47 bottom: 0px;
48 width: 100%;
49 height: 80px;
50 }
51
52 .gallery-ribbon-image {
53 margin: 5px;
54 width: 70px;
55 height: 70px;
56 cursor: pointer;
57 }
58
59 .gallery-toolbar {
60 position: absolute;
61 bottom: 0px;
62 right: 0px;
63 height: 80px;
64 text-align: right;
65 display: -webkit-box;
66 -webkit-box-orient: horizontal;
67 -webkit-box-pack: end;
68 }
69
70 .gallery-tools-container {
71 height: 100%;
72 color: white;
73 }
74
75 .gallery-edit {
76 padding: 10px;
77 height: 100%;
78 color: white;
79 cursor: pointer;
80 display: -webkit-box;
81 -webkit-box-orient: horizontal;
82 -webkit-box-align: center;
83 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698