Fix module issues, fix styling, add conditions to when the background removal and edit controls are shown

This commit is contained in:
khalid@traclabs.com
2026-04-23 08:48:11 -05:00
parent 4d19363d58
commit 628a6765f4
32 changed files with 11663 additions and 287 deletions

View File

@@ -0,0 +1,69 @@
.layers-empty {
padding: 1rem;
text-align: center;
color: var(--text-muted);
font-size: 12px;
}
.layers-title {
margin: 0 0 0.75rem 0;
font-size: 12px;
font-weight: 600;
color: var(--text-secondary);
text-transform: uppercase;
}
.layers-list {
display: flex;
flex-direction: column;
gap: 4px;
}
.layers-item {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 0.75rem;
background: transparent;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
cursor: pointer;
}
.layers-item.selected {
background: var(--accent-bg);
border-color: var(--accent);
}
.layers-item-icon {
font-size: 14px;
}
.layers-item-name {
flex: 1;
font-size: 12px;
color: var(--text-primary);
font-weight: 400;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.layers-item-name.selected {
color: var(--accent);
font-weight: 600;
}
.layers-item-delete {
width: 24px;
height: 24px;
border: none;
border-radius: var(--radius-sm);
background: transparent;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
color: var(--text-muted);
}