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 ── -->
|
<!-- ── Header ── -->
|
||||||
<Border DockPanel.Dock="Top" Classes="island-header">
|
<Border DockPanel.Dock="Top" Classes="island-header">
|
||||||
<StackPanel Margin="14,12,14,0" Spacing="4">
|
<StackPanel Margin="14,12,14,0" Spacing="4">
|
||||||
<TextBlock FontFamily="{DynamicResource SansFamily}" FontSize="{StaticResource FontSizeH3}"
|
<TextBlock Classes="heading" Text="Lists"/>
|
||||||
FontWeight="SemiBold" Foreground="{DynamicResource TextBrush}"
|
|
||||||
Text="Lists"/>
|
|
||||||
|
|
||||||
<!-- Search row -->
|
<!-- Search row -->
|
||||||
<Border Classes="search-wrap" Margin="0,8,0,12">
|
<Border Classes="search-wrap" Margin="0,8,0,12">
|
||||||
@@ -45,18 +43,16 @@
|
|||||||
<!-- Avatar circle -->
|
<!-- Avatar circle -->
|
||||||
<Border Grid.Column="0" Classes="avatar-circle"
|
<Border Grid.Column="0" Classes="avatar-circle"
|
||||||
VerticalAlignment="Center">
|
VerticalAlignment="Center">
|
||||||
<TextBlock Text="{Binding UserInitials}"
|
<TextBlock Classes="eyebrow"
|
||||||
FontFamily="{DynamicResource MonoFont}" FontSize="{StaticResource FontSizeEyebrow}"
|
Text="{Binding UserInitials}"
|
||||||
FontWeight="SemiBold"
|
FontWeight="SemiBold"
|
||||||
Foreground="{DynamicResource DeepBrush}"
|
Foreground="{DynamicResource DeepBrush}"
|
||||||
HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||||
</Border>
|
</Border>
|
||||||
<!-- Name + machine -->
|
<!-- Name + machine -->
|
||||||
<StackPanel Grid.Column="1" Margin="8,0" Spacing="1" VerticalAlignment="Center">
|
<StackPanel Grid.Column="1" Margin="8,0" Spacing="1" VerticalAlignment="Center">
|
||||||
<TextBlock Text="{Binding UserName}"
|
<TextBlock Classes="title" Text="{Binding UserName}"/>
|
||||||
FontSize="{StaticResource FontSizeBody}" Foreground="{DynamicResource TextBrush}"/>
|
<TextBlock Classes="meta">
|
||||||
<TextBlock FontFamily="{DynamicResource MonoFont}" FontSize="{StaticResource FontSizeEyebrow}"
|
|
||||||
Foreground="{DynamicResource TextFaintBrush}">
|
|
||||||
<TextBlock.Text>
|
<TextBlock.Text>
|
||||||
<MultiBinding StringFormat="{}{0} / local">
|
<MultiBinding StringFormat="{}{0} / local">
|
||||||
<Binding Path="MachineName"/>
|
<Binding Path="MachineName"/>
|
||||||
@@ -177,7 +173,8 @@
|
|||||||
Width="13" Height="13"
|
Width="13" Height="13"
|
||||||
Foreground="{DynamicResource TextMuteBrush}"
|
Foreground="{DynamicResource TextMuteBrush}"
|
||||||
VerticalAlignment="Center"/>
|
VerticalAlignment="Center"/>
|
||||||
<TextBlock Text="New list" FontSize="{StaticResource FontSizeBody}"
|
<TextBlock Classes="body"
|
||||||
|
Text="New list"
|
||||||
Foreground="{DynamicResource TextMuteBrush}"
|
Foreground="{DynamicResource TextMuteBrush}"
|
||||||
VerticalAlignment="Center"/>
|
VerticalAlignment="Center"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|||||||
Reference in New Issue
Block a user