mirror of
http://172.20.10.11:3000/gitadmin/INSIGHT-MVP.git
synced 2026-06-25 10:06:39 +02:00
- Admin section moved to dedicated area with horizontal tab navigation - Sidebar now shows gear icon link to Administration (PLATFORM_ADMIN only) - External links management page for configuring sidebar shortcuts - External links displayed in sidebar for all authenticated users - Backend: Redis-based CRUD endpoints for external link configuration Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
69 lines
1.2 KiB
CSS
69 lines
1.2 KiB
CSS
.header {
|
|
margin: -2rem -2rem 2rem -2rem;
|
|
background: var(--color-bg-card);
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
|
|
.headerTop {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
padding: 1.25rem 2rem 0;
|
|
}
|
|
|
|
.backButton {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.375rem;
|
|
padding: 0.375rem 0.75rem;
|
|
background: none;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--color-text-secondary);
|
|
font-size: 0.8125rem;
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
}
|
|
|
|
.backButton:hover {
|
|
color: var(--color-text);
|
|
background: var(--color-bg);
|
|
border-color: var(--color-text-muted);
|
|
}
|
|
|
|
.title {
|
|
font-size: 1.5rem;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.tabs {
|
|
display: flex;
|
|
gap: 0;
|
|
padding: 0 2rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.tab {
|
|
padding: 0.75rem 1.25rem;
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
color: var(--color-text-secondary);
|
|
text-decoration: none;
|
|
border-bottom: 2px solid transparent;
|
|
transition: all 0.15s;
|
|
}
|
|
|
|
.tab:hover {
|
|
color: var(--color-text);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.tabActive {
|
|
color: var(--color-primary);
|
|
border-bottom-color: var(--color-primary);
|
|
}
|
|
|
|
.content {
|
|
/* Content-Bereich unter den Tabs */
|
|
}
|