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 {
background: #0f172a;
color: #cbd5f5;
background: linear-gradient(to bottom, rgba(170, 196, 245, 0.08), rgba(140, 169, 255, 0.15));
color: #1e293b;
padding: 4rem 0 2.5rem;
margin-top: 4rem;
border-top: 1px solid rgba(140, 169, 255, 0.2);
}
.custom-footer .footer-inner {
@@ -545,13 +546,13 @@
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1rem;
color: #38bdf8;
color: #8CA9FF;
}
.custom-footer p,
.custom-footer li,
.custom-footer a {
color: rgba(226, 232, 240, 0.8);
color: #64748b;
}
.custom-footer a {
@@ -560,7 +561,7 @@
}
.custom-footer a:hover {
color: #f8fafc;
color: #8CA9FF;
transform: translateX(3px);
}
@@ -573,7 +574,7 @@
}
.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;
max-width: 1100px;
}
@@ -600,24 +601,31 @@
width: 2.5rem;
height: 2.5rem;
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 {
background: transparent;
border-top: none;
color: rgba(148, 163, 184, 0.8);
color: #64748b;
margin: 0 auto 2rem;
max-width: 1100px;
padding: 0 1.5rem;
}
.page-footer a {
color: rgba(203, 213, 225, 0.9);
color: #64748b;
}
.page-footer a:hover {
color: #f8fafc;
color: #8CA9FF;
}
.page-footer .left-links,
@@ -719,9 +727,8 @@
/* Repository list items - minimal styling */
.dashboard .repo-owner-name-list li {
border-bottom: 1px solid rgba(140, 169, 255, 0.08) !important;
align-items: center !important;
min-height: 2.5rem !important;
border-bottom: none !important;
padding: 0.5rem 0 !important;
}
.dashboard .repo-owner-name-list li:hover {
@@ -732,11 +739,23 @@
background: rgba(140, 169, 255, 0.08) !important;
}
/* Fix alignment for CI status icons */
.dashboard .repo-owner-name-list li .commit-status {
display: flex !important;
/* Put underline on the link only, not on the full li width */
.dashboard .repo-owner-name-list li .repo-list-link {
border-bottom: 1px solid rgba(140, 169, 255, 0.08) !important;
padding-bottom: 0.5rem !important;
display: inline-flex !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 */
@@ -792,14 +811,43 @@
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 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 {
background: rgba(255, 255, 255, 0.6) !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
======================================== */