mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
style<Decorators>: change font and color for commit decorators
This commit is contained in:
parent
0d5995e32f
commit
d32563aebd
4 changed files with 7 additions and 5 deletions
|
@ -12,6 +12,7 @@
|
|||
<SolidColorBrush x:Key="Brush.Contents" Color="#FF1B1B1B"/>
|
||||
<SolidColorBrush x:Key="Brush.Badge" Color="#FF8F8F8F"/>
|
||||
<SolidColorBrush x:Key="Brush.Decorator" Color="#FF505050"/>
|
||||
<SolidColorBrush x:Key="Brush.DecoratorIcon" Color="#FFF8F8F8"/>
|
||||
<SolidColorBrush x:Key="Brush.Conflict" Color="#FFFAFAD2"/>
|
||||
|
||||
<SolidColorBrush x:Key="Brush.Border0" Color="#FF101010"/>
|
||||
|
|
|
@ -11,7 +11,8 @@
|
|||
<SolidColorBrush x:Key="Brush.Popup" Color="#FFF8F8F8"/>
|
||||
<SolidColorBrush x:Key="Brush.Contents" Color="White"/>
|
||||
<SolidColorBrush x:Key="Brush.Badge" Color="#FFAFAFAF"/>
|
||||
<SolidColorBrush x:Key="Brush.Decorator" Color="#FFBDBDBD"/>
|
||||
<SolidColorBrush x:Key="Brush.Decorator" Color="#FF6F6F6F"/>
|
||||
<SolidColorBrush x:Key="Brush.DecoratorIcon" Color="#FFF8F8F8"/>
|
||||
<SolidColorBrush x:Key="Brush.Conflict" Color="#FF836C2E"/>
|
||||
|
||||
<SolidColorBrush x:Key="Brush.Border0" Color="#FFCFCFCF"/>
|
||||
|
|
|
@ -139,11 +139,11 @@
|
|||
<DataTemplate DataType="{x:Type models:Decorator}">
|
||||
<StackPanel Orientation="Horizontal" Height="16" Margin="2,0">
|
||||
<Border Background="{StaticResource Brush.Decorator}">
|
||||
<Path x:Name="Icon" Margin="4,0" Width="8" Height="8" Data="{StaticResource Icon.Branch}"/>
|
||||
<Path x:Name="Icon" Margin="4,0" Width="8" Height="8" Data="{StaticResource Icon.Branch}" Fill="{StaticResource Brush.DecoratorIcon}"/>
|
||||
</Border>
|
||||
|
||||
<Border x:Name="Color" Background="#FFFFB835">
|
||||
<TextBlock Text="{Binding Name}" FontSize="8pt" Margin="4,0" Foreground="Black"/>
|
||||
<TextBlock Text="{Binding Name}" FontSize="8pt" Margin="4,0" Foreground="Black" FontFamily="Consolas"/>
|
||||
</Border>
|
||||
</StackPanel>
|
||||
|
||||
|
|
|
@ -73,11 +73,11 @@
|
|||
<DataTemplate DataType="{x:Type models:Decorator}">
|
||||
<StackPanel Orientation="Horizontal" Height="16" Margin="2,0">
|
||||
<Border Background="{StaticResource Brush.Decorator}">
|
||||
<Path x:Name="Icon" Margin="4,0" Width="8" Height="8" Data="{StaticResource Icon.Branch}"/>
|
||||
<Path x:Name="Icon" Margin="4,0" Width="8" Height="8" Data="{StaticResource Icon.Branch}" Fill="{StaticResource Brush.DecoratorIcon}"/>
|
||||
</Border>
|
||||
|
||||
<Border x:Name="Color" Background="#FFFFB835">
|
||||
<TextBlock Text="{Binding Name}" FontSize="8pt" Margin="4,0" Foreground="Black"/>
|
||||
<TextBlock Text="{Binding Name}" FontSize="8pt" Margin="4,0" Foreground="Black" FontFamily="Consolas"/>
|
||||
</Border>
|
||||
</StackPanel>
|
||||
|
||||
|
|
Loading…
Reference in a new issue