forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy patheditFileSystemView.css
More file actions
95 lines (79 loc) · 1.69 KB
/
Copy patheditFileSystemView.css
File metadata and controls
95 lines (79 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
* Copyright 2015 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.excluded-folder-header {
display: flex;
flex-direction: column;
min-height: var(--sys-size-16);
border-bottom: var(--sys-size-1) solid var(--app-color-card-divider);
padding: var(--sys-size-4) var(--sys-size-6);
gap: var(--sys-size-4);
& > .excluded-folder-url {
color: var(--sys-color-on-surface-subtle);
overflow-wrap: break-word;
}
}
.exclude-subfolders-text,
.file-system-list-empty {
padding: 0 var(--sys-size-6);
height: var(--sys-size-13);
}
.exclude-subfolders-text {
align-items: center;
display: flex;
}
.add-button {
padding: var(--sys-size-4) var(--sys-size-6);
align-self: flex-start;
}
.file-system-list {
flex: auto;
}
.file-system-list-empty {
display: flex;
align-items: center;
}
.file-system-list-item {
height: var(--sys-size-13);
display: flex;
align-items: center;
flex: auto 1 1;
}
.file-system-value {
flex: 1 1 0;
}
.list {
&:has(div) {
border: none;
}
}
.list-item {
padding-left: var(--sys-size-11);
&:not(:last-child) {
.file-system-list-item {
border-bottom: var(--sys-size-1) solid var(--app-color-card-divider);
}
}
}
.editor-buttons {
padding: var(--sys-size-4) var(--sys-size-6);
}
.list-item .file-system-value {
white-space: nowrap;
text-overflow: ellipsis;
user-select: none;
overflow: hidden;
}
.file-system-edit-row {
flex: none;
display: flex;
flex-direction: row;
margin: var(--sys-size-4) var(--sys-size-6);
align-items: center;
}
.file-system-edit-row input {
width: 100%;
text-align: inherit;
}