i need to update the terminology of 'capabilities' to 'feature coverage' in the inspector ui and anywhere else its mentioned thats not in the actual api (#61)

This commit is contained in:
Nathan Flurry 2026-02-02 19:00:35 -08:00 committed by GitHub
parent cc37ed0458
commit 24de9e686c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 35 additions and 32 deletions

View file

@ -1676,14 +1676,14 @@
white-space: nowrap;
}
/* Capability Badges */
.capability-badges {
/* Feature Coverage Badges */
.feature-coverage-badges {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.capability-badge {
.feature-coverage-badge {
display: inline-flex;
align-items: center;
gap: 4px;
@ -1693,17 +1693,17 @@
font-weight: 500;
}
.capability-badge.enabled {
.feature-coverage-badge.enabled {
background: rgba(48, 209, 88, 0.12);
color: var(--success);
}
.capability-badge.disabled {
.feature-coverage-badge.disabled {
background: rgba(255, 255, 255, 0.04);
color: var(--muted-2);
}
.capability-badge svg {
.feature-coverage-badge svg {
flex-shrink: 0;
}