forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathnodeConnectionsPanel.css
More file actions
110 lines (92 loc) · 1.85 KB
/
Copy pathnodeConnectionsPanel.css
File metadata and controls
110 lines (92 loc) · 1.85 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
* Copyright (c) 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.
*/
.add-network-target-button {
margin: 10px 25px;
align-self: center;
}
.network-discovery-list {
flex: none;
max-width: 600px;
max-height: 202px;
margin: 20px 0 5px;
}
.network-discovery-list-empty {
flex: auto;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
}
.network-discovery-list-item {
padding: 3px 5px;
height: 30px;
display: flex;
align-items: center;
position: relative;
flex: auto 1 1;
}
.network-discovery-value {
flex: 3 1 0;
}
.list-item .network-discovery-value {
white-space: nowrap;
text-overflow: ellipsis;
user-select: none;
color: var(--sys-color-on-surface);
overflow: hidden;
}
.network-discovery-edit-row {
flex: none;
display: flex;
flex-direction: row;
margin: 6px 5px;
align-items: center;
}
.network-discovery-edit-row input {
width: 100%;
text-align: inherit;
}
.network-discovery-footer {
margin: 0;
overflow: hidden;
max-width: 500px;
padding: 3px;
}
.network-discovery-footer > * {
white-space: pre-wrap;
}
.node-panel {
align-items: center;
justify-content: flex-start;
overflow-y: auto;
}
.network-discovery-view {
min-width: 400px;
text-align: left;
}
:host-context(.node-frontend) .network-discovery-list-empty {
height: 40px;
}
:host-context(.node-frontend) .network-discovery-list-item {
padding: 3px 15px;
height: 40px;
}
.node-panel-center {
max-width: 600px;
padding-top: 50px;
text-align: center;
}
.node-panel-logo {
width: 400px;
margin-bottom: 50px;
}
:host-context(.node-frontend) .network-discovery-edit-row input {
height: 30px;
padding-left: 5px;
}
:host-context(.node-frontend) .network-discovery-edit-row {
margin: 6px 9px;
}