-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathnode-detail.module.css
More file actions
92 lines (82 loc) · 1.78 KB
/
Copy pathnode-detail.module.css
File metadata and controls
92 lines (82 loc) · 1.78 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
.overlay {
position: fixed;
bottom: 1.5rem;
left: 1.5rem;
width: 28rem;
max-height: 60vh;
background: var(--wb-app-bar-background);
border: 0.0625rem solid var(--wb-app-bar-border-color);
border-radius: var(--wb-app-bar-border-radius);
color: var(--ax-txt-primary-default, #151516);
display: flex;
flex-direction: column;
z-index: 11;
font-size: 0.75rem;
overflow: hidden;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.header {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0.75rem;
border-bottom: 0.0625rem solid var(--wb-app-bar-border-color);
flex-shrink: 0;
}
.header-title {
font-weight: 600;
font-size: 0.75rem;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.status {
font-size: 0.65rem;
font-weight: 500;
padding: 0.1rem 0.35rem;
border-radius: 0.25rem;
}
.status--completed {
color: var(--ai-studio-status-color--completed);
background: var(--ai-studio-status-bg--completed);
}
.status--failed {
color: var(--ai-studio-status-color--failed);
background: var(--ai-studio-status-bg--failed);
}
.close-button {
display: inline-flex;
align-items: center;
justify-content: center;
width: 1.25rem;
height: 1.25rem;
border: none;
background: none;
color: var(--ax-txt-secondary-default);
cursor: pointer;
border-radius: 0.25rem;
font-size: 0.85rem;
line-height: 1;
flex-shrink: 0;
&:hover {
background: color-mix(in srgb, var(--wb-app-bar-border-color), transparent 30%);
}
svg {
width: 100%;
height: 100%;
}
}
.body {
overflow-y: auto;
flex: 1;
padding: 0.5rem 0.75rem;
}
.output {
white-space: pre-wrap;
word-break: break-word;
line-height: 1.5;
font-size: 0.85rem;
font-family: inherit;
color: var(--ax-txt-primary-default);
}