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

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

Issue 2868543002: DevTools: move FileSystemMapping under persistence/ module (Closed)
Patch Set: fix copyright Created 3 years, 7 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
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 .file-system-header {
8 display: flex;
9 flex-direction: row;
10 align-items: center;
11 flex: auto;
12 margin: 10px 0;
13 }
14
15 .file-system-header-text {
16 flex: auto;
17 }
18
19 .add-button {
20 margin-left: 10px;
21 align-self: flex-start;
22 }
23
24 .file-system-list {
25 flex: auto;
26 }
27
28 .file-system-list-empty {
29 flex: auto;
30 height: 30px;
31 display: flex;
32 align-items: center;
33 justify-content: center;
34 text-align: center;
35 }
36
37 .file-system-list-item {
38 padding: 3px 5px 3px 5px;
39 height: 30px;
40 display: flex;
41 align-items: center;
42 flex: auto 1 1;
43 }
44
45 .file-system-value {
46 white-space: nowrap;
47 text-overflow: ellipsis;
48 -webkit-user-select: none;
49 color: #222;
50 flex: 1 1 0px;
51 overflow: hidden;
52 }
53
54 .file-system-separator {
55 flex: 0 0 1px;
56 background-color: rgb(231, 231, 231);
57 height: 30px;
58 margin: 0 4px;
59 }
60
61 .file-system-separator-invisible {
62 visibility: hidden;
63 height: 100% !important;
64 }
65
66 .file-system-edit-row {
67 flex: none;
68 display: flex;
69 flex-direction: row;
70 margin: 6px 5px;
71 align-items: center;
72 }
73
74 .file-system-edit-row input {
75 width: 100%;
76 text-align: inherit;
77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698