Skip to content
Open
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
4 changes: 3 additions & 1 deletion src/renderer/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5921,7 +5921,9 @@ body.model-not-configured .main-content { flex-direction: column; }
.chat-msg-produced.is-expanded {
max-height: 168px;
overflow-y: auto;
overscroll-behavior: contain;
/* Let wheel input reach the conversation history when this footer does not
overflow or has reached a scroll boundary. */
overscroll-behavior: auto;
padding-right: 2px;
scrollbar-gutter: stable;
}
Expand Down
1 change: 1 addition & 0 deletions test/renderer/conversation-produced-chips.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ describe('conversation produced chips', () => {
expect(styleSource).toContain('.chat-msg-produced.is-expanded');
expect(styleSource).toContain('max-height: 168px;');
expect(styleSource).toContain('overflow-y: auto;');
expect(styleSource).toContain('overscroll-behavior: auto;');
});

it('dedupes same-basename chips to the more specific final path', () => {
Expand Down