-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
107 lines (90 loc) · 2.27 KB
/
popup.css
File metadata and controls
107 lines (90 loc) · 2.27 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
/*
* EveryAlt Chrome Extension - Popup Styles
*/
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 1.5;
color: #1f2937;
background: #ffffff;
width: 280px;
}
.everyalt-popup {
padding: 16px;
}
/* ── Brand ───────────────────────────────────────────────────── */
.everyalt-popup-brand {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 12px;
}
.everyalt-popup-title {
font-size: 17px;
font-weight: 800;
color: #0750b6;
letter-spacing: -0.02em;
}
/* ── Status ──────────────────────────────────────────────────── */
.everyalt-popup-status {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 12px;
background: #f9fafb;
border: 1px solid #e5e7eb;
border-radius: 8px;
margin-bottom: 12px;
}
.everyalt-status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
background: #9ca3af;
}
.everyalt-status-dot.ready {
background: #059669;
}
.everyalt-status-dot.warning {
background: #d97706;
}
#status-text {
font-size: 13px;
font-weight: 500;
color: #374151;
}
/* ── Instruction ─────────────────────────────────────────────── */
.everyalt-popup-instruction {
color: #6b7280;
font-size: 12px;
line-height: 1.5;
margin-bottom: 12px;
}
/* ── Settings Button ─────────────────────────────────────────── */
.everyalt-popup-settings-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
width: 100%;
padding: 8px 0;
background: none;
border: 1px solid #e5e7eb;
border-radius: 8px;
font-size: 13px;
font-weight: 600;
font-family: inherit;
color: #374151;
cursor: pointer;
transition: all 0.15s;
}
.everyalt-popup-settings-btn:hover {
background: #f9fafb;
border-color: #d1d5db;
}