| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |