refactor(ui): migrate all components to Warm Precision token names
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -251,7 +251,7 @@ export function BulkCommandWizard({ tenantId }: BulkCommandWizardProps) {
|
||||
|
||||
{/* Step 2: Enter Command */}
|
||||
{step === 2 && (
|
||||
<div className="rounded-lg border border-border bg-surface p-6 space-y-4">
|
||||
<div className="rounded-lg border border-border bg-panel p-6 space-y-4">
|
||||
<div>
|
||||
<h3 className="text-sm font-semibold">Enter RouterOS Command</h3>
|
||||
<p className="text-xs text-text-muted mt-0.5">
|
||||
@@ -294,7 +294,7 @@ export function BulkCommandWizard({ tenantId }: BulkCommandWizardProps) {
|
||||
|
||||
{/* Step 3: Review & Execute */}
|
||||
{step === 3 && (
|
||||
<div className="rounded-lg border border-border bg-surface p-6 space-y-4">
|
||||
<div className="rounded-lg border border-border bg-panel p-6 space-y-4">
|
||||
<div>
|
||||
<h3 className="text-sm font-semibold">Review & Execute</h3>
|
||||
<p className="text-xs text-text-muted mt-0.5">
|
||||
@@ -336,7 +336,7 @@ export function BulkCommandWizard({ tenantId }: BulkCommandWizardProps) {
|
||||
<div className="rounded-lg border border-border overflow-hidden">
|
||||
<table className="w-full text-sm">
|
||||
<thead>
|
||||
<tr className="border-b border-border bg-surface">
|
||||
<tr className="border-b border-border bg-panel">
|
||||
<th className="text-left px-3 py-2 text-xs font-medium text-text-muted">
|
||||
Device
|
||||
</th>
|
||||
@@ -615,7 +615,7 @@ function DeviceSelectionStep({
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="rounded-lg border border-border bg-surface p-6 space-y-4">
|
||||
<div className="rounded-lg border border-border bg-panel p-6 space-y-4">
|
||||
<div>
|
||||
<h3 className="text-sm font-semibold">Select Target Devices</h3>
|
||||
<p className="text-xs text-text-muted mt-0.5">
|
||||
@@ -641,7 +641,7 @@ function DeviceSelectionStep({
|
||||
className={cn(
|
||||
'flex-1 px-3 py-1.5 rounded text-xs font-medium transition-colors',
|
||||
mode === opt.value
|
||||
? 'bg-surface text-text-primary shadow-sm'
|
||||
? 'bg-panel text-text-primary shadow-sm'
|
||||
: 'text-text-muted hover:text-text-secondary',
|
||||
)}
|
||||
>
|
||||
@@ -699,7 +699,7 @@ function DeviceSelectionStep({
|
||||
<div className="rounded-md border border-border/50 overflow-hidden max-h-72 overflow-y-auto">
|
||||
<table className="w-full text-sm">
|
||||
<thead className="sticky top-0">
|
||||
<tr className="border-b border-border bg-surface">
|
||||
<tr className="border-b border-border bg-panel">
|
||||
<th className="px-3 py-2 w-8">
|
||||
<Checkbox
|
||||
checked={
|
||||
|
||||
Reference in New Issue
Block a user