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

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

Issue 2780903003: DevTools: [Workspaces] remove support for .devtools file (Closed)
Patch Set: rebaseline Created 3 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
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 display: flex; 68 display: flex;
69 flex-direction: row; 69 flex-direction: row;
70 margin: 6px 5px; 70 margin: 6px 5px;
71 align-items: center; 71 align-items: center;
72 } 72 }
73 73
74 .file-system-edit-row input { 74 .file-system-edit-row input {
75 width: 100%; 75 width: 100%;
76 text-align: inherit; 76 text-align: inherit;
77 } 77 }
78
79 .file-system-locked {
80 flex: none;
81 visibility: hidden;
82 }
83
84 .file-system-locked:after {
85 content: "\1F512";
86 }
87
88 .file-system-list-item.locked .file-system-locked {
89 visibility: visible;
90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698