-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
103 lines (89 loc) · 1.76 KB
/
content.css
File metadata and controls
103 lines (89 loc) · 1.76 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
/* SaveChat Extension Styles - Updated to match ChatGPT toolbar */
.savechat-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
margin: 0;
padding: 6px 8px;
border: 1px solid #e5e7eb;
border-radius: 6px;
background: transparent;
color: #6b7280;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.15s ease;
min-width: 32px;
height: 32px;
position: relative;
line-height: 1;
opacity: 0.8;
}
.savechat-button:hover {
background: #f3f4f6;
color: #374151;
border-color: #d1d5db;
opacity: 1;
transform: none;
box-shadow: none;
}
.savechat-button:active {
background: #e5e7eb;
transform: none;
}
.savechat-button.saved {
background: #10b981;
color: white;
border-color: #10b981;
opacity: 1;
}
.savechat-button.saved:hover {
background: #059669;
border-color: #059669;
}
.savechat-button:disabled {
opacity: 0.6;
cursor: not-allowed;
transform: none;
}
.savechat-button .icon {
width: 16px;
height: 16px;
flex-shrink: 0;
}
/* Dark mode support for ChatGPT */
.dark .savechat-button {
background: transparent;
color: #9ca3af;
border-color: #4b5563;
opacity: 0.8;
}
.dark .savechat-button:hover {
background: #374151;
color: #f9fafb;
border-color: #6b7280;
opacity: 1;
}
.dark .savechat-button:active {
background: #4b5563;
}
.dark .savechat-button.saved {
background: #10b981;
color: white;
border-color: #10b981;
opacity: 1;
}
.dark .savechat-button.saved:hover {
background: #059669;
border-color: #059669;
}
/* Animation for save confirmation */
@keyframes savePulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.savechat-button.saved {
animation: savePulse 0.3s ease;
}