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

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

Issue 8548012: Added "select all/none" checkbox. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 9 years, 1 month 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 371
372 .detail-table li.table-row .table-row-cell:first-child div { 372 .detail-table li.table-row .table-row-cell:first-child div {
373 margin: 0px; 373 margin: 0px;
374 } 374 }
375 375
376 .file-checkbox { 376 .file-checkbox {
377 position: relative; 377 position: relative;
378 z-index: 2; 378 z-index: 2;
379 -webkit-margin-end: 0px; 379 -webkit-margin-end: 0px;
380 margin-top: 6px; 380 margin-top: 6px;
381 margin-left: 7px;
381 opacity: 0.1; 382 opacity: 0.1;
382 } 383 }
383 384
385 #select-all-checkbox {
386 margin: 0;
387 }
388
384 li.thumbnail-item .file-checkbox { 389 li.thumbnail-item .file-checkbox {
385 opacity: 0; 390 opacity: 0;
386 } 391 }
387 392
388 li.table-row:hover .file-checkbox, 393 li.table-row:hover .file-checkbox,
389 li.thumbnail-item:hover .file-checkbox { 394 li.thumbnail-item:hover .file-checkbox {
390 opacity: 0.5; 395 opacity: 0.5;
391 } 396 }
392 397
393 .file-checkbox:hover, 398 .file-checkbox:hover,
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ 584 /* Overlay pane covering the entire file manager window (e.g. image editor)*/
580 .overlay-pane { 585 .overlay-pane {
581 position: absolute; 586 position: absolute;
582 top: 0; 587 top: 0;
583 left: 0; 588 left: 0;
584 width: 100%; 589 width: 100%;
585 height: 100%; 590 height: 100%;
586 border: none; 591 border: none;
587 z-index: 100; 592 z-index: 100;
588 } 593 }
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