forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathremoteDebuggingTerminatedScreen.css
More file actions
74 lines (63 loc) · 1.43 KB
/
remoteDebuggingTerminatedScreen.css
File metadata and controls
74 lines (63 loc) · 1.43 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
/*
* 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.
*/
.widget {
padding: 20px;
user-select: text;
}
.remote-debugging-terminated-title {
font-size: 17px;
font-weight: normal;
margin: 6px 0;
}
.remote-debugging-terminated-message {
font-size: 14px;
margin: 5px 0;
margin-bottom: 16px;
}
.remote-debugging-terminated-options {
display: grid;
grid-template-columns: 1fr auto;
grid-gap: 8px;
align-items: center;
}
.remote-debugging-terminated-label {
grid-column: 1;
margin: 8px 0;
max-width: 300px;
font-size: larger;
line-height: 1.4;
}
.remote-debugging-terminated-options .text-button {
grid-column: 2;
}
.remote-debugging-terminated-feedback-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 12px 16px;
background-color: var(--color-background-elevation-1);
border-radius: 6px;
margin-bottom: 12px;
}
.remote-debugging-terminated-feedback-label {
font-size: 14px;
margin-bottom: 8px;
}
.remote-debugging-terminated-feedback-launch-id {
color: red;
}
.remote-debugging-terminated-reason {
--override-reason-color: red;
color: var(--override-reason-color);
margin: 8px;
textarea {
width: 100%;
}
}
.theme-with-dark-background .reason,
:host-context(.theme-with-dark-background) .reason {
--override-reason-color: rgb(255 116 116);
}