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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/settings/editFileSystemView.css

Issue 2418813005: DevTools: [Persistence] implement automapping (Closed)
Patch Set: address comments Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 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 .file-system-header { 7 .file-system-header {
8 display: flex; 8 display: flex;
9 flex-direction: row; 9 flex-direction: row;
10 align-items: center; 10 align-items: center;
(...skipping 14 matching lines...) Expand all
25 .file-system-list { 25 .file-system-list {
26 flex: auto; 26 flex: auto;
27 } 27 }
28 28
29 .file-system-list-empty { 29 .file-system-list-empty {
30 flex: auto; 30 flex: auto;
31 height: 30px; 31 height: 30px;
32 display: flex; 32 display: flex;
33 align-items: center; 33 align-items: center;
34 justify-content: center; 34 justify-content: center;
35 text-align: center;
35 } 36 }
36 37
37 .file-system-list-item { 38 .file-system-list-item {
38 padding: 3px 5px 3px 5px; 39 padding: 3px 5px 3px 5px;
39 height: 30px; 40 height: 30px;
40 display: flex; 41 display: flex;
41 align-items: center; 42 align-items: center;
42 flex: auto 1 1; 43 flex: auto 1 1;
43 } 44 }
44 45
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 visibility: hidden; 82 visibility: hidden;
82 } 83 }
83 84
84 .file-system-locked:after { 85 .file-system-locked:after {
85 content: "\1F512"; 86 content: "\1F512";
86 } 87 }
87 88
88 .file-system-list-item.locked .file-system-locked { 89 .file-system-list-item.locked .file-system-locked {
89 visibility: visible; 90 visibility: visible;
90 } 91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698