UI: Add git commit hash and age to status bar

This commit is contained in:
2025-12-24 00:03:24 +11:00
parent e4848a6e56
commit 9f3a914d0f
4 changed files with 92 additions and 1 deletions

View File

@@ -1350,3 +1350,37 @@ body {
color: white;
border-color: rgba(255, 255, 255, 0.2);
}
/* Version Pill in Status Bar */
.version-container {
margin-left: auto;
padding-left: 1rem;
border-left: 1px solid var(--border-light);
}
.version-pill {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(255, 255, 255, 0.05);
padding: 0.25rem 0.75rem;
border-radius: 12px;
border: 1px solid var(--border-light);
font-family: monospace;
font-size: 0.8rem;
color: var(--text-secondary);
}
.commit-hash {
color: #8b5cf6; /* Violet */
font-weight: 600;
}
.version-separator {
color: var(--text-muted);
font-size: 0.6rem;
}
.commit-age {
color: var(--text-muted);
}