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

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

Issue 7046050: file manager: fix alignment of checkboxes and file names in detail list (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use classList.contains to check for filename-label Created 9 years, 6 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 | chrome/browser/resources/file_manager/js/file_manager.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 /* Outer frame of the dialog. */ 7 /* Outer frame of the dialog. */
8 body { 8 body {
9 -webkit-box-flex: 1; 9 -webkit-box-flex: 1;
10 -webkit-box-orient: vertical; 10 -webkit-box-orient: vertical;
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 -webkit-box-flex: 1; 223 -webkit-box-flex: 1;
224 display: -webkit-box; 224 display: -webkit-box;
225 } 225 }
226 226
227 .detail-table li.table-row .table-row-cell:first-child div { 227 .detail-table li.table-row .table-row-cell:first-child div {
228 margin: 0px; 228 margin: 0px;
229 } 229 }
230 230
231 .file-checkbox { 231 .file-checkbox {
232 -webkit-margin-end: 0px; 232 -webkit-margin-end: 0px;
233 margin-top: 5px; 233 margin-top: 6px;
234 opacity: 0.1; 234 opacity: 0.1;
235 } 235 }
236 236
237 li.thumbnail-item .file-checkbox { 237 li.thumbnail-item .file-checkbox {
238 opacity: 0; 238 opacity: 0;
239 } 239 }
240 240
241 li.table-row:hover .file-checkbox, 241 li.table-row:hover .file-checkbox,
242 li.thumbnail-item:hover .file-checkbox { 242 li.thumbnail-item:hover .file-checkbox {
243 opacity: 0.5; 243 opacity: 0.5;
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 -webkit-box-flex: 1; 395 -webkit-box-flex: 1;
396 display: -webkit-box; 396 display: -webkit-box;
397 } 397 }
398 398
399 /* A vertical spring. */ 399 /* A vertical spring. */
400 .vertical-spacer { 400 .vertical-spacer {
401 -webkit-box-orient: vertical; 401 -webkit-box-orient: vertical;
402 -webkit-box-flex: 1; 402 -webkit-box-flex: 1;
403 display: -webkit-box; 403 display: -webkit-box;
404 } 404 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/file_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698