refactor(ui): apply text classes to ListsIslandView
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -15,9 +15,7 @@
|
||||
<!-- ── Header ── -->
|
||||
<Border DockPanel.Dock="Top" Classes="island-header">
|
||||
<StackPanel Margin="14,12,14,0" Spacing="4">
|
||||
<TextBlock FontFamily="{DynamicResource SansFamily}" FontSize="{StaticResource FontSizeH3}"
|
||||
FontWeight="SemiBold" Foreground="{DynamicResource TextBrush}"
|
||||
Text="Lists"/>
|
||||
<TextBlock Classes="heading" Text="Lists"/>
|
||||
|
||||
<!-- Search row -->
|
||||
<Border Classes="search-wrap" Margin="0,8,0,12">
|
||||
@@ -45,18 +43,16 @@
|
||||
<!-- Avatar circle -->
|
||||
<Border Grid.Column="0" Classes="avatar-circle"
|
||||
VerticalAlignment="Center">
|
||||
<TextBlock Text="{Binding UserInitials}"
|
||||
FontFamily="{DynamicResource MonoFont}" FontSize="{StaticResource FontSizeEyebrow}"
|
||||
<TextBlock Classes="eyebrow"
|
||||
Text="{Binding UserInitials}"
|
||||
FontWeight="SemiBold"
|
||||
Foreground="{DynamicResource DeepBrush}"
|
||||
HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||
</Border>
|
||||
<!-- Name + machine -->
|
||||
<StackPanel Grid.Column="1" Margin="8,0" Spacing="1" VerticalAlignment="Center">
|
||||
<TextBlock Text="{Binding UserName}"
|
||||
FontSize="{StaticResource FontSizeBody}" Foreground="{DynamicResource TextBrush}"/>
|
||||
<TextBlock FontFamily="{DynamicResource MonoFont}" FontSize="{StaticResource FontSizeEyebrow}"
|
||||
Foreground="{DynamicResource TextFaintBrush}">
|
||||
<TextBlock Classes="title" Text="{Binding UserName}"/>
|
||||
<TextBlock Classes="meta">
|
||||
<TextBlock.Text>
|
||||
<MultiBinding StringFormat="{}{0} / local">
|
||||
<Binding Path="MachineName"/>
|
||||
@@ -177,7 +173,8 @@
|
||||
Width="13" Height="13"
|
||||
Foreground="{DynamicResource TextMuteBrush}"
|
||||
VerticalAlignment="Center"/>
|
||||
<TextBlock Text="New list" FontSize="{StaticResource FontSizeBody}"
|
||||
<TextBlock Classes="body"
|
||||
Text="New list"
|
||||
Foreground="{DynamicResource TextMuteBrush}"
|
||||
VerticalAlignment="Center"/>
|
||||
</StackPanel>
|
||||
|
||||
Reference in New Issue
Block a user