ext(affordances): wireHostnameChip with debounced URL parse

This commit is contained in:
adlee-was-taken
2026-05-01 18:06:15 -04:00
parent 8eff96da9d
commit 61dbb4d3a3
4 changed files with 159 additions and 1 deletions

View File

@@ -1362,3 +1362,26 @@ textarea {
opacity: 0.4;
cursor: not-allowed;
}
.hostname-chip-row {
display: flex;
align-items: center;
gap: 6px;
margin-top: 4px;
font-size: 11px;
color: var(--text-muted);
}
.hostname-chip {
display: inline-flex;
align-items: center;
justify-content: center;
width: 18px;
height: 18px;
border-radius: 3px;
font-size: 10px;
font-weight: 600;
color: #0c1118;
}
.hostname-text {
font-family: ui-monospace, monospace;
}