nextcl skill

This commit is contained in:
oliver
2026-06-06 12:29:44 -03:00
parent 5e3fbda36b
commit b3f77f90af
2 changed files with 36 additions and 8 deletions
+25
View File
@@ -479,6 +479,31 @@ body::before {
color: var(--accent);
}
.agent-tab-add {
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border-radius: 50%;
border: 1px dashed var(--border);
background: transparent;
color: var(--text-muted);
font-size: 18px;
line-height: 1;
text-decoration: none;
flex-shrink: 0;
transition:
border-color 0.15s,
color 0.15s,
background 0.15s;
}
.agent-tab-add:hover {
border-color: var(--accent);
color: var(--accent);
background: var(--accent-dim);
}
.tabs-loading,
.tabs-empty,
.tabs-error {