AX Agent 작업 요약 팝업 카드 밀도 추가 축소
Some checks failed
Release Gate / gate (push) Has been cancelled

- 작업 요약 액션 버튼 규격을 더 작게 낮추고 권한/훅/백그라운드 카드 패딩과 마진을 줄여 상태 패널 세로 길이를 완화함

- 최근 권한, 훅, 백그라운드 작업 표시 개수를 줄여 Cowork/Code 상태 요약이 긴 대시보드처럼 커지지 않도록 조정함

- README와 DEVELOPMENT 문서에 2026-04-05 14:36 (KST) 기준 작업 이력을 반영하고 Release 빌드 경고 0 오류 0을 확인함
This commit is contained in:
2026-04-05 13:24:51 +09:00
parent 88a21ead92
commit 2d7ede357e
3 changed files with 24 additions and 20 deletions

View File

@@ -21375,10 +21375,10 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
var button = new Button
{
Content = label,
FontSize = 10.5,
MinHeight = 28,
Padding = new Thickness(9, 4, 9, 4),
Margin = trailingMargin ? new Thickness(0, 0, 6, 0) : new Thickness(0),
FontSize = 9.5,
MinHeight = 24,
Padding = new Thickness(8, 3, 8, 3),
Margin = trailingMargin ? new Thickness(0, 0, 5, 0) : new Thickness(0),
Background = BrushFromHex(bg),
BorderBrush = BrushFromHex(border),
BorderThickness = new Thickness(1),
@@ -21523,8 +21523,8 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
BorderBrush = hook.Success ? BrushFromHex("#E2E8F0") : BrushFromHex("#FECACA"),
BorderThickness = new Thickness(1),
CornerRadius = new CornerRadius(8),
Padding = new Thickness(10, 7, 10, 7),
Margin = new Thickness(8, 0, 8, 6),
Padding = new Thickness(9, 6, 9, 6),
Margin = new Thickness(8, 0, 8, 5),
Child = hookCardStack
};
}
@@ -21598,8 +21598,8 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
BorderBrush = BrushFromHex("#BFDBFE"),
BorderThickness = new Thickness(1),
CornerRadius = new CornerRadius(8),
Padding = new Thickness(10, 7, 10, 7),
Margin = new Thickness(8, 0, 8, 8),
Padding = new Thickness(9, 6, 9, 6),
Margin = new Thickness(8, 0, 8, 6),
Child = activeBackgroundStack
};
}
@@ -21696,8 +21696,8 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
: BrushFromHex("#E2E8F0"),
BorderThickness = new Thickness(1),
CornerRadius = new CornerRadius(8),
Padding = new Thickness(10, 7, 10, 7),
Margin = new Thickness(8, 0, 8, 6),
Padding = new Thickness(9, 6, 9, 6),
Margin = new Thickness(8, 0, 8, 5),
Child = jobCardStack
};
}
@@ -21781,15 +21781,15 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
BorderBrush = border,
BorderThickness = new Thickness(1),
CornerRadius = new CornerRadius(10),
Padding = new Thickness(10, 8, 10, 8),
Margin = new Thickness(8, 0, 8, 8),
Padding = new Thickness(9, 7, 9, 7),
Margin = new Thickness(8, 0, 8, 6),
Child = content,
});
}
private void AddTaskSummaryPermissionHistorySection(StackPanel panel)
{
var recentPermissions = _appState.GetRecentPermissionEvents(4);
var recentPermissions = _appState.GetRecentPermissionEvents(2);
if (recentPermissions.Count == 0)
return;
@@ -21840,8 +21840,8 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
BorderBrush = statusBorder,
BorderThickness = new Thickness(1),
CornerRadius = new CornerRadius(8),
Padding = new Thickness(10, 7, 10, 7),
Margin = new Thickness(8, 0, 8, 6),
Padding = new Thickness(9, 6, 9, 6),
Margin = new Thickness(8, 0, 8, 5),
Child = card,
});
}
@@ -21849,7 +21849,7 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
private void AddTaskSummaryHookSection(StackPanel panel)
{
var recentHooks = _appState.GetRecentHookEvents(5);
var recentHooks = _appState.GetRecentHookEvents(3);
if (recentHooks.Count == 0)
return;
@@ -21868,8 +21868,8 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
private void AddTaskSummaryBackgroundSection(StackPanel panel)
{
var activeBackgroundJobs = _appState.GetActiveBackgroundJobs(3);
var recentBackgroundJobs = _appState.GetRecentBackgroundJobs(4);
var activeBackgroundJobs = _appState.GetActiveBackgroundJobs(2);
var recentBackgroundJobs = _appState.GetRecentBackgroundJobs(2);
var activeBackgroundCount = _appState.GetBackgroundJobSummary().ActiveCount;
if (activeBackgroundCount > 0)