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

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

Issue 10086003: Make drag image containr invisible. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 /* Outer frame of the dialog. */ 5 /* Outer frame of the dialog. */
6 body { 6 body {
7 -webkit-box-flex: 1; 7 -webkit-box-flex: 1;
8 -webkit-box-orient: vertical; 8 -webkit-box-orient: vertical;
9 -webkit-transition: opacity 70ms linear; 9 -webkit-transition: opacity 70ms linear;
10 -webkit-user-select: none; 10 -webkit-user-select: none;
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 height: 32px; 163 height: 32px;
164 padding-bottom: 8px; 164 padding-bottom: 8px;
165 padding-top: 8px; 165 padding-top: 8px;
166 } 166 }
167 167
168 /* Main part of the dialog between header and footer. */ 168 /* Main part of the dialog between header and footer. */
169 .dialog-container { 169 .dialog-container {
170 -webkit-box-align: stretch; 170 -webkit-box-align: stretch;
171 -webkit-box-flex: 1; 171 -webkit-box-flex: 1;
172 -webkit-box-orient: horizontal; 172 -webkit-box-orient: horizontal;
173 background-color: white; /* Makes #drag-image-container invisible. */
173 display: -webkit-box; 174 display: -webkit-box;
174 overflow: hidden; 175 overflow: hidden;
175 position: relative; 176 position: relative;
176 } 177 }
177 178
178 /* List/grid and preview are inside this container. */ 179 /* List/grid and preview are inside this container. */
179 .dialog-main { 180 .dialog-main {
180 -webkit-box-align: stretch; 181 -webkit-box-align: stretch;
181 -webkit-box-flex: 1; 182 -webkit-box-flex: 1;
182 -webkit-box-orient: vertical; 183 -webkit-box-orient: vertical;
(...skipping 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after
1240 top: 0; 1241 top: 0;
1241 width: 40px; 1242 width: 40px;
1242 } 1243 }
1243 1244
1244 .unmounted-panel:not([loading]) > .gdata.loading, 1245 .unmounted-panel:not([loading]) > .gdata.loading,
1245 .unmounted-panel:not([error]) > .gdata.error, 1246 .unmounted-panel:not([error]) > .gdata.error,
1246 .unmounted-panel:not([retry]) > .gdata.retry, 1247 .unmounted-panel:not([retry]) > .gdata.retry,
1247 .unmounted-panel:not([retry]) > .gdata.learn-more { 1248 .unmounted-panel:not([retry]) > .gdata.learn-more {
1248 display: none; 1249 display: none;
1249 } 1250 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698