0926e4de83
- Add API client functions for commit history and detail endpoints - Create GitHistoryPage with commit list, graph visualization, and detail panel - Add branch selector for viewing different branches - Integrate history view into repository list with History button - Add comprehensive CSS styles for history page layout Quality gates: typecheck ✓, lint ✓, build ✓
697 lines
10 KiB
CSS
697 lines
10 KiB
CSS
:root {
|
|
color-scheme: light;
|
|
font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
|
|
--bg: #f4f1ea;
|
|
--panel: #fffef9;
|
|
--ink: #1d1d1b;
|
|
--muted: #5f5b55;
|
|
--brand: #275d4b;
|
|
--brand-strong: #154236;
|
|
--border: #d8d0c5;
|
|
}
|
|
|
|
[data-theme="dark"] {
|
|
color-scheme: dark;
|
|
--bg: #1a1a18;
|
|
--panel: #252522;
|
|
--ink: #e8e6e1;
|
|
--muted: #a39e96;
|
|
--brand: #4a9e7f;
|
|
--brand-strong: #3d8a6e;
|
|
--border: #3d3d38;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
background: var(--bg);
|
|
color: var(--ink);
|
|
}
|
|
|
|
[data-theme="dark"] body {
|
|
background: radial-gradient(circle at top right, #2a2520, var(--bg));
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.shell {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.shell-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.85rem 1.25rem;
|
|
border-bottom: 1px solid var(--border);
|
|
background: rgba(255, 255, 255, 0.85);
|
|
backdrop-filter: blur(7px);
|
|
}
|
|
|
|
.brand {
|
|
font-weight: 700;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.header-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.shell-body {
|
|
display: grid;
|
|
grid-template-columns: 230px 1fr;
|
|
min-height: calc(100vh - 57px);
|
|
}
|
|
|
|
.shell-nav {
|
|
border-right: 1px solid var(--border);
|
|
padding: 1rem 0.75rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.4rem;
|
|
}
|
|
|
|
.nav-item {
|
|
padding: 0.65rem 0.75rem;
|
|
border-radius: 10px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.nav-item:hover {
|
|
background: #ece7df;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.nav-item-active {
|
|
background: var(--brand);
|
|
color: #f7fff7;
|
|
}
|
|
|
|
.shell-content {
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
.stack {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.muted {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.card-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
gap: 0.9rem;
|
|
}
|
|
|
|
.card {
|
|
background: var(--panel);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.card-label {
|
|
margin: 0;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.card-value {
|
|
margin: 0.45rem 0 0;
|
|
font-size: 1.6rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.quick-actions {
|
|
display: flex;
|
|
gap: 0.6rem;
|
|
}
|
|
|
|
.primary-button,
|
|
.secondary-button,
|
|
.ghost-button {
|
|
border-radius: 10px;
|
|
border: 1px solid transparent;
|
|
padding: 0.58rem 0.85rem;
|
|
cursor: pointer;
|
|
font: inherit;
|
|
}
|
|
|
|
.primary-button {
|
|
background: var(--brand);
|
|
color: white;
|
|
}
|
|
|
|
.primary-button:hover {
|
|
background: var(--brand-strong);
|
|
}
|
|
|
|
.secondary-button {
|
|
border-color: var(--border);
|
|
background: var(--panel);
|
|
}
|
|
|
|
.ghost-button {
|
|
border-color: var(--border);
|
|
background: transparent;
|
|
}
|
|
|
|
.user-chip {
|
|
border: 1px solid var(--border);
|
|
background: var(--panel);
|
|
border-radius: 999px;
|
|
padding: 0.35rem 0.7rem;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.center-screen {
|
|
min-height: 55vh;
|
|
display: grid;
|
|
place-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.page-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.project-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.project-card {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.project-info h3 {
|
|
margin: 0 0 0.35rem;
|
|
}
|
|
|
|
.project-info p {
|
|
margin: 0;
|
|
}
|
|
|
|
.project-actions {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.delete-confirm {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.danger-button {
|
|
border-radius: 10px;
|
|
border: 1px solid transparent;
|
|
padding: 0.58rem 0.85rem;
|
|
cursor: pointer;
|
|
font: inherit;
|
|
background: #b91c1c;
|
|
color: white;
|
|
}
|
|
|
|
.danger-text {
|
|
color: #b91c1c;
|
|
}
|
|
|
|
.error-text {
|
|
color: #b91c1c;
|
|
margin: 0;
|
|
}
|
|
|
|
.dialog-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.35);
|
|
display: grid;
|
|
place-content: center;
|
|
z-index: 50;
|
|
}
|
|
|
|
.dialog {
|
|
background: var(--panel);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
padding: 1.25rem;
|
|
min-width: 320px;
|
|
max-width: 90vw;
|
|
}
|
|
|
|
.dialog h2 {
|
|
margin: 0 0 1rem;
|
|
}
|
|
|
|
.form-field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
}
|
|
|
|
.form-field input,
|
|
.form-field textarea {
|
|
padding: 0.55rem 0.7rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
font: inherit;
|
|
}
|
|
|
|
.dialog-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 0.6rem;
|
|
}
|
|
|
|
.keys-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.key-card {
|
|
background: var(--panel);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.key-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.key-header h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
.key-meta {
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.key-public {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
padding: 0.5rem;
|
|
background: #f5f3ee;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.key-public code {
|
|
font-size: 0.85rem;
|
|
word-break: break-all;
|
|
flex: 1;
|
|
}
|
|
|
|
.form-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
}
|
|
|
|
.form-group input {
|
|
padding: 0.55rem 0.7rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
font: inherit;
|
|
}
|
|
|
|
.error {
|
|
color: #b91c1c;
|
|
padding: 0.75rem;
|
|
background: #fef2f2;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
@media (max-width: 860px) {
|
|
.shell-body {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.shell-nav {
|
|
flex-direction: row;
|
|
overflow-x: auto;
|
|
border-right: 0;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.card-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.quick-actions {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.project-card {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
/* URL Validation Styles */
|
|
.valid-url {
|
|
border-color: #16a34a !important;
|
|
background-color: #f0fdf4 !important;
|
|
}
|
|
|
|
.needs-parsing-url {
|
|
border-color: #ca8a04 !important;
|
|
background-color: #fefce8 !important;
|
|
}
|
|
|
|
.invalid-url {
|
|
border-color: #dc2626 !important;
|
|
background-color: #fef2f2 !important;
|
|
}
|
|
|
|
.validation-status {
|
|
font-size: 0.85rem;
|
|
margin-top: 0.25rem;
|
|
display: block;
|
|
}
|
|
|
|
.validation-status.valid {
|
|
color: #16a34a;
|
|
}
|
|
|
|
.validation-status.warning {
|
|
color: #ca8a04;
|
|
}
|
|
|
|
.validation-status.invalid {
|
|
color: #dc2626;
|
|
}
|
|
|
|
.validation-status.validating {
|
|
color: var(--muted);
|
|
}
|
|
|
|
.url-suggestion {
|
|
margin-top: 0.5rem;
|
|
padding: 0.5rem;
|
|
background: #fefce8;
|
|
border-radius: 8px;
|
|
border: 1px solid #fde047;
|
|
}
|
|
|
|
.suggestion-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
margin-top: 0.35rem;
|
|
}
|
|
|
|
.suggested-url {
|
|
font-size: 0.85rem;
|
|
color: #854d0e;
|
|
flex: 1;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.secondary-button.small {
|
|
padding: 0.35rem 0.6rem;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
/* Git History Page Styles */
|
|
.history-actions {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.branch-selector {
|
|
padding: 0.45rem 0.7rem;
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
font: inherit;
|
|
background: var(--panel);
|
|
color: var(--ink);
|
|
}
|
|
|
|
.history-container {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
gap: 1rem;
|
|
min-height: 60vh;
|
|
}
|
|
|
|
.commit-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
}
|
|
|
|
.commit-list.with-detail {
|
|
grid-column: 1;
|
|
}
|
|
|
|
.commit-item {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
padding: 0.75rem;
|
|
background: var(--panel);
|
|
border: 1px solid var(--border);
|
|
border-radius: 10px;
|
|
cursor: pointer;
|
|
transition: background-color 0.15s ease;
|
|
}
|
|
|
|
.commit-item:hover {
|
|
background: #ece7df;
|
|
}
|
|
|
|
.commit-item.selected {
|
|
border-color: var(--brand);
|
|
background: #f0f7f4;
|
|
}
|
|
|
|
.commit-graph {
|
|
font-family: monospace;
|
|
font-size: 0.9rem;
|
|
color: var(--brand);
|
|
white-space: pre;
|
|
flex-shrink: 0;
|
|
min-width: 60px;
|
|
}
|
|
|
|
.graph-line {
|
|
display: inline-block;
|
|
}
|
|
|
|
.commit-content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.commit-header {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
margin-bottom: 0.35rem;
|
|
}
|
|
|
|
.commit-hash {
|
|
font-family: monospace;
|
|
font-size: 0.85rem;
|
|
color: var(--brand);
|
|
background: #f0f7f4;
|
|
padding: 0.15rem 0.4rem;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.commit-refs {
|
|
display: flex;
|
|
gap: 0.35rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.ref-tag {
|
|
font-size: 0.75rem;
|
|
padding: 0.15rem 0.4rem;
|
|
background: var(--brand);
|
|
color: white;
|
|
border-radius: 999px;
|
|
}
|
|
|
|
.commit-message {
|
|
margin: 0 0 0.35rem;
|
|
font-weight: 500;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.commit-meta {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
font-size: 0.85rem;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.commit-detail-panel {
|
|
background: var(--panel);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
padding: 1.25rem;
|
|
overflow-y: auto;
|
|
max-height: 70vh;
|
|
}
|
|
|
|
.detail-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
padding-bottom: 0.75rem;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
.detail-header h3 {
|
|
margin: 0;
|
|
}
|
|
|
|
.detail-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.25rem;
|
|
}
|
|
|
|
.detail-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.35rem;
|
|
}
|
|
|
|
.detail-section h4 {
|
|
margin: 0 0 0.5rem;
|
|
color: var(--muted);
|
|
font-size: 0.9rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
.commit-hash-full {
|
|
font-family: monospace;
|
|
font-size: 0.85rem;
|
|
color: var(--brand);
|
|
margin: 0;
|
|
}
|
|
|
|
.commit-message-full {
|
|
margin: 0.5rem 0 0;
|
|
line-height: 1.5;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.stat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 0.75rem;
|
|
background: #f5f3ee;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.stat.additions {
|
|
background: #f0fdf4;
|
|
}
|
|
|
|
.stat.deletions {
|
|
background: #fef2f2;
|
|
}
|
|
|
|
.stat-value {
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
color: var(--ink);
|
|
}
|
|
|
|
.stat.additions .stat-value {
|
|
color: #16a34a;
|
|
}
|
|
|
|
.stat.deletions .stat-value {
|
|
color: #dc2626;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 0.8rem;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.parent-list {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.parent-hash {
|
|
font-family: monospace;
|
|
font-size: 0.85rem;
|
|
padding: 0.2rem 0.5rem;
|
|
background: #f5f3ee;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.diff-content {
|
|
font-family: monospace;
|
|
font-size: 0.8rem;
|
|
line-height: 1.5;
|
|
background: #f5f3ee;
|
|
padding: 0.75rem;
|
|
border-radius: 10px;
|
|
overflow-x: auto;
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
}
|
|
|
|
@media (min-width: 1024px) {
|
|
.history-container {
|
|
grid-template-columns: 1fr 400px;
|
|
}
|
|
|
|
.commit-list.with-detail {
|
|
grid-column: 1;
|
|
}
|
|
|
|
.commit-detail-panel {
|
|
grid-column: 2;
|
|
position: sticky;
|
|
top: 1rem;
|
|
}
|
|
}
|