-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (55 loc) · 1.17 KB
/
Copy pathstyles.css
File metadata and controls
64 lines (55 loc) · 1.17 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
.chatgpt-md-websearch-approval-modal {
max-width: 600px;
}
.websearch-query-info {
margin-bottom: 10px;
padding: 8px;
background: var(--background-secondary);
border-radius: 4px;
}
.websearch-button-container {
display: flex;
gap: 8px;
margin-bottom: 10px;
}
.websearch-results-container {
max-height: 300px;
overflow-y: auto;
margin-bottom: 10px;
}
.websearch-result-item {
border-bottom: 1px solid var(--background-modifier-border);
padding: 8px 0;
}
.websearch-result-url {
font-size: 0.85em;
color: var(--text-muted);
}
.websearch-result-snippet {
font-size: 0.9em;
color: var(--text-muted);
}
.websearch-privacy-warning {
background: var(--background-modifier-warning);
padding: 8px;
border-radius: 4px;
margin-bottom: 10px;
}
.websearch-action-buttons {
display: flex;
justify-content: flex-end;
gap: 8px;
}
/* Model suggestion tool badge */
.ai-model-tool-badge {
background-color: var(--interactive-accent, #7b6cd9);
color: var(--text-on-accent, #ffffff);
padding: 2px 8px;
border-radius: 4px;
font-size: 11px;
font-weight: 500;
flex-shrink: 0;
white-space: nowrap;
display: inline-block;
line-height: 1.4;
}