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

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

Issue 840863004: Files.app: Add a new column in table view to reflect cloud import status. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync to master. Created 5 years, 11 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
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 /* The order of z-index: 5 /* The order of z-index:
6 * - -1: text-measure 6 * - -1: text-measure
7 * - 2: drag-selection-border 7 * - 2: drag-selection-border
8 * - 3: preview-panel 8 * - 3: preview-panel
9 * - 500: scrollbar 9 * - 500: scrollbar
10 * - 500: splitter 10 * - 500: splitter
(...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after
1108 height: 32px; 1108 height: 32px;
1109 line-height: 32px; 1109 line-height: 32px;
1110 } 1110 }
1111 1111
1112 /* The icon in the name column. See file_types.css for specific icons. */ 1112 /* The icon in the name column. See file_types.css for specific icons. */
1113 .detail-icon { 1113 .detail-icon {
1114 height: 24px; 1114 height: 24px;
1115 width: 24px; 1115 width: 24px;
1116 } 1116 }
1117 1117
1118 .status-icon {
1119 height: 24px;
1120 width: 24px;
1121 }
1122
1118 #detail-table .detail-icon { 1123 #detail-table .detail-icon {
1119 /* To shift the icon position. */ 1124 /* To shift the icon position. */
1120 margin-bottom: 2px; 1125 margin-bottom: 2px;
1121 } 1126 }
1122 1127
1123 .preview-panel .spacer { 1128 .preview-panel .spacer {
1124 flex: auto; 1129 flex: auto;
1125 } 1130 }
1126 1131
1127 #delete-button { 1132 #delete-button {
(...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1863 visibility: hidden; 1868 visibility: hidden;
1864 } 1869 }
1865 1870
1866 .text-measure { 1871 .text-measure {
1867 pointer-events: none; 1872 pointer-events: none;
1868 position: absolute; 1873 position: absolute;
1869 top: 0; 1874 top: 0;
1870 visibility: hidden; 1875 visibility: hidden;
1871 z-index: -1; 1876 z-index: -1;
1872 } 1877 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698