-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
103 lines (90 loc) · 1.85 KB
/
content.css
File metadata and controls
103 lines (90 loc) · 1.85 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
/* X Country Filter - Content Styles */
.xcf-hidden {
display: none !important;
}
.xcf-revealed {
border-left: 3px solid #f59e0b !important;
}
.xcf-placeholder {
padding: 16px;
margin: 4px 0;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
border: 1px solid #374151;
border-radius: 12px;
text-align: center;
}
.xcf-placeholder-text {
color: #9ca3af;
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}
.xcf-show-btn {
background: #3b82f6;
color: white;
border: none;
padding: 6px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 12px;
font-weight: 500;
transition: background 0.2s;
}
.xcf-show-btn:hover {
background: #2563eb;
}
.xcf-profile-warning {
background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
color: white;
padding: 12px 16px;
margin: 8px 16px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 14px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.xcf-dismiss-btn {
background: rgba(255, 255, 255, 0.2);
color: white;
border: none;
padding: 6px 12px;
border-radius: 6px;
cursor: pointer;
font-size: 12px;
transition: background 0.2s;
}
.xcf-dismiss-btn:hover {
background: rgba(255, 255, 255, 0.3);
}
.xcf-blocked-profile {
opacity: 0.5;
border: 2px solid #ef4444 !important;
}
/* Flag badge next to username */
.xcf-flag-badge {
display: inline;
font-size: 14px;
margin-left: 4px;
vertical-align: middle;
cursor: help;
}
/* Badge indicator on tweets from monitored countries */
.xcf-country-badge {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 2px 8px;
background: #374151;
border-radius: 12px;
font-size: 11px;
color: #9ca3af;
margin-left: 8px;
}
.xcf-country-badge.blocked {
background: #7f1d1d;
color: #fca5a5;
}