Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f468589
AIChat - NewMultiTabConversation introducing concept and delegate
petemill Sep 24, 2024
e4e626f
patch browser_window_features to add AssociatedMultiTabContent
petemill Sep 24, 2024
7a3f41a
Add button
fallaciousreasoning Sep 24, 2024
01c3eae
show multiple site info
fallaciousreasoning Sep 24, 2024
ba68fc4
Start new multi tab chat
fallaciousreasoning Sep 24, 2024
1e45463
Display tabs used
fallaciousreasoning Sep 24, 2024
1010b62
Make the button open full page chat
fallaciousreasoning Sep 24, 2024
cbb0f85
Hide bits of the UI which don't make sense on full page
fallaciousreasoning Sep 24, 2024
f0be420
MultiTabContent conversations can each be associated with different s…
petemill Sep 25, 2024
9c5757c
revert disable storybook and tests
petemill Sep 25, 2024
5d7a12c
Add tab picker
fallaciousreasoning Sep 25, 2024
b078a0b
Add a placeholder via Pete's idea
fallaciousreasoning Sep 25, 2024
1c8f995
Center conversation menu button
fallaciousreasoning Sep 25, 2024
7071f8f
favicon
petemill Sep 25, 2024
02cdf6b
Look more coherent
fallaciousreasoning Sep 25, 2024
486c1d6
Style icons nicely
fallaciousreasoning Sep 25, 2024
d754b9e
Clip text to one line
fallaciousreasoning Sep 25, 2024
6aaab72
Add favicon & pdf icon
fallaciousreasoning Sep 25, 2024
11fa7c8
don't exclude pdf
petemill Sep 25, 2024
3b86d0e
content extraction testing
petemill Sep 25, 2024
d736458
Ensure WebContents is loaded before attempting to fetch content, allo…
petemill Oct 1, 2024
7f20d2b
lint
petemill Oct 1, 2024
b878284
clear suggestions when changing associated tabs
petemill Oct 1, 2024
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
Prev Previous commit
Next Next commit
Look more coherent
  • Loading branch information
fallaciousreasoning committed Sep 25, 2024
commit 02cdf6bb898f79aa87db8f7c9b32b2b26baedf1b
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ export default function FullScreen() {
<Main />
</div>
{!!chat.associatedContentInfo?.detail?.multipleWebSiteInfo && <div className={styles.right}>
<div className={styles.headerSpacer}/>
<h3>Tabs used in this conversation</h3>
<SitePicker />
<ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,22 @@
min-width: 52px;
}

.headerSpacer {
height: 60px;
margin-bottom: 8px;
margin-left: -8px;
margin-right: -24px;

border-bottom: 1px solid var(--leo-color-divider-subtle);
}

.right {
padding: 8px;
padding-top: 68px;
margin-top: 6px;
margin-left: -8px;
padding-left: 8px;
padding-right: 24px;
width: 340px;
background: var(--leo-color-container-background);

& leo-dropdown {
width: 100%;
Expand Down