forked from MyZubster-Ecosystem/myzubster
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathActivityFeed.css
More file actions
113 lines (97 loc) 路 1.62 KB
/
Copy pathActivityFeed.css
File metadata and controls
113 lines (97 loc) 路 1.62 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
.activity-feed {
background: #ffffff;
border-radius: 12px;
padding: 16px 18px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
color: #2c3e50;
}
.feed-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 12px;
}
.feed-header h3 {
margin: 0;
font-size: 18px;
}
.live-dot {
color: #27ae60;
font-size: 12px;
margin-left: 4px;
animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
.feed-filter {
padding: 6px 10px;
border-radius: 8px;
border: 1px solid #dcdde1;
background: #f8f9fa;
font-size: 14px;
color: #2c3e50;
cursor: pointer;
}
.feed-loading,
.feed-empty {
padding: 24px;
text-align: center;
color: #7f8c8d;
font-size: 14px;
}
.feed-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.feed-item {
display: flex;
gap: 12px;
align-items: flex-start;
}
.feed-avatar {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
}
.feed-avatar--fallback {
display: flex;
align-items: center;
justify-content: center;
background: #3498db;
color: #fff;
font-weight: bold;
font-size: 16px;
}
.feed-body {
flex: 1;
min-width: 0;
}
.feed-line {
font-size: 14px;
line-height: 1.4;
}
.feed-action {
color: #34495e;
}
.feed-plant {
color: #7f8c8d;
}
.feed-message {
margin-top: 2px;
font-size: 13px;
color: #576574;
}
.feed-time {
margin-top: 2px;
font-size: 12px;
color: #95a5a6;
}