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: 5 additions & 0 deletions .changeset/remove-project-selection-indicator.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---

Remove the redundant selected-project indicator from Agent Manager.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const ProjectsSection: Component<ProjectsSectionProps> = (props) => (
{(id) => {
const project = () => props.projects.find((item) => item.id === id)!
return (
<div class="am-project" classList={{ "am-project-active": project().active }}>
<div class="am-project">
<div class="am-project-item" data-project-id={project().id}>
<button
class="am-project-main"
Expand Down
15 changes: 1 addition & 14 deletions packages/kilo-vscode/webview-ui/agent-manager/agent-manager.css
Original file line number Diff line number Diff line change
Expand Up @@ -241,25 +241,12 @@ html[data-theme="kilo-vscode"]
border-bottom: 0;
}

.am-project::before {
content: "";
position: absolute;
inset: 6px auto 6px 0;
width: 2px;
border-radius: 0 2px 2px 0;
background: transparent;
}

.am-project-active::before {
background: var(--border-interactive-base);
}

.am-project-item {
display: flex;
align-items: center;
gap: 2px;
min-height: 34px;
padding: 6px 8px 6px 12px;
padding: 6px 8px;
box-sizing: border-box;
}

Expand Down
Loading