Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,6 @@ const ModeledPercentage = styled.span`
color: var(--vscode-descriptionForeground);
`;

const TitleButton = styled(VSCodeButton)`
background-color: transparent;

&:hover {
pointer: cursor;
background-color: var(--vscode-button-secondaryBackground);
}
`;

const ButtonsContainer = styled.div`
display: flex;
gap: 0.4em;
Expand Down Expand Up @@ -142,14 +133,14 @@ export const LibraryRow = ({
</ModeledPercentage>
{hasUnsavedChanges ? <VSCodeTag>UNSAVED</VSCodeTag> : null}
</NameContainer>
<TitleButton onClick={handleModelWithAI}>
<VSCodeButton appearance="icon" onClick={handleModelWithAI}>
<Codicon name="lightbulb-autofix" label="Model with AI" />
&nbsp;Model with AI
</TitleButton>
<TitleButton onClick={handleModelFromSource}>
</VSCodeButton>
<VSCodeButton appearance="icon" onClick={handleModelFromSource}>
<Codicon name="code" label="Model from source" />
&nbsp;Model from source
</TitleButton>
</VSCodeButton>
</TitleContainer>
{isExpanded && (
<>
Expand Down