토큰 카드와 전송 버튼 외곽선 정리
Some checks failed
Release Gate / gate (push) Has been cancelled

- AX Agent 입력 영역의 토큰 사용량 원형 카드 크기와 내부 링 두께를 재조정
- 토큰 카드 임계점 마커와 퍼센트 텍스트를 축소해 외곽선이 덜 답답하게 보이도록 보정
- 전송 버튼의 불필요한 외곽 테두리를 제거하고 화살표 정렬을 중앙 기준으로 정리
- README와 DEVELOPMENT 문서에 버튼/토큰 UI 미세 조정 이력 추가
- 검증: dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\verify\ -p:IntermediateOutputPath=obj\verify\ (경고 0, 오류 0)
This commit is contained in:
2026-04-06 20:07:14 +09:00
parent bbb5c526b0
commit 43ee9154a8
3 changed files with 21 additions and 15 deletions

View File

@@ -7,6 +7,9 @@ Windows 전용 시맨틱 런처 & 워크스페이스 매니저
개발 참고: Claw Code 동등성 작업 추적 문서
`docs/claw-code-parity-plan.md`
- 업데이트: 2026-04-06 20:05 (KST)
- AX Agent 입력 영역의 토큰 사용량 원형 카드와 전송 버튼 테두리를 더 깔끔하게 정리했습니다. 토큰 카드는 내부 원 두께와 여백을 줄여 덜 답답하게 보이게 했고, 전송 버튼은 불필요한 외곽 테두리를 제거해 더 매끈한 원형 버튼처럼 보이도록 조정했습니다.
- 업데이트: 2026-04-06 19:56 (KST)
- AX Agent 상단 탭의 세로 정렬을 미세 조정했습니다. 탭 버튼의 콘텐츠 정렬을 중앙 기준으로 다시 맞추고, 내부 패딩과 높이를 손봐 위아래 여백이 더 균형 있게 보이도록 보정했습니다.

View File

@@ -1,5 +1,6 @@
# AX Copilot - 媛쒕컻 臾몄꽌
- Document update: 2026-04-06 20:05 (KST) - Refined the AX Agent composer token indicator and send button surface. The context-usage circle now uses a roomier 32px shell with thinner ring strokes and a smaller threshold marker for a cleaner outline, while the send button now drops its redundant outer border and uses a more precisely centered arrow glyph.
- Document update: 2026-04-06 19:56 (KST) - Fine-tuned the AX Agent top tab vertical centering. The shared TopTabBtn style now uses explicit centered content alignment plus slightly reduced wrapper/button padding and height so 채팅 / Cowork / 코드 sit more evenly within the segmented control.
- Document update: 2026-04-06 19:46 (KST) - Renamed the AX Agent `Claw` preset label to `Claude` while keeping `claw` as a backward-compatible stored value alias. New settings default to `claude`, and old saved values are normalized on load.
- Document update: 2026-04-06 19:46 (KST) - Re-tuned theme palettes against real-world references: `AgentClawDark/Light/System` now follow Claude-like warm neutrals more closely, `AgentCodexDark` now matches the neutral charcoal reference more closely, `AgentNordLight/Dark/System` use the official Nord palette values, and `AgentSlateLight/Dark/System` were normalized toward a more canonical slate UI range.
@@ -5016,3 +5017,4 @@ ow + toggle ?쒓컖 ?몄뼱濡??ㅼ떆 ?뺣젹?덈떎.
- Document update: 2026-04-06 18:34 (KST) - Reduced the per-keystroke hot-path cost of the global keyboard hook. `InputListener.cs` now performs the suppressed-foreground-window check only when the current key could actually trigger the launcher hotkey, the capture hotkey, or a registered key filter, instead of doing the window-class lookup on every keydown.
- Document update: 2026-04-06 18:34 (KST) - `SnippetExpander.cs` now short-circuits immediately for normal typing unless snippet tracking is already active or the current key is the `;` trigger. This removes repeated `GetAsyncKeyState` and buffer logic from ordinary typing in other apps and makes the low-level hook substantially lighter under continuous input.

View File

@@ -349,9 +349,10 @@
<ControlTemplate TargetType="Button">
<Border x:Name="Bd"
Background="#121212"
BorderBrush="#121212"
BorderThickness="1"
CornerRadius="18">
BorderBrush="Transparent"
BorderThickness="0"
CornerRadius="18"
SnapsToDevicePixels="True">
<ContentPresenter HorizontalAlignment="Center"
VerticalAlignment="Center"/>
</Border>
@@ -1849,36 +1850,37 @@
<Border x:Name="TokenUsageCard"
Grid.Column="2"
Margin="6,0,0,0"
Padding="1"
Width="30"
Height="30"
Padding="0"
Width="32"
Height="32"
CornerRadius="999"
BorderBrush="{DynamicResource BorderColor}"
BorderThickness="1"
Background="{DynamicResource LauncherBackground}"
SnapsToDevicePixels="True"
VerticalAlignment="Center"
Visibility="Collapsed"
Cursor="Hand"
MouseEnter="TokenUsageCard_MouseEnter"
MouseLeave="TokenUsageCard_MouseLeave">
<Grid>
<Grid Width="28" Height="28" VerticalAlignment="Center" HorizontalAlignment="Center">
<Grid Width="24" Height="24" VerticalAlignment="Center" HorizontalAlignment="Center">
<Ellipse Stroke="{DynamicResource BorderColor}"
StrokeThickness="2.5"/>
StrokeThickness="1.75"/>
<Path x:Name="TokenUsageArc"
Stroke="{DynamicResource AccentColor}"
StrokeThickness="3"
StrokeThickness="2.25"
StrokeStartLineCap="Round"
StrokeEndLineCap="Round"/>
<Canvas IsHitTestVisible="False">
<Ellipse x:Name="TokenUsageThresholdMarker"
Width="5"
Height="5"
Width="4"
Height="4"
Fill="{DynamicResource AccentColor}"/>
</Canvas>
<TextBlock x:Name="TokenUsagePercentText"
Text="0%"
FontSize="8.25"
FontSize="7.5"
FontWeight="SemiBold"
Foreground="{DynamicResource PrimaryText}"
HorizontalAlignment="Center"
@@ -2214,12 +2216,11 @@
VerticalAlignment="Bottom">
<Grid HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock Text="↑"
FontSize="19"
FontSize="18"
FontWeight="SemiBold"
Foreground="White"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Margin="0,-2,0,0"/>
VerticalAlignment="Center"/>
</Grid>
</Button>
</Grid>