feat: added activity log

This commit is contained in:
2026-06-10 14:17:33 +02:00
parent 96f1a40266
commit 0442e4f699
16 changed files with 1027 additions and 579 deletions

View File

@@ -291,6 +291,152 @@ tr:hover td {
background: rgba(255, 255, 255, 0.02);
}
.activity-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 1rem;
flex-wrap: wrap;
}
.activity-header h1 {
margin-bottom: 0.5rem;
}
.activity-header p {
color: var(--text-muted);
margin: 0;
}
.activity-refresh,
.activity-load-more {
width: auto;
padding: 0.6rem 1.2rem;
}
.activity-controls-card {
max-width: 100%;
text-align: left;
padding: 1.35rem;
margin-bottom: 1.5rem;
display: grid;
grid-template-columns: minmax(260px, 1fr) minmax(260px, 1.25fr);
gap: 1rem;
align-items: stretch;
}
.activity-control-panel {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
background: rgba(17, 24, 39, 0.62);
border: 1px solid var(--border);
border-radius: 14px;
padding: 1rem;
}
.activity-control-copy h2 {
color: var(--text);
font-size: 1rem;
margin: 0.1rem 0 0.25rem;
}
.activity-control-copy p,
.activity-note {
color: var(--text-muted);
margin: 0;
font-size: 0.92rem;
}
.activity-eyebrow {
color: var(--accent);
font-size: 0.75rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.activity-entry-menu {
display: inline-flex;
align-items: center;
gap: 0.35rem;
padding: 0.35rem;
background: #0f172a;
border: 1px solid var(--border);
border-radius: 999px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.activity-entry-option {
min-width: 3.2rem;
border: 0;
border-radius: 999px;
padding: 0.55rem 0.85rem;
background: transparent;
color: var(--text-muted);
cursor: pointer;
font-weight: 800;
transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.activity-entry-option:hover,
.activity-entry-option:focus-visible {
color: var(--text);
outline: none;
background: rgba(255, 255, 255, 0.05);
}
.activity-entry-option.active {
color: #ffffff;
background: var(--accent);
box-shadow: 0 8px 18px rgba(59, 130, 246, 0.28);
}
.activity-note {
display: flex;
align-items: center;
border: 1px solid rgba(59, 130, 246, 0.22);
border-radius: 14px;
padding: 1rem;
background: rgba(59, 130, 246, 0.08);
}
.activity-note strong {
color: #bfdbfe;
margin-right: 0.35rem;
}
.activity-load-more-wrap {
display: flex;
justify-content: center;
margin-top: 1.5rem;
}
#activity-load-more {
display: none;
}
@media (max-width: 860px) {
.activity-controls-card {
grid-template-columns: 1fr;
}
.activity-control-panel {
align-items: flex-start;
flex-direction: column;
}
.activity-entry-menu {
width: 100%;
}
.activity-entry-option {
flex: 1;
}
}
#modal {
position: fixed;
z-index: 100;