AX Agent 상단 헤더와 대화 목록 메타를 claw-code 쪽으로 정리
Some checks failed
Release Gate / gate (push) Has been cancelled
Some checks failed
Release Gate / gate (push) Has been cancelled
- 상단 탭 그룹과 사이드바 토글 버튼을 더 얇은 세그먼트형 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:
@@ -174,15 +174,15 @@
|
||||
<!-- 탭 버튼 -->
|
||||
<Style x:Key="TopTabBtn" TargetType="RadioButton">
|
||||
<Setter Property="Foreground" Value="{DynamicResource SecondaryText}"/>
|
||||
<Setter Property="FontSize" Value="13"/>
|
||||
<Setter Property="FontSize" Value="12"/>
|
||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
||||
<Setter Property="Cursor" Value="Hand"/>
|
||||
<Setter Property="Padding" Value="18,6"/>
|
||||
<Setter Property="Padding" Value="16,5"/>
|
||||
<Setter Property="Template">
|
||||
<Setter.Value>
|
||||
<ControlTemplate TargetType="RadioButton">
|
||||
<Border x:Name="Bd" Background="Transparent"
|
||||
CornerRadius="8" Padding="{TemplateBinding Padding}">
|
||||
CornerRadius="7" Padding="{TemplateBinding Padding}">
|
||||
<ContentPresenter x:Name="Cp" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||
</Border>
|
||||
<ControlTemplate.Triggers>
|
||||
@@ -1037,8 +1037,8 @@
|
||||
<!-- 좌: 사이드바 토글 -->
|
||||
<Button x:Name="BtnToggleSidebar"
|
||||
HorizontalAlignment="Left" VerticalAlignment="Center" Margin="10,0,0,0"
|
||||
Width="30"
|
||||
Height="30"
|
||||
Width="28"
|
||||
Height="28"
|
||||
Background="{DynamicResource HintBackground}"
|
||||
BorderBrush="{DynamicResource BorderColor}"
|
||||
BorderThickness="1"
|
||||
@@ -1051,25 +1051,25 @@
|
||||
Background="{TemplateBinding Background}"
|
||||
BorderBrush="{TemplateBinding BorderBrush}"
|
||||
BorderThickness="{TemplateBinding BorderThickness}"
|
||||
CornerRadius="8">
|
||||
<Grid Width="30" Height="30">
|
||||
CornerRadius="7">
|
||||
<Grid Width="28" Height="28">
|
||||
<StackPanel HorizontalAlignment="Center"
|
||||
VerticalAlignment="Center">
|
||||
<Border x:Name="SidebarLine1"
|
||||
Width="12"
|
||||
Height="1.6"
|
||||
Width="11"
|
||||
Height="1.4"
|
||||
CornerRadius="1"
|
||||
Background="{DynamicResource SecondaryText}"/>
|
||||
<Border x:Name="SidebarLine2"
|
||||
Width="12"
|
||||
Height="1.6"
|
||||
Margin="0,3,0,0"
|
||||
Width="11"
|
||||
Height="1.4"
|
||||
Margin="0,2.5,0,0"
|
||||
CornerRadius="1"
|
||||
Background="{DynamicResource SecondaryText}"/>
|
||||
<Border x:Name="SidebarLine3"
|
||||
Width="12"
|
||||
Height="1.6"
|
||||
Margin="0,3,0,0"
|
||||
Width="11"
|
||||
Height="1.4"
|
||||
Margin="0,2.5,0,0"
|
||||
CornerRadius="1"
|
||||
Background="{DynamicResource SecondaryText}"/>
|
||||
</StackPanel>
|
||||
@@ -1095,7 +1095,7 @@
|
||||
<Border Grid.Column="1"
|
||||
HorizontalAlignment="Center" VerticalAlignment="Center"
|
||||
Background="{DynamicResource HintBackground}"
|
||||
CornerRadius="12" Padding="4"
|
||||
CornerRadius="10" Padding="3"
|
||||
WindowChrome.IsHitTestVisibleInChrome="True">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<RadioButton x:Name="TabChat" Content="Chat" Style="{StaticResource TopTabBtn}"
|
||||
@@ -1113,7 +1113,7 @@
|
||||
<!-- 우: 최소화 + 최대화 + 닫기 -->
|
||||
<StackPanel Grid.Column="2"
|
||||
Orientation="Horizontal" HorizontalAlignment="Right"
|
||||
VerticalAlignment="Center" Margin="0,0,8,0"
|
||||
VerticalAlignment="Center" Margin="0,0,6,0"
|
||||
WindowChrome.IsHitTestVisibleInChrome="True">
|
||||
<Button Style="{StaticResource TitleBarActionButton}" Click="BtnMinimize_Click" ToolTip="최소화">
|
||||
<TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontSize="12"
|
||||
|
||||
Reference in New Issue
Block a user