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

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

Issue 2614883002: DevTools: lighten the workspaces settings ui a bit. (Closed)
Patch Set: Created 3 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 /* 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;
11 flex: auto; 11 flex: auto;
12 margin: 10px 0; 12 margin: 10px 0;
13 } 13 }
14 14
15 .file-system-header-text { 15 .file-system-header-text {
16 font-size: 14px;
17 flex: auto; 16 flex: auto;
18 } 17 }
19 18
20 .add-button { 19 .add-button {
21 margin-left: 10px; 20 margin-left: 10px;
22 align-self: flex-start; 21 align-self: flex-start;
23 } 22 }
24 23
25 .file-system-list { 24 .file-system-list {
26 flex: auto; 25 flex: auto;
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 visibility: hidden; 81 visibility: hidden;
83 } 82 }
84 83
85 .file-system-locked:after { 84 .file-system-locked:after {
86 content: "\1F512"; 85 content: "\1F512";
87 } 86 }
88 87
89 .file-system-list-item.locked .file-system-locked { 88 .file-system-list-item.locked .file-system-locked {
90 visibility: visible; 89 visibility: visible;
91 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698