|
|
|
@@ -118,7 +118,17 @@
|
|
|
|
|
.ui.card,
|
|
|
|
|
.ui.message,
|
|
|
|
|
.repository-summary,
|
|
|
|
|
.activity-container {
|
|
|
|
|
.activity-container,
|
|
|
|
|
.home,
|
|
|
|
|
.dashboard,
|
|
|
|
|
.user.dashboard,
|
|
|
|
|
.user.home,
|
|
|
|
|
.dashboard-navbar,
|
|
|
|
|
.feeds,
|
|
|
|
|
.feed,
|
|
|
|
|
.news,
|
|
|
|
|
.activity,
|
|
|
|
|
.heatmap {
|
|
|
|
|
color: var(--witch-purple);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -135,6 +145,26 @@
|
|
|
|
|
color: var(--witch-purple);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dashboard and Home specific elements */
|
|
|
|
|
.dashboard .ui.header,
|
|
|
|
|
.home .ui.header,
|
|
|
|
|
.dashboard .description,
|
|
|
|
|
.home .description,
|
|
|
|
|
.dashboard-repos .name,
|
|
|
|
|
.dashboard-orgs .name,
|
|
|
|
|
.feeds .title,
|
|
|
|
|
.feeds .content,
|
|
|
|
|
.activity-bar-graph,
|
|
|
|
|
.activity-bar-graph text,
|
|
|
|
|
.activity-bar-graph .activity-bar-graph-label,
|
|
|
|
|
.contribution-calendar text,
|
|
|
|
|
.heatmap-day,
|
|
|
|
|
.milestone-list .content,
|
|
|
|
|
.issue-list .title,
|
|
|
|
|
.issue-list .desc {
|
|
|
|
|
color: var(--witch-purple) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Table cells - but not in code views */
|
|
|
|
|
td:not(.lines-code td):not(.lines-num td),
|
|
|
|
|
th:not(.lines-code th) {
|
|
|
|
@@ -151,6 +181,11 @@
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.button
|
|
|
|
|
{
|
|
|
|
|
color:var(--witch-moon) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, .ui.huge.header {
|
|
|
|
|
text-shadow: 2px 2px 0px var(--witch-rose),
|
|
|
|
|
3px 3px 6px rgba(168, 87, 126, 0.3);
|
|
|
|
@@ -193,14 +228,48 @@
|
|
|
|
|
/* Main Content - with margins for fixed nav/footer */
|
|
|
|
|
body {
|
|
|
|
|
padding-top: 52px !important;
|
|
|
|
|
padding-bottom: 75px !important;
|
|
|
|
|
padding-bottom: 120px !important; /* Extra padding for footer clearance */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-content, .home, .full.height {
|
|
|
|
|
.page-content, .full.height {
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
padding-top: 10px !important;
|
|
|
|
|
padding-bottom: 10px !important;
|
|
|
|
|
min-height: calc(100vh - 145px) !important;
|
|
|
|
|
margin-bottom: 150px !important; /* Clear the footer with extra space */
|
|
|
|
|
min-height: calc(100vh - 127px) !important; /* 52px top + 75px footer */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Home page with custom hero section */
|
|
|
|
|
.page-content.home {
|
|
|
|
|
background: rgba(255, 255, 255, 0.85) !important;
|
|
|
|
|
backdrop-filter: blur(10px) !important;
|
|
|
|
|
border-radius: 15px !important;
|
|
|
|
|
margin: 20px 20px 150px 20px !important; /* Large bottom margin to clear footer */
|
|
|
|
|
padding: 30px 30px 30px 30px !important; /* No bottom padding extension */
|
|
|
|
|
box-shadow: 0 0 50px rgba(168, 87, 126, 0.15) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Home page inner content wrapper */
|
|
|
|
|
.page-content.home .tw-mb-8,
|
|
|
|
|
.page-content.home > div:first-child {
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
margin-bottom: 30px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure last element in home page has spacing */
|
|
|
|
|
.page-content.home > div:last-child,
|
|
|
|
|
.page-content.home .tw-px-8:last-child {
|
|
|
|
|
margin-bottom: 60px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dashboard page wrapper */
|
|
|
|
|
.page-content.dashboard,
|
|
|
|
|
.page-content.user.dashboard {
|
|
|
|
|
background: rgba(255, 255, 255, 0.85) !important;
|
|
|
|
|
backdrop-filter: blur(10px) !important;
|
|
|
|
|
border-radius: 15px !important;
|
|
|
|
|
margin: 20px 20px 150px 20px !important; /* Large bottom margin to clear footer */
|
|
|
|
|
padding: 30px 30px 30px 30px !important; /* No bottom padding extension */
|
|
|
|
|
box-shadow: 0 0 50px rgba(168, 87, 126, 0.15) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Main container backgrounds - TRANSLUCENT so background shows */
|
|
|
|
@@ -210,20 +279,81 @@
|
|
|
|
|
border-radius: 10px !important;
|
|
|
|
|
padding: 20px !important;
|
|
|
|
|
margin-top: 10px !important;
|
|
|
|
|
margin-bottom: 10px !important;
|
|
|
|
|
margin-bottom: 30px !important; /* Increased bottom margin */
|
|
|
|
|
box-shadow: 0 0 40px rgba(168, 87, 126, 0.15) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Last container on page needs extra space */
|
|
|
|
|
.ui.container:last-child {
|
|
|
|
|
margin-bottom: 50px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Grid columns should be transparent */
|
|
|
|
|
.ui.grid > .column, .ui.grid > .row > .column {
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dashboard and Home specific background fixes */
|
|
|
|
|
.dashboard .ui.container,
|
|
|
|
|
.home .ui.container,
|
|
|
|
|
.user.dashboard .ui.container {
|
|
|
|
|
background: rgba(255, 255, 255, 0.85) !important;
|
|
|
|
|
backdrop-filter: blur(10px) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dashboard main content area */
|
|
|
|
|
.user.dashboard .ui.container,
|
|
|
|
|
.user.dashboard > .ui.container > .ui.stackable.grid {
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dashboard content wrapper that needs background */
|
|
|
|
|
.user.dashboard .ui.container .column {
|
|
|
|
|
background: rgba(255, 255, 255, 0.9) !important;
|
|
|
|
|
backdrop-filter: blur(8px) !important;
|
|
|
|
|
border-radius: 10px !important;
|
|
|
|
|
padding: 20px !important;
|
|
|
|
|
margin: 5px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dashboard feed and activity sections */
|
|
|
|
|
.dashboard .feeds,
|
|
|
|
|
.home .news,
|
|
|
|
|
.dashboard .ui.segment,
|
|
|
|
|
.home .ui.segment,
|
|
|
|
|
.activity-feed-box {
|
|
|
|
|
background: rgba(255, 255, 255, 0.9) !important;
|
|
|
|
|
backdrop-filter: blur(8px) !important;
|
|
|
|
|
border-radius: 10px !important;
|
|
|
|
|
padding: 15px !important;
|
|
|
|
|
margin: 10px 0 !important;
|
|
|
|
|
box-shadow: 0 0 20px rgba(168, 87, 126, 0.1) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Repository/user pages */
|
|
|
|
|
.repository, .user {
|
|
|
|
|
background: transparent !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dashboard and Home main wrappers need backgrounds */
|
|
|
|
|
.dashboard, .home,
|
|
|
|
|
.user.dashboard > .ui.container,
|
|
|
|
|
.dashboard > .ui.container {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create background containers for dashboard/home */
|
|
|
|
|
.dashboard > .ui.container > .ui.grid,
|
|
|
|
|
.home > .ui.container > .ui.grid,
|
|
|
|
|
.dashboard .column.fluid,
|
|
|
|
|
.home .column.fluid {
|
|
|
|
|
background: rgba(255, 255, 255, 0.85) !important;
|
|
|
|
|
backdrop-filter: blur(10px) !important;
|
|
|
|
|
border-radius: 10px !important;
|
|
|
|
|
padding: 20px !important;
|
|
|
|
|
box-shadow: 0 0 30px rgba(168, 87, 126, 0.12) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Header/Navigation - FIXED at top */
|
|
|
|
|
#navbar, .ui.top.secondary.menu.navbar {
|
|
|
|
|
position: fixed !important;
|
|
|
|
@@ -258,6 +388,33 @@
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Special styling for Discord link in nav */
|
|
|
|
|
#navbar .discord-link,
|
|
|
|
|
#navbar a[href*="discord"],
|
|
|
|
|
#navbar a[href*="chat.nhcarrigan.com"] {
|
|
|
|
|
background: rgba(212, 165, 199, 0.2) !important;
|
|
|
|
|
border-radius: 8px !important;
|
|
|
|
|
padding: 8px 16px !important;
|
|
|
|
|
margin: 0 5px !important;
|
|
|
|
|
transition: all 0.3s ease !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#navbar .discord-link:hover,
|
|
|
|
|
#navbar a[href*="discord"]:hover,
|
|
|
|
|
#navbar a[href*="chat.nhcarrigan.com"]:hover {
|
|
|
|
|
background: rgba(212, 165, 199, 0.5) !important;
|
|
|
|
|
transform: translateY(-1px) !important;
|
|
|
|
|
box-shadow: 0 2px 10px rgba(168, 87, 126, 0.3) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Discord icon if you use one */
|
|
|
|
|
#navbar .discord-link i,
|
|
|
|
|
#navbar a[href*="discord"] i,
|
|
|
|
|
#navbar a[href*="chat.nhcarrigan.com"] i {
|
|
|
|
|
color: var(--witch-lavender) !important;
|
|
|
|
|
margin-right: 5px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Repository header */
|
|
|
|
|
.repository.header {
|
|
|
|
|
background: linear-gradient(to right,
|
|
|
|
@@ -308,6 +465,20 @@
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dashboard specific cards and boxes */
|
|
|
|
|
.dashboard .ui.repository.list,
|
|
|
|
|
.dashboard .ui.user.list,
|
|
|
|
|
.dashboard .box,
|
|
|
|
|
.home .ui.repository.list,
|
|
|
|
|
.activity.tab,
|
|
|
|
|
.repositories.tab {
|
|
|
|
|
background: rgba(255, 255, 255, 0.9) !important;
|
|
|
|
|
backdrop-filter: blur(8px) !important;
|
|
|
|
|
border-radius: 8px !important;
|
|
|
|
|
padding: 15px !important;
|
|
|
|
|
margin: 10px 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui.card:hover, .dashboard-card:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
box-shadow: 0 6px 25px rgba(168, 87, 126, 0.15),
|
|
|
|
@@ -790,6 +961,7 @@
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
footer a, .page-footer a {
|
|
|
|
|
color: var(--witch-mauve) !important;
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
@@ -938,3 +1110,182 @@
|
|
|
|
|
.ui.breadcrumb .divider {
|
|
|
|
|
color: var(--witch-mauve) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Home page hero section */
|
|
|
|
|
.page-content.home .center,
|
|
|
|
|
.page-content.home .hero {
|
|
|
|
|
color: var(--witch-purple) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-content.home .hero h1,
|
|
|
|
|
.page-content.home .hero h2 {
|
|
|
|
|
color: var(--witch-plum) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-content.home .hero p,
|
|
|
|
|
.page-content.home .hero li {
|
|
|
|
|
color: var(--witch-purple) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure all home page text is visible */
|
|
|
|
|
.page-content.home p,
|
|
|
|
|
.page-content.home ul,
|
|
|
|
|
.page-content.home li,
|
|
|
|
|
.page-content.home h1,
|
|
|
|
|
.page-content.home h2 {
|
|
|
|
|
color: var(--witch-purple) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Home page content wrapper needs bottom spacing */
|
|
|
|
|
.page-content.home .tw-mb-8 {
|
|
|
|
|
margin-bottom: 60px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-content.home .center {
|
|
|
|
|
margin-bottom: 40px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-content.home .hero {
|
|
|
|
|
margin-bottom: 40px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure home page has minimum height and proper spacing */
|
|
|
|
|
.page-content.home {
|
|
|
|
|
min-height: calc(100vh - 127px) !important;
|
|
|
|
|
margin-bottom: 150px !important; /* Clear footer without internal padding */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Universal bottom spacing for all page content */
|
|
|
|
|
.page-content > *:last-child {
|
|
|
|
|
margin-bottom: 40px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure no content is hidden behind footer */
|
|
|
|
|
.page-content {
|
|
|
|
|
margin-bottom: 150px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Home page specific list spacing */
|
|
|
|
|
.page-content.home ul {
|
|
|
|
|
margin-bottom: 30px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-content.home ul:last-child {
|
|
|
|
|
margin-bottom: 60px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Force bottom clearance with pseudo-element */
|
|
|
|
|
.page-content::after {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
height: 100px;
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-content.home::after,
|
|
|
|
|
.page-content.dashboard::after {
|
|
|
|
|
height: 120px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tooltips and Hover Text */
|
|
|
|
|
.tooltip, .ui.tooltip, .ui.popup,
|
|
|
|
|
[data-tooltip]::after,
|
|
|
|
|
[data-tooltip]::before,
|
|
|
|
|
.tippy-box {
|
|
|
|
|
background: rgba(43, 27, 61, 0.95) !important;
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
border: 1px solid var(--witch-mauve) !important;
|
|
|
|
|
box-shadow: 0 4px 20px rgba(168, 87, 126, 0.3) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tooltip arrows */
|
|
|
|
|
.tooltip::before, .ui.tooltip::before,
|
|
|
|
|
.ui.popup::before,
|
|
|
|
|
.tippy-arrow {
|
|
|
|
|
background: rgba(43, 27, 61, 0.95) !important;
|
|
|
|
|
border-color: var(--witch-mauve) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure tooltip text is visible */
|
|
|
|
|
.tooltip *, .ui.tooltip *,
|
|
|
|
|
.ui.popup *, .tippy-content,
|
|
|
|
|
[data-tooltip]::after {
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hover states for elements with tooltips */
|
|
|
|
|
[data-tooltip]:hover::after,
|
|
|
|
|
[data-tooltip]:hover::before {
|
|
|
|
|
background: rgba(43, 27, 61, 0.95) !important;
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Title attributes on hover */
|
|
|
|
|
[title]:hover::after {
|
|
|
|
|
background: rgba(43, 27, 61, 0.95) !important;
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
padding: 6px 10px !important;
|
|
|
|
|
border-radius: 6px !important;
|
|
|
|
|
border: 1px solid var(--witch-mauve) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Semantic UI specific tooltip */
|
|
|
|
|
.ui.inverted.popup,
|
|
|
|
|
.ui.inverted.tooltip {
|
|
|
|
|
background: rgba(43, 27, 61, 0.98) !important;
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
box-shadow: 0 6px 25px rgba(168, 87, 126, 0.4) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ui.inverted.popup::before {
|
|
|
|
|
background: rgba(43, 27, 61, 0.98) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dropdown hover items should also be readable */
|
|
|
|
|
.ui.dropdown .menu .item:hover {
|
|
|
|
|
background: var(--witch-lavender) !important;
|
|
|
|
|
color: var(--witch-purple) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hover cards and info boxes */
|
|
|
|
|
.hover-card, .hover-box,
|
|
|
|
|
.user-card, .repo-card,
|
|
|
|
|
.hover-info, .info-popup {
|
|
|
|
|
background: rgba(255, 255, 255, 0.98) !important;
|
|
|
|
|
color: var(--witch-purple) !important;
|
|
|
|
|
border: 2px solid var(--witch-mauve) !important;
|
|
|
|
|
box-shadow: 0 8px 30px rgba(168, 87, 126, 0.3) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hover-card *, .hover-box *,
|
|
|
|
|
.user-card *, .repo-card * {
|
|
|
|
|
color: var(--witch-purple) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hover-card a, .hover-box a,
|
|
|
|
|
.user-card a, .repo-card a {
|
|
|
|
|
color: var(--witch-rose) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Gitea specific tooltips */
|
|
|
|
|
.tippy-box[data-theme="tooltip"] {
|
|
|
|
|
background: rgba(43, 27, 61, 0.95) !important;
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tippy-box[data-theme="tooltip"] .tippy-content {
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Activity heatmap tooltips */
|
|
|
|
|
.activity-heatmap .tooltip,
|
|
|
|
|
.heatmap .tooltip,
|
|
|
|
|
.contribution-tooltip {
|
|
|
|
|
background: rgba(43, 27, 61, 0.95) !important;
|
|
|
|
|
color: var(--witch-moon) !important;
|
|
|
|
|
border: 1px solid var(--witch-rose) !important;
|
|
|
|
|
padding: 8px 12px !important;
|
|
|
|
|
border-radius: 6px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Footer dropdown styling removed - no longer needed */
|