Update: Ohli24 Queue fixes & Zendriver Daemon stability improvement

This commit is contained in:
2026-01-06 19:25:59 +09:00
parent 883b8d172b
commit 254a387cbd
12 changed files with 475 additions and 145 deletions

View File

@@ -21,18 +21,37 @@ body {
color: #ecfdf5;
}
/* Linkkf Specific Nav-Pills Overrides */
/* Shared Nav-Pills Styles */
ul.nav.nav-pills.bg-light {
background-color: rgba(6, 78, 59, 0.4) !important;
border: 1px solid rgba(16, 185, 129, 0.1) !important;
backdrop-filter: blur(10px);
border: 1px solid rgba(16, 185, 129, 0.1);
border-radius: 50rem !important;
padding: 6px !important;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
display: inline-flex !important;
gap: 4px;
margin-bottom: 20px;
}
ul.nav.nav-pills .nav-link {
color: #d1fae5 !important;
font-weight: 600 !important;
padding: 8px 20px !important;
border-radius: 50rem !important;
transition: all 0.3s ease !important;
border: 1px solid transparent !important;
}
ul.nav.nav-pills .nav-link:hover {
background-color: rgba(16, 185, 129, 0.1) !important;
color: #fff !important;
transform: translateY(-1px);
}
ul.nav.nav-pills .nav-link.active {
background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
color: #fff !important;
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}
@@ -51,3 +70,12 @@ ul.nav.nav-pills .nav-link.active {
.linkkf-common-wrapper.visible {
opacity: 1;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
ul.nav.nav-pills.bg-light {
width: 100% !important;
justify-content: center;
flex-wrap: wrap;
}
}

View File

@@ -60,6 +60,12 @@
padding-top: 5px !important;
overflow-x: hidden !important;
}
/* Compact Navbar */
.navbar {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
/* Global Navigation Pills Fix & Premium Styling */
ul.nav.nav-pills.bg-light {
@@ -73,18 +79,22 @@
flex-wrap: wrap; /* allow wrap on small screens */
justify-content: center;
width: auto !important; /* Prevent full width */
margin-bottom: 5px; /* Reduced for modularity */
margin-top: 50px !important; /* Mobile spacing - fallback for first menu */
margin-top: 2px !important; /* Reduced for modularity */
}
/* Override for the fallback above to be tighter */
ul.nav.nav-pills.bg-light {
margin-top: 4px !important;
}
/* Tighten spacing between 2nd and 3rd level menus */
#menu_module_div ul.nav.nav-pills.bg-light {
margin-bottom: 5px !important;
margin-bottom: 2px !important;
}
#menu_page_div ul.nav.nav-pills.bg-light {
margin-top: 0 !important;
margin-bottom: 20px !important;
margin-top: -4px !important;
margin-bottom: 12px !important;
}
ul.nav.nav-pills .nav-item {
@@ -93,7 +103,7 @@
ul.nav.nav-pills .nav-link {
border-radius: 50rem !important;
padding: 8px 20px !important;
padding: 6px 16px !important;
color: #94a3b8 !important; /* Muted text */
font-weight: 600;
transition: all 0.3s ease;
@@ -130,3 +140,23 @@
border-radius: 12px !important;
}
}
/* Global Navigation Spacing Adjustments (Plugin Specific) */
#menu_module_div {
padding-top: 52px !important; /* Adjusted for compact navbar (~52px) */
margin-bottom: 0 !important;
}
#menu_module_div .nav-pills,
#menu_page_div .nav-pills {
margin-top: 0 !important;
margin-bottom: 2px !important;
}
/* Tighten main container for desktop */
@media (min-width: 769px) {
#main_container {
margin-top: 0 !important;
padding-top: 0 !important;
}
}

View File

@@ -110,7 +110,7 @@ ul.nav.nav-pills.bg-light {
flex-wrap: wrap;
justify-content: center;
width: auto !important;
margin-bottom: 5px; /* Default for modular stacking */
margin-bottom: 2px; /* Pull secondary pills or content closer */
}
ul.nav.nav-pills .nav-link {
@@ -513,7 +513,7 @@ ul.nav.nav-pills .nav-link.active {
font-weight: 800;
}
.ohli24-queue-page .queue-item { flex-direction: column; align-items: stretch; }
.ohli24-queue-page ul.nav.nav-pills.bg-light { margin-top: 40px !important; }
.ohli24-queue-page ul.nav.nav-pills.bg-light { margin-top: 4px !important; }
/* Search Container Mobile Refinements */
.ohli24-list-page .search-container {