This commit is contained in:
2025-12-04 11:41:21 +01:00
parent 1c26370823
commit bab57a384b

View File

@@ -526,10 +526,11 @@
} }
.custom-footer { .custom-footer {
background: #0f172a; background: linear-gradient(to bottom, rgba(170, 196, 245, 0.08), rgba(140, 169, 255, 0.15));
color: #cbd5f5; color: #1e293b;
padding: 4rem 0 2.5rem; padding: 4rem 0 2.5rem;
margin-top: 4rem; margin-top: 4rem;
border-top: 1px solid rgba(140, 169, 255, 0.2);
} }
.custom-footer .footer-inner { .custom-footer .footer-inner {
@@ -545,13 +546,13 @@
font-size: 1.1rem; font-size: 1.1rem;
font-weight: 600; font-weight: 600;
margin-bottom: 1rem; margin-bottom: 1rem;
color: #38bdf8; color: #8CA9FF;
} }
.custom-footer p, .custom-footer p,
.custom-footer li, .custom-footer li,
.custom-footer a { .custom-footer a {
color: rgba(226, 232, 240, 0.8); color: #64748b;
} }
.custom-footer a { .custom-footer a {
@@ -560,7 +561,7 @@
} }
.custom-footer a:hover { .custom-footer a:hover {
color: #f8fafc; color: #8CA9FF;
transform: translateX(3px); transform: translateX(3px);
} }
@@ -573,7 +574,7 @@
} }
.custom-footer .footer-divider { .custom-footer .footer-divider {
border-top: 1px solid rgba(148, 163, 184, 0.2); border-top: 1px solid rgba(140, 169, 255, 0.2);
margin: 2.5rem auto 0; margin: 2.5rem auto 0;
max-width: 1100px; max-width: 1100px;
} }
@@ -600,24 +601,31 @@
width: 2.5rem; width: 2.5rem;
height: 2.5rem; height: 2.5rem;
border-radius: 999px; border-radius: 999px;
background: rgba(148, 163, 184, 0.15); background: rgba(140, 169, 255, 0.15);
color: #8CA9FF;
transition: all 0.2s ease;
}
.custom-footer .social-links a:hover {
background: rgba(140, 169, 255, 0.25);
transform: translateY(-2px);
} }
.page-footer { .page-footer {
background: transparent; background: transparent;
border-top: none; border-top: none;
color: rgba(148, 163, 184, 0.8); color: #64748b;
margin: 0 auto 2rem; margin: 0 auto 2rem;
max-width: 1100px; max-width: 1100px;
padding: 0 1.5rem; padding: 0 1.5rem;
} }
.page-footer a { .page-footer a {
color: rgba(203, 213, 225, 0.9); color: #64748b;
} }
.page-footer a:hover { .page-footer a:hover {
color: #f8fafc; color: #8CA9FF;
} }
.page-footer .left-links, .page-footer .left-links,
@@ -719,9 +727,8 @@
/* Repository list items - minimal styling */ /* Repository list items - minimal styling */
.dashboard .repo-owner-name-list li { .dashboard .repo-owner-name-list li {
border-bottom: 1px solid rgba(140, 169, 255, 0.08) !important; border-bottom: none !important;
align-items: center !important; padding: 0.5rem 0 !important;
min-height: 2.5rem !important;
} }
.dashboard .repo-owner-name-list li:hover { .dashboard .repo-owner-name-list li:hover {
@@ -732,11 +739,23 @@
background: rgba(140, 169, 255, 0.08) !important; background: rgba(140, 169, 255, 0.08) !important;
} }
/* Fix alignment for CI status icons */ /* Put underline on the link only, not on the full li width */
.dashboard .repo-owner-name-list li .commit-status { .dashboard .repo-owner-name-list li .repo-list-link {
display: flex !important; border-bottom: 1px solid rgba(140, 169, 255, 0.08) !important;
padding-bottom: 0.5rem !important;
display: inline-flex !important;
align-items: center !important; align-items: center !important;
margin-left: auto !important; gap: 0.5rem !important;
width: auto !important;
}
.dashboard .repo-owner-name-list li .repo-list-link .repo-list-icon {
flex-shrink: 0 !important;
}
/* Remove border from CI status icon links */
.dashboard .repo-owner-name-list li > a:not(.repo-list-link) {
border-bottom: none !important;
} }
/* Activity feed - same clean style */ /* Activity feed - same clean style */
@@ -792,14 +811,43 @@
border-radius: 0.75rem 0.75rem 0 0 !important; border-radius: 0.75rem 0.75rem 0 0 !important;
} }
/* Code blocks in repository */ /* Code blocks and inline code in repository - ocean theme */
.repository .markdown pre,
.repository .markdown code,
.repository pre, .repository pre,
.repository code, .repository code {
background: rgba(170, 196, 245, 0.15) !important;
border: 1px solid rgba(140, 169, 255, 0.2) !important;
border-radius: 0.375rem !important;
color: #1e293b !important;
}
.repository .markdown pre {
padding: 1rem !important;
border-radius: 0.5rem !important;
}
.repository .markdown code {
padding: 0.125rem 0.375rem !important;
font-size: 0.875em !important;
}
/* Syntax highlighting adjustments for ocean theme */
.repository .markdown .chroma {
background: rgba(170, 196, 245, 0.15) !important;
border-radius: 0.5rem !important;
}
.repository .ui.attached.table { .repository .ui.attached.table {
background: rgba(255, 255, 255, 0.6) !important; background: rgba(255, 255, 255, 0.6) !important;
border: 1px solid rgba(140, 169, 255, 0.1) !important; border: 1px solid rgba(140, 169, 255, 0.1) !important;
} }
/* Hide markdown anchor links */
.repository .markdown a.anchor {
display: none !important;
}
/* ======================================== /* ========================================
DASHBOARD REPOSITORY SIDEBAR TABS FIX DASHBOARD REPOSITORY SIDEBAR TABS FIX
======================================== */ ======================================== */