mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
style<*>: add border for main window; changed popup background for dark theme; use Consolas for changes in stashes view
This commit is contained in:
parent
872eec85b7
commit
e00271199a
3 changed files with 5 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
<SolidColorBrush x:Key="Brush.TitleBar" Color="#FF1B1B1B"/>
|
||||
<SolidColorBrush x:Key="Brush.Window" Color="#FF252525"/>
|
||||
<SolidColorBrush x:Key="Brush.NewPageHover" Color="#FF404040"/>
|
||||
<SolidColorBrush x:Key="Brush.Popup" Color="#FF252525"/>
|
||||
<SolidColorBrush x:Key="Brush.Popup" Color="#FF2B2B2B"/>
|
||||
<SolidColorBrush x:Key="Brush.Contents" Color="#FF1B1B1B"/>
|
||||
<SolidColorBrush x:Key="Brush.Badge" Color="#FF8F8F8F"/>
|
||||
<SolidColorBrush x:Key="Brush.CommitViewer" Color="#FF222222"/>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
</WindowChrome.WindowChrome>
|
||||
|
||||
<!-- Window Layout -->
|
||||
<Border>
|
||||
<Border BorderBrush="{StaticResource Brush.Border3}">
|
||||
|
||||
<!-- Fix Maximize BUG -->
|
||||
<Border.Style>
|
||||
|
@ -29,9 +29,11 @@
|
|||
<Style.Triggers>
|
||||
<DataTrigger Binding="{Binding WindowState, ElementName=me}" Value="Maximized">
|
||||
<Setter Property="Margin" Value="{x:Static local:Launcher.MAXIMIZE_MARGIN}"/>
|
||||
<Setter Property="BorderThickness" Value="0"/>
|
||||
</DataTrigger>
|
||||
<DataTrigger Binding="{Binding WindowState, ElementName=me}" Value="Normal">
|
||||
<Setter Property="Margin" Value="0"/>
|
||||
<Setter Property="BorderThickness" Value="1"/>
|
||||
</DataTrigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
|
|
|
@ -101,6 +101,7 @@
|
|||
<ListView.ItemContainerStyle>
|
||||
<Style TargetType="{x:Type ListViewItem}" BasedOn="{StaticResource Style.ListViewItem.Borderless}">
|
||||
<Setter Property="Padding" Value="0"/>
|
||||
<Setter Property="TextBlock.FontFamily" Value="Consolas"/>
|
||||
</Style>
|
||||
</ListView.ItemContainerStyle>
|
||||
<ListView.ItemTemplate>
|
||||
|
|
Loading…
Reference in a new issue