- 상단 탭 버튼과 탭 그룹 래퍼의 폰트, 패딩, 코너를 더 줄여 claw-code 쪽 밀도로 정리 - 제목 서브 바, 대화 제목, 빠른 스트립, 프리뷰 토글 규격을 함께 낮춰 상단 보조 정보 존재감을 축소 - README와 DEVELOPMENT 문서에 2026-04-05 17:45 (KST) 기준 이력 반영 - 검증: 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:
@@ -174,15 +174,15 @@
|
||||
<!-- 탭 버튼 -->
|
||||
<Style x:Key="TopTabBtn" TargetType="RadioButton">
|
||||
<Setter Property="Foreground" Value="{DynamicResource SecondaryText}"/>
|
||||
<Setter Property="FontSize" Value="12"/>
|
||||
<Setter Property="FontSize" Value="11.5"/>
|
||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
||||
<Setter Property="Cursor" Value="Hand"/>
|
||||
<Setter Property="Padding" Value="16,5"/>
|
||||
<Setter Property="Padding" Value="14,4"/>
|
||||
<Setter Property="Template">
|
||||
<Setter.Value>
|
||||
<ControlTemplate TargetType="RadioButton">
|
||||
<Border x:Name="Bd" Background="Transparent"
|
||||
CornerRadius="7" Padding="{TemplateBinding Padding}">
|
||||
CornerRadius="6" Padding="{TemplateBinding Padding}">
|
||||
<ContentPresenter x:Name="Cp" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||
</Border>
|
||||
<ControlTemplate.Triggers>
|
||||
@@ -837,7 +837,7 @@
|
||||
<!-- ══════════════════════════════════════════════════════ -->
|
||||
<Grid Grid.Column="2">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="48"/>
|
||||
<RowDefinition Height="46"/>
|
||||
<RowDefinition Height="Auto"/> <!-- 서브 바: 제목 + 프리뷰 -->
|
||||
<RowDefinition Height="Auto"/> <!-- 스티키 진행률 바 -->
|
||||
<RowDefinition Height="*"/>
|
||||
@@ -849,24 +849,24 @@
|
||||
<!-- ── 서브 바: 제목 + 프리뷰 버튼 (AX Agent 스타일) ── -->
|
||||
<Border Grid.Row="1" Background="{DynamicResource LauncherBackground}"
|
||||
BorderBrush="{DynamicResource SeparatorColor}" BorderThickness="0,0,0,1"
|
||||
Padding="12,4,12,4">
|
||||
Padding="10,3,10,3">
|
||||
<Grid>
|
||||
<!-- 좌: 대화 제목 -->
|
||||
<StackPanel Orientation="Vertical" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||||
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
|
||||
<Grid VerticalAlignment="Center">
|
||||
<TextBlock x:Name="ChatTitle" Text="" FontSize="13" FontWeight="SemiBold"
|
||||
<TextBlock x:Name="ChatTitle" Text="" FontSize="12.25" FontWeight="SemiBold"
|
||||
Foreground="{DynamicResource PrimaryText}"
|
||||
VerticalAlignment="Center" TextTrimming="CharacterEllipsis"
|
||||
MaxWidth="400" Cursor="Hand"
|
||||
MaxWidth="360" Cursor="Hand"
|
||||
MouseLeftButtonDown="ChatTitle_MouseDown"
|
||||
ToolTip="클릭하여 대화 이름 변경"/>
|
||||
<TextBox x:Name="ChatTitleEdit" FontSize="13"
|
||||
<TextBox x:Name="ChatTitleEdit" FontSize="12.25"
|
||||
Foreground="{DynamicResource PrimaryText}"
|
||||
Background="{DynamicResource HintBackground}"
|
||||
CaretBrush="{DynamicResource AccentColor}"
|
||||
BorderThickness="0" Padding="4,2"
|
||||
MaxWidth="400" MinWidth="80"
|
||||
BorderThickness="0" Padding="3,1.5"
|
||||
MaxWidth="360" MinWidth="80"
|
||||
Visibility="Collapsed"
|
||||
LostFocus="ChatTitleEdit_LostFocus"
|
||||
KeyDown="ChatTitleEdit_KeyDown"/>
|
||||
@@ -885,18 +885,18 @@
|
||||
<WrapPanel x:Name="ConversationQuickStrip" Visibility="Collapsed"
|
||||
Margin="0,1,0,0">
|
||||
<Button x:Name="BtnQuickRunningFilter" Style="{StaticResource GhostBtn}"
|
||||
Padding="5,1" Margin="0,0,3,0"
|
||||
Padding="4.5,1" Margin="0,0,3,0"
|
||||
Click="BtnQuickRunningFilter_Click"
|
||||
Visibility="Collapsed"
|
||||
IsEnabled="False">
|
||||
<TextBlock x:Name="QuickRunningLabel" Text="진행"
|
||||
FontSize="8.5" FontWeight="SemiBold"/>
|
||||
FontSize="8.25" FontWeight="SemiBold"/>
|
||||
</Button>
|
||||
<Button x:Name="BtnQuickHotSort" Style="{StaticResource GhostBtn}"
|
||||
Padding="5.5,1"
|
||||
Padding="4.75,1"
|
||||
Click="BtnQuickHotSort_Click">
|
||||
<TextBlock x:Name="QuickHotLabel" Text="활동"
|
||||
FontSize="8.75" FontWeight="SemiBold"/>
|
||||
FontSize="8.4" FontWeight="SemiBold"/>
|
||||
</Button>
|
||||
</WrapPanel>
|
||||
</StackPanel>
|
||||
@@ -904,11 +904,11 @@
|
||||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center">
|
||||
<Button x:Name="BtnPreviewToggle" Style="{StaticResource GhostBtn}"
|
||||
Click="BtnPreviewToggle_Click" ToolTip="미리보기 패널" Visibility="Collapsed"
|
||||
Padding="8,4">
|
||||
Padding="5,2.5" MinWidth="0">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<Ellipse x:Name="PreviewDot" Width="6" Height="6" Fill="#22C55E"
|
||||
Margin="0,0,5,0" VerticalAlignment="Center"/>
|
||||
<TextBlock Text="미리보기" FontSize="12"
|
||||
<Ellipse x:Name="PreviewDot" Width="5" Height="5" Fill="#22C55E"
|
||||
Margin="0,0,4,0" VerticalAlignment="Center"/>
|
||||
<TextBlock Text="프리뷰" FontSize="10.5"
|
||||
Foreground="{DynamicResource PrimaryText}"
|
||||
VerticalAlignment="Center"/>
|
||||
</StackPanel>
|
||||
@@ -1095,7 +1095,7 @@
|
||||
<Border Grid.Column="1"
|
||||
HorizontalAlignment="Center" VerticalAlignment="Center"
|
||||
Background="{DynamicResource HintBackground}"
|
||||
CornerRadius="10" Padding="3"
|
||||
CornerRadius="9" Padding="2.5"
|
||||
WindowChrome.IsHitTestVisibleInChrome="True">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<RadioButton x:Name="TabChat" Content="Chat" Style="{StaticResource TopTabBtn}"
|
||||
|
||||
Reference in New Issue
Block a user