- Add Route column to Traces & Taps table (diagram-based mapping, pending backend fix) - Make tap badges clickable to navigate to route's Taps tab - Add edit/save/cancel toolbar with design system Button components - Move Sampling Rate to last position in settings grid - Support ?tab= URL param on RouteDetail for direct tab navigation - Bump @cameleer/design-system to 0.1.15 (DetailPanel overlay + backdrop) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
144 lines
2.1 KiB
CSS
144 lines
2.1 KiB
CSS
.widePanel {
|
|
width: 520px !important;
|
|
}
|
|
|
|
.panelSection {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.panelSectionHeader {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.settingsGrid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
gap: 12px;
|
|
}
|
|
|
|
.field {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 3px;
|
|
}
|
|
|
|
.fieldLabel {
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.select {
|
|
padding: 4px 8px;
|
|
border: 1px solid var(--border-subtle);
|
|
border-radius: var(--radius-sm);
|
|
background: var(--bg-body);
|
|
color: var(--text-primary);
|
|
font-size: 11px;
|
|
font-family: var(--font-mono);
|
|
outline: none;
|
|
}
|
|
|
|
.select:focus {
|
|
border-color: var(--amber);
|
|
}
|
|
|
|
.toggleRow {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
font-size: 11px;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.sectionSummary {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
margin-bottom: 8px;
|
|
display: block;
|
|
}
|
|
|
|
.tapBadges {
|
|
display: flex;
|
|
gap: 4px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.hint {
|
|
color: var(--text-faint);
|
|
font-size: 11px;
|
|
}
|
|
|
|
.routeLabel {
|
|
font-size: 11px;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.tapBadgeLink {
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
cursor: pointer;
|
|
border-radius: var(--radius-sm);
|
|
transition: opacity 0.15s;
|
|
}
|
|
|
|
.tapBadgeLink:hover {
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.removeBtn {
|
|
background: none;
|
|
border: none;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
padding: 0 4px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.removeBtn:hover {
|
|
color: var(--error);
|
|
}
|
|
|
|
.panelToolbar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.panelMeta {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.panelActions {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.editBtn {
|
|
background: none;
|
|
border: none;
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
padding: 4px 6px;
|
|
border-radius: var(--radius-sm);
|
|
transition: color 0.15s;
|
|
}
|
|
|
|
.editBtn:hover {
|
|
color: var(--text-primary);
|
|
}
|
|
|