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

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

Issue 230073002: Files.app: Reland r261616: Add a test to rename a file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a test. Created 6 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
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 /* The order of z-index: 5 /* The order of z-index:
6 * - 2: drag-selection-border 6 * - 2: drag-selection-border
7 * - 3: preview-panel 7 * - 3: preview-panel
8 * - 500: scrollbar 8 * - 500: scrollbar
9 * - 500: splitter 9 * - 500: splitter
10 * - 525: spinner 10 * - 525: spinner
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 font: inherit; 925 font: inherit;
926 line-height: 1; 926 line-height: 1;
927 text-align: inherit; 927 text-align: inherit;
928 } 928 }
929 929
930 .table-row-cell .filename-label, 930 .table-row-cell .filename-label,
931 .table-row-cell input.rename { 931 .table-row-cell input.rename {
932 -webkit-box-flex: 1; 932 -webkit-box-flex: 1;
933 } 933 }
934 934
935 [renaming] > .filename-label { 935 li[renaming=''] .filename-label {
936 display: none; 936 display: none;
937 } 937 }
938 938
939 /* Text box used for renaming in the thumbnail list. */ 939 /* Text box used for renaming in the thumbnail list. */
940 .thumbnail-grid input.rename { 940 .thumbnail-grid input.rename {
941 -webkit-margin-start: -1px; 941 -webkit-margin-start: -1px;
942 box-sizing: border-box; 942 box-sizing: border-box;
943 height: 20px; 943 height: 20px;
944 width: 114px; 944 width: 114px;
945 } 945 }
(...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after
2039 display: none; 2039 display: none;
2040 } 2040 }
2041 2041
2042 #progress-center-close-view.single button.open { 2042 #progress-center-close-view.single button.open {
2043 display: none; 2043 display: none;
2044 } 2044 }
2045 2045
2046 #progress-center li:not(.cancelable) button.cancel { 2046 #progress-center li:not(.cancelable) button.cancel {
2047 visibility: hidden; 2047 visibility: hidden;
2048 } 2048 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698