feat: implement page components for ShadowRun and Models features
Add 4 Vue 3 pages with KBX adapter integration: Pages: - ShadowRunList.vue (252+ day validation search & grid) - ShadowRunDetail.vue (metrics breakdown, phase analysis) - ModelsList.vue (lifecycle management, quick filters) - ModelDetail.vue (activation requirements, configuration) Features: - Registry-driven screen definitions - KbxListPage + KbxDataGrid + KbxButton adapters - Mock data (replaced with TanStack Query in Task F) - Keyboard shortcuts (F3, Ctrl+N, Escape, Ctrl+E) - Responsive density-aware layout - Validation indicators (PBO, DSR, OOS thresholds) - Phase lifecycle visualization - Quick filter badges Implementation pattern: 1. useKbxRegistry() for screen access 2. Computed state for data state management 3. useRoute/useRouter for navigation 4. Slots for flexible layout composition Ready for Task F: TanStack Query API integration Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,421 @@
|
||||
<script setup lang="ts">
|
||||
import { ref, computed } from 'vue'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import KbxButton from '@shared/ui/adapter/KbxButton.vue'
|
||||
import { useKbxRegistry } from '@shared/composables/useKbxRegistry'
|
||||
|
||||
const route = useRoute()
|
||||
const router = useRouter()
|
||||
const registry = useKbxRegistry()
|
||||
|
||||
// Get screen definition from registry
|
||||
const screenDef = computed(() =>
|
||||
registry.getScreen('model-ops.shadow-run.detail'),
|
||||
)
|
||||
|
||||
// Extract runId from route
|
||||
const runId = computed(() => route.params.runId as string)
|
||||
|
||||
// Mock run data (will be replaced with TanStack Query)
|
||||
const run = ref({
|
||||
runId: '00000000-0000-0000-0000-000000000001',
|
||||
modelName: 'Alpha Strategy',
|
||||
windowStart: '2024-01-02',
|
||||
windowEnd: '2024-09-10',
|
||||
tradingDays: 187,
|
||||
totalReturn: 12.5,
|
||||
sharpeRatio: 1.8,
|
||||
pbo: 15.2,
|
||||
dsr: 96.5,
|
||||
oos: 1.8,
|
||||
maxDrawdown: -8.3,
|
||||
winRate: 58.5,
|
||||
profitFactor: 2.1,
|
||||
phases: {
|
||||
bull: { return: 18.2, sharpe: 2.3, trades: 45 },
|
||||
bear: { return: -2.1, sharpe: -0.5, trades: 28 },
|
||||
sideways: { return: 5.3, sharpe: 1.1, trades: 32 },
|
||||
},
|
||||
status: 'completed',
|
||||
createdAt: '2026-08-01',
|
||||
})
|
||||
|
||||
const isLoading = ref(false)
|
||||
const error = ref<string | null>(null)
|
||||
|
||||
// Validation indicators
|
||||
const validationStatus = computed(() => {
|
||||
const pboOk = run.value.pbo <= 20
|
||||
const dsrOk = run.value.dsr >= 95
|
||||
const oosOk = run.value.oos <= 2.5
|
||||
|
||||
if (pboOk && dsrOk && oosOk) return 'valid'
|
||||
if (pboOk || dsrOk || oosOk) return 'warning'
|
||||
return 'invalid'
|
||||
})
|
||||
|
||||
const validationMessage = computed(() => {
|
||||
const checks = [
|
||||
{ ok: run.value.pbo <= 20, msg: `PBO ${run.value.pbo}% ${run.value.pbo <= 20 ? '✓' : '✗'}` },
|
||||
{ ok: run.value.dsr >= 95, msg: `DSR ${run.value.dsr}% ${run.value.dsr >= 95 ? '✓' : '✗'}` },
|
||||
{ ok: run.value.oos <= 2.5, msg: `OOS ${run.value.oos}% ${run.value.oos <= 2.5 ? '✓' : '✗'}` },
|
||||
]
|
||||
return checks.map(c => c.msg).join(' | ')
|
||||
})
|
||||
|
||||
// Actions
|
||||
const handleBack = () => {
|
||||
router.push('/model-ops/shadow-runs')
|
||||
}
|
||||
|
||||
const handleExport = () => {
|
||||
console.log('Export run:', runId.value)
|
||||
}
|
||||
|
||||
const handleApprove = () => {
|
||||
console.log('Approve run:', runId.value)
|
||||
}
|
||||
|
||||
// Keyboard shortcuts
|
||||
const handleKeydown = (e: KeyboardEvent) => {
|
||||
if (e.key === 'Escape') {
|
||||
handleBack()
|
||||
} else if (e.ctrlKey && e.key === 'e') {
|
||||
e.preventDefault()
|
||||
handleExport()
|
||||
}
|
||||
}
|
||||
|
||||
import { onMounted, onUnmounted } from 'vue'
|
||||
|
||||
onMounted(() => {
|
||||
window.addEventListener('keydown', handleKeydown)
|
||||
})
|
||||
|
||||
onUnmounted(() => {
|
||||
window.removeEventListener('keydown', handleKeydown)
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="shadow-run-detail">
|
||||
<!-- Header -->
|
||||
<header class="detail-header">
|
||||
<div>
|
||||
<h1>{{ run.modelName }}</h1>
|
||||
<p class="breadcrumb">
|
||||
<a href="/model-ops/shadow-runs" @click="handleBack">Shadow Runs</a>
|
||||
/ {{ run.modelName }}
|
||||
</p>
|
||||
</div>
|
||||
<div class="header-actions">
|
||||
<KbxButton
|
||||
:label="`Status: ${run.status}`"
|
||||
variant="default"
|
||||
disabled
|
||||
/>
|
||||
<KbxButton
|
||||
label="Export"
|
||||
variant="default"
|
||||
@click="handleExport"
|
||||
/>
|
||||
<KbxButton
|
||||
v-if="validationStatus === 'valid'"
|
||||
label="Approve"
|
||||
variant="primary"
|
||||
@click="handleApprove"
|
||||
/>
|
||||
<KbxButton
|
||||
label="Back"
|
||||
variant="default"
|
||||
@click="handleBack"
|
||||
/>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Validation Summary -->
|
||||
<section class="validation-summary" :class="`status-${validationStatus}`">
|
||||
<h2>Validation Summary</h2>
|
||||
<div class="validation-message">{{ validationMessage }}</div>
|
||||
<div class="overall-status">
|
||||
{{ validationStatus === 'valid' ? '✓ VALID' : validationStatus === 'warning' ? '⚠ WARNING' : '✗ INVALID' }}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Key Metrics -->
|
||||
<section class="metrics-grid">
|
||||
<div class="metric-card">
|
||||
<div class="metric-label">Total Return</div>
|
||||
<div class="metric-value" :class="{ positive: run.totalReturn > 0 }">
|
||||
{{ run.totalReturn > 0 ? '+' : '' }}{{ run.totalReturn }}%
|
||||
</div>
|
||||
</div>
|
||||
<div class="metric-card">
|
||||
<div class="metric-label">Sharpe Ratio</div>
|
||||
<div class="metric-value" :class="{ positive: run.sharpeRatio > 0 }">
|
||||
{{ run.sharpeRatio.toFixed(2) }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="metric-card">
|
||||
<div class="metric-label">Max Drawdown</div>
|
||||
<div class="metric-value negative">{{ run.maxDrawdown }}%</div>
|
||||
</div>
|
||||
<div class="metric-card">
|
||||
<div class="metric-label">Win Rate</div>
|
||||
<div class="metric-value">{{ run.winRate }}%</div>
|
||||
</div>
|
||||
<div class="metric-card">
|
||||
<div class="metric-label">Profit Factor</div>
|
||||
<div class="metric-value positive">{{ run.profitFactor }}</div>
|
||||
</div>
|
||||
<div class="metric-card">
|
||||
<div class="metric-label">PBO</div>
|
||||
<div class="metric-value" :class="{ ok: run.pbo <= 20 }">
|
||||
{{ run.pbo }}%
|
||||
</div>
|
||||
</div>
|
||||
<div class="metric-card">
|
||||
<div class="metric-label">DSR</div>
|
||||
<div class="metric-value" :class="{ ok: run.dsr >= 95 }">
|
||||
{{ run.dsr }}%
|
||||
</div>
|
||||
</div>
|
||||
<div class="metric-card">
|
||||
<div class="metric-label">OOS</div>
|
||||
<div class="metric-value" :class="{ ok: run.oos <= 2.5 }">
|
||||
{{ run.oos }}%
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Phase Breakdown -->
|
||||
<section class="phase-breakdown">
|
||||
<h2>Performance by Market Phase</h2>
|
||||
<div class="phase-grid">
|
||||
<div class="phase-card">
|
||||
<div class="phase-name">Bull Market</div>
|
||||
<div class="phase-metrics">
|
||||
<div>Return: <strong>{{ run.phases.bull.return }}%</strong></div>
|
||||
<div>Sharpe: <strong>{{ run.phases.bull.sharpe }}</strong></div>
|
||||
<div>Trades: <strong>{{ run.phases.bull.trades }}</strong></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="phase-card">
|
||||
<div class="phase-name">Bear Market</div>
|
||||
<div class="phase-metrics">
|
||||
<div>Return: <strong>{{ run.phases.bear.return }}%</strong></div>
|
||||
<div>Sharpe: <strong>{{ run.phases.bear.sharpe }}</strong></div>
|
||||
<div>Trades: <strong>{{ run.phases.bear.trades }}</strong></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="phase-card">
|
||||
<div class="phase-name">Sideways Market</div>
|
||||
<div class="phase-metrics">
|
||||
<div>Return: <strong>{{ run.phases.sideways.return }}%</strong></div>
|
||||
<div>Sharpe: <strong>{{ run.phases.sideways.sharpe }}</strong></div>
|
||||
<div>Trades: <strong>{{ run.phases.sideways.trades }}</strong></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Metadata -->
|
||||
<section class="metadata">
|
||||
<h3>Details</h3>
|
||||
<div class="metadata-grid">
|
||||
<div>
|
||||
<strong>Window Start:</strong>
|
||||
{{ run.windowStart }}
|
||||
</div>
|
||||
<div>
|
||||
<strong>Window End:</strong>
|
||||
{{ run.windowEnd }}
|
||||
</div>
|
||||
<div>
|
||||
<strong>Trading Days:</strong>
|
||||
{{ run.tradingDays }}
|
||||
</div>
|
||||
<div>
|
||||
<strong>Created:</strong>
|
||||
{{ run.createdAt }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.shadow-run-detail {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 24px;
|
||||
padding: 24px;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.detail-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
padding-bottom: 16px;
|
||||
}
|
||||
|
||||
.detail-header h1 {
|
||||
margin: 0;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
margin: 8px 0 0 0;
|
||||
color: #666;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.breadcrumb a {
|
||||
color: var(--kbx-color-primary, #3b82f6);
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.breadcrumb a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.header-actions {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.validation-summary {
|
||||
padding: 16px;
|
||||
border-radius: 8px;
|
||||
border-left: 4px solid #ccc;
|
||||
}
|
||||
|
||||
.validation-summary.status-valid {
|
||||
background: #f0fdf4;
|
||||
border-left-color: #10b981;
|
||||
}
|
||||
|
||||
.validation-summary.status-warning {
|
||||
background: #fffbeb;
|
||||
border-left-color: #f59e0b;
|
||||
}
|
||||
|
||||
.validation-summary.status-invalid {
|
||||
background: #fef2f2;
|
||||
border-left-color: #ef4444;
|
||||
}
|
||||
|
||||
.validation-summary h2 {
|
||||
margin: 0 0 12px 0;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.validation-message {
|
||||
font-size: 14px;
|
||||
margin-bottom: 8px;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.overall-status {
|
||||
font-weight: bold;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.metrics-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.metric-card {
|
||||
padding: 16px;
|
||||
background: #f9f9f9;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.metric-label {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
margin-bottom: 8px;
|
||||
text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.metric-value {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.metric-value.positive {
|
||||
color: #10b981;
|
||||
}
|
||||
|
||||
.metric-value.negative {
|
||||
color: #ef4444;
|
||||
}
|
||||
|
||||
.metric-value.ok {
|
||||
color: #10b981;
|
||||
}
|
||||
|
||||
.phase-breakdown {
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
.phase-breakdown h2 {
|
||||
font-size: 18px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.phase-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.phase-card {
|
||||
padding: 16px;
|
||||
background: #f9f9f9;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.phase-name {
|
||||
font-weight: bold;
|
||||
font-size: 16px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.phase-metrics {
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.metadata {
|
||||
border-top: 1px solid #e0e0e0;
|
||||
padding-top: 16px;
|
||||
}
|
||||
|
||||
.metadata h3 {
|
||||
margin: 0 0 12px 0;
|
||||
}
|
||||
|
||||
.metadata-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 12px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.metadata-grid div {
|
||||
padding: 8px;
|
||||
background: #f9f9f9;
|
||||
border-radius: 4px;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,261 @@
|
||||
<script setup lang="ts">
|
||||
import { ref, computed } from 'vue'
|
||||
import { useRoute, useRouter } from 'vue-router'
|
||||
import KbxListPage from '@shared/ui/adapter/KbxListPage.vue'
|
||||
import KbxDataGrid from '@shared/ui/adapter/KbxDataGrid.vue'
|
||||
import KbxButton from '@shared/ui/adapter/KbxButton.vue'
|
||||
import KbxInput from '@shared/ui/adapter/KbxInput.vue'
|
||||
import { useKbxRegistry } from '@shared/composables/useKbxRegistry'
|
||||
|
||||
const route = useRoute()
|
||||
const router = useRouter()
|
||||
const registry = useKbxRegistry()
|
||||
|
||||
// Get screen definition from registry
|
||||
const screenDef = computed(() =>
|
||||
registry.getScreen('model-ops.shadow-run.list'),
|
||||
)
|
||||
|
||||
// Search and filter state
|
||||
const searchQuery = ref('')
|
||||
const statusFilter = ref('all')
|
||||
const dateRangeStart = ref('')
|
||||
const dateRangeEnd = ref('')
|
||||
|
||||
// Pagination
|
||||
const currentPage = ref(1)
|
||||
const pageSize = ref(50)
|
||||
|
||||
// Mock data state (replace with actual API query)
|
||||
const isLoading = ref(false)
|
||||
const error = ref<string | null>(null)
|
||||
|
||||
const dataState = computed<'idle' | 'pending' | 'ready' | 'error' | 'empty'>(() => {
|
||||
if (isLoading.value) return 'pending'
|
||||
if (error.value) return 'error'
|
||||
if (shadowRuns.value.length === 0) return 'empty'
|
||||
return 'ready'
|
||||
})
|
||||
|
||||
// Mock shadow runs data (will be replaced with TanStack Query)
|
||||
const shadowRuns = ref([
|
||||
{
|
||||
runId: '00000000-0000-0000-0000-000000000001',
|
||||
modelName: 'Alpha Strategy',
|
||||
windowStart: '2024-01-02',
|
||||
windowEnd: '2024-09-10',
|
||||
tradingDays: 187,
|
||||
totalReturn: 12.5,
|
||||
sharpeRatio: 1.8,
|
||||
pbo: 15.2,
|
||||
dsr: 96.5,
|
||||
oos: 1.8,
|
||||
status: 'completed',
|
||||
createdAt: '2026-08-01',
|
||||
},
|
||||
{
|
||||
runId: '00000000-0000-0000-0000-000000000002',
|
||||
modelName: 'Beta Model',
|
||||
windowStart: '2024-01-02',
|
||||
windowEnd: '2024-09-10',
|
||||
tradingDays: 187,
|
||||
totalReturn: -2.3,
|
||||
sharpeRatio: -0.5,
|
||||
pbo: 42.1,
|
||||
dsr: 45.2,
|
||||
oos: 3.2,
|
||||
status: 'completed',
|
||||
createdAt: '2026-08-02',
|
||||
},
|
||||
])
|
||||
|
||||
// Quick filters
|
||||
const quickFilters = computed(() => [
|
||||
{ id: 'all', label: 'All', active: statusFilter.value === 'all', badge: shadowRuns.value.length },
|
||||
{ id: 'valid', label: 'Valid', active: statusFilter.value === 'valid', badge: 1 },
|
||||
{ id: 'review', label: 'Review', active: statusFilter.value === 'review', badge: 1 },
|
||||
])
|
||||
|
||||
// Summary items
|
||||
const summaryItems = computed(() => [
|
||||
{ label: 'Total Runs', value: shadowRuns.value.length },
|
||||
{ label: 'Valid', value: 1 },
|
||||
{ label: 'Avg Sharpe', value: '0.65' },
|
||||
])
|
||||
|
||||
// Actions
|
||||
const handleSearch = () => {
|
||||
isLoading.value = true
|
||||
setTimeout(() => {
|
||||
isLoading.value = false
|
||||
}, 500)
|
||||
}
|
||||
|
||||
const handleNewRun = () => {
|
||||
router.push('/model-ops/shadow-runs/new')
|
||||
}
|
||||
|
||||
const handleRowClick = (runId: string) => {
|
||||
router.push(`/model-ops/shadow-runs/${runId}`)
|
||||
}
|
||||
|
||||
const handleQuickFilter = (filterId: string) => {
|
||||
statusFilter.value = filterId
|
||||
}
|
||||
|
||||
const handleRefresh = () => {
|
||||
handleSearch()
|
||||
}
|
||||
|
||||
// Keyboard shortcuts
|
||||
const handleKeydown = (e: KeyboardEvent) => {
|
||||
if (e.key === 'F3') {
|
||||
e.preventDefault()
|
||||
handleSearch()
|
||||
} else if (e.ctrlKey && e.key === 'n') {
|
||||
e.preventDefault()
|
||||
handleNewRun()
|
||||
}
|
||||
}
|
||||
|
||||
// Lifecycle
|
||||
onMounted(() => {
|
||||
window.addEventListener('keydown', handleKeydown)
|
||||
})
|
||||
|
||||
onUnmounted(() => {
|
||||
window.removeEventListener('keydown', handleKeydown)
|
||||
})
|
||||
|
||||
import { onMounted, onUnmounted } from 'vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-if="screenDef" class="shadow-run-list">
|
||||
<KbxListPage
|
||||
:screen="screenDef"
|
||||
:data-state="dataState"
|
||||
:loading="isLoading"
|
||||
:summary-items="summaryItems"
|
||||
:quick-filters="quickFilters"
|
||||
@quick-filter="handleQuickFilter"
|
||||
@refresh="handleRefresh"
|
||||
>
|
||||
<!-- Header Actions -->
|
||||
<template #header-actions>
|
||||
<KbxButton
|
||||
label="New Shadow Run"
|
||||
variant="primary"
|
||||
@click="handleNewRun"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<!-- Search Panel -->
|
||||
<template #search>
|
||||
<div class="shadow-run-search">
|
||||
<div class="search-row">
|
||||
<KbxInput
|
||||
v-model="searchQuery"
|
||||
placeholder="Search by model name..."
|
||||
@keydown.enter="handleSearch"
|
||||
/>
|
||||
<KbxButton
|
||||
label="Search"
|
||||
variant="default"
|
||||
@click="handleSearch"
|
||||
/>
|
||||
</div>
|
||||
<div class="search-row">
|
||||
<KbxInput
|
||||
v-model="dateRangeStart"
|
||||
type="date"
|
||||
placeholder="Start Date"
|
||||
/>
|
||||
<KbxInput
|
||||
v-model="dateRangeEnd"
|
||||
type="date"
|
||||
placeholder="End Date"
|
||||
/>
|
||||
<select v-model="statusFilter" class="status-filter">
|
||||
<option value="all">All Status</option>
|
||||
<option value="completed">Completed</option>
|
||||
<option value="running">Running</option>
|
||||
<option value="failed">Failed</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- Content Area -->
|
||||
<template #content>
|
||||
<KbxDataGrid
|
||||
v-if="screenDef.grid"
|
||||
:columns="screenDef.grid.columnDefs"
|
||||
:rows="shadowRuns"
|
||||
:loading="isLoading"
|
||||
@row-click="(runId) => handleRowClick(runId)"
|
||||
/>
|
||||
</template>
|
||||
</KbxListPage>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.shadow-run-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.shadow-run-search {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
padding: 12px;
|
||||
background: var(--kbx-color-surface, #f5f5f5);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.search-row {
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.search-row input,
|
||||
.search-row select {
|
||||
height: var(--kbx-input-height, 34px);
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #d0d0d0;
|
||||
border-radius: 4px;
|
||||
font-size: var(--kbx-font-size, 14px);
|
||||
}
|
||||
|
||||
.status-filter {
|
||||
flex: 0 0 120px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
background: var(--kbx-color-primary, #3b82f6);
|
||||
color: white;
|
||||
padding: 2px 6px;
|
||||
border-radius: 12px;
|
||||
font-size: 11px;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
.state-spinner {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border: 3px solid #d0d0d0;
|
||||
border-top-color: var(--kbx-color-primary, #3b82f6);
|
||||
border-radius: 50%;
|
||||
animation: spin 0.8s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user