new stuff

This commit is contained in:
2025-07-19 16:38:32 -06:00
parent 46e39e8c36
commit be49a92cc7
32 changed files with 150 additions and 137 deletions

View File

@@ -914,7 +914,7 @@ body {
border: 1px solid #ddd;
border-radius: 4px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
z-index: 1000;
z-index: 9000;
overflow: hidden;
display: flex;
flex-direction: column;
@@ -1015,10 +1015,10 @@ body {
/* Mobile responsiveness */
@media (max-width: 768px) {
.docs-search-container {
display: block; /* Show on mobile */
display: block;
width: 100%;
margin: 10px 0;
padding: 0 10px;
padding: 0 0px; /* Remove side padding for edge-to-edge */
}
.docs-search-wrapper {
width: 100%;
@@ -1029,11 +1029,21 @@ body {
padding: 0.75rem 2.5rem 0.75rem 1rem;
}
.docs-search-results {
left: 0;
right: 0;
width: 100vw;
max-width: 100vw;
min-width: 0;
position: fixed !important;
top: var(--header-height, 60px); /* Just below header */
left: 0 !important;
right: 0 !important;
width: 100vw !important;
max-width: 100vw !important;
min-width: 0 !important;
border-radius: 0 0 12px 12px;
z-index: 9000;
margin: 0;
box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.docs-search-results-list {
max-height: 50vh;
overflow-y: auto;
}
}