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

Side by Side Diff: ui/file_manager/file_manager/foreground/css/file_manager.css

Issue 951443002: Files.app: Make delete button on the toolbar standard button instead of CommandButton. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add @const for const members of ToolbarController. Created 5 years, 10 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
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/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 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2014 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 /* Special attribute used in HTML to hide elements. */ 5 /* Special attribute used in HTML to hide elements. */
6 body[type='folder'] [invisibleif~='folder'], 6 body[type='folder'] [invisibleif~='folder'],
7 body[type='upload-folder'] [invisibleif~='upload-folder'], 7 body[type='upload-folder'] [invisibleif~='upload-folder'],
8 body[type='saveas-file'] [invisibleif~='saveas-file'], 8 body[type='saveas-file'] [invisibleif~='saveas-file'],
9 body[type='open-file'] [invisibleif~='open-file'], 9 body[type='open-file'] [invisibleif~='open-file'],
10 body[type='open-multi-file'] [invisibleif~='open-multi-file'], 10 body[type='open-multi-file'] [invisibleif~='open-multi-file'],
(...skipping 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1378 overflow: hidden; 1378 overflow: hidden;
1379 position: absolute; 1379 position: absolute;
1380 transition: opacity 220ms ease; 1380 transition: opacity 220ms ease;
1381 width: 28px; 1381 width: 28px;
1382 } 1382 }
1383 1383
1384 #list-container list li:not([selected]) .detail-thumbnail.loaded { 1384 #list-container list li:not([selected]) .detail-thumbnail.loaded {
1385 opacity: 1; 1385 opacity: 1;
1386 } 1386 }
1387 1387
1388 #delete-button[disabled] {
1389 display: none;
1390 }
1391
1392 #tasks-menu cr-menu-item:not(.change-default) { 1388 #tasks-menu cr-menu-item:not(.change-default) {
1393 background-position: left 10px center; 1389 background-position: left 10px center;
1394 padding-left: 32px; 1390 padding-left: 32px;
1395 } 1391 }
1396 1392
1397 #share-button { 1393 #share-button {
1398 display: block; 1394 display: block;
1399 min-width: 0; /* overrride */ 1395 min-width: 0; /* overrride */
1400 } 1396 }
1401 1397
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
1985 padding: 20px 15px; 1981 padding: 20px 15px;
1986 } 1982 }
1987 1983
1988 .text-measure { 1984 .text-measure {
1989 pointer-events: none; 1985 pointer-events: none;
1990 position: absolute; 1986 position: absolute;
1991 top: 0; 1987 top: 0;
1992 visibility: hidden; 1988 visibility: hidden;
1993 z-index: -1; 1989 z-index: -1;
1994 } 1990 }
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/js/file_manager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698