Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions documentation/docs/guides/smart-context-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,6 @@ export GOOSE_CONTEXT_STRATEGY=clear # Automatically clear session
export GOOSE_CONTEXT_STRATEGY=prompt # Always prompt user (default)
```

Or configure it permanently:
```bash
goose configure set GOOSE_CONTEXT_STRATEGY summarize
```

**Default behavior:**
- **Interactive mode**: Prompts user to choose (equivalent to `prompt`)
- **Headless mode** (`goose run`): Automatically summarizes (equivalent to `summarize`)
Expand Down
44 changes: 44 additions & 0 deletions documentation/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,17 @@ html[data-theme="light"] .hide-in-light {
border-bottom: 1px solid var(--border-divider);
}

/* Smooth transitions for navbar items */
.navbar__item {
display: flex;
align-items: center;
transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar__toggle {
transition: opacity 0.3s ease, transform 0.3s ease;
opacity: 0;
transform: scale(0.8);
}

/* Dropdown styles */
Expand All @@ -329,6 +337,42 @@ html[data-theme="light"] .hide-in-light {
margin-left: 8px !important;
}

/* Force hamburger menu to appear earlier to prevent navbar overlap with smooth transitions */
@media (max-width: 1350px) {
.navbar__item {
opacity: 0;
transform: translateX(-10px);
pointer-events: none;
/* Use visibility instead of display for smoother transitions */
visibility: hidden;
}

.navbar__toggle {
opacity: 1 !important;
transform: scale(1) !important;
display: inherit !important;
}

.navbar-sidebar {
display: block;
}
}

/* Ensure navbar items are visible above the breakpoint */
@media (min-width: 1351px) {
.navbar__item {
opacity: 1;
transform: translateX(0);
pointer-events: auto;
visibility: visible;
}

.navbar__toggle {
opacity: 0;
transform: scale(0.8);
}
}

.carousel-image {
width: 100%; /* Make the image fill the width */
object-fit: cover; /* Ensure the image covers the area while maintaining aspect ratio */
Expand Down