-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
114 lines (100 loc) · 1.98 KB
/
Copy pathcontent.css
File metadata and controls
114 lines (100 loc) · 1.98 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
111
112
113
114
/* SearchHub Content Script Styles */
#searchhub-followup-bar {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 2147483647;
max-width: 500px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
padding: 12px;
animation: slideIn 0.3s ease;
}
@media (prefers-color-scheme: dark) {
#searchhub-followup-bar {
background: rgba(30, 30, 30, 0.95);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
}
@keyframes slideIn {
from {
transform: translateY(100px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.searchhub-followup-content {
display: flex;
align-items: center;
gap: 8px;
}
.searchhub-followup-icon {
width: 20px;
height: 20px;
stroke: #6366f1;
stroke-width: 2;
flex-shrink: 0;
}
.searchhub-followup-input {
flex: 1;
border: none;
background: transparent;
font-size: 14px;
color: #1a1a1a;
outline: none;
padding: 8px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
@media (prefers-color-scheme: dark) {
.searchhub-followup-input {
color: #f0f0f0;
}
}
.searchhub-followup-input::placeholder {
color: #a0a0a0;
}
.searchhub-followup-btn,
.searchhub-followup-close {
width: 32px;
height: 32px;
border: none;
background: transparent;
border-radius: 6px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.2s ease;
flex-shrink: 0;
}
.searchhub-followup-btn:hover {
background: rgba(99, 102, 241, 0.1);
}
.searchhub-followup-close:hover {
background: rgba(239, 68, 68, 0.1);
}
.searchhub-followup-btn svg {
width: 18px;
height: 18px;
stroke: #6366f1;
stroke-width: 2;
}
.searchhub-followup-close svg {
width: 16px;
height: 16px;
stroke: #ef4444;
stroke-width: 2;
}
/* Responsive */
@media (max-width: 768px) {
#searchhub-followup-bar {
left: 20px;
right: 20px;
max-width: none;
}
}