66 lines
870 B
CSS
66 lines
870 B
CSS
|
|
/* index.tsx */
|
||
|
|
.titleRow {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.titleJar {
|
||
|
|
font-family: monospace;
|
||
|
|
font-size: 13px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.statusPill {
|
||
|
|
font-size: 11px;
|
||
|
|
padding: 2px 8px;
|
||
|
|
border-radius: 3px;
|
||
|
|
background: var(--bg-inset);
|
||
|
|
}
|
||
|
|
|
||
|
|
.metaLine {
|
||
|
|
font-size: 12px;
|
||
|
|
color: var(--text-muted);
|
||
|
|
line-height: 1.5;
|
||
|
|
margin-bottom: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tabContent {
|
||
|
|
margin-top: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footerRow {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
gap: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.footerHint {
|
||
|
|
font-size: 12px;
|
||
|
|
color: var(--text-muted);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* LogsPanel.tsx */
|
||
|
|
.filterBar {
|
||
|
|
display: flex;
|
||
|
|
gap: 8px;
|
||
|
|
align-items: center;
|
||
|
|
padding: 8px 0;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.emptyState {
|
||
|
|
padding: 16px;
|
||
|
|
color: var(--text-muted);
|
||
|
|
}
|
||
|
|
|
||
|
|
.logRow {
|
||
|
|
font-family: monospace;
|
||
|
|
font-size: 11px;
|
||
|
|
padding: 2px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.logTimestamp {
|
||
|
|
color: var(--text-muted);
|
||
|
|
}
|