|
56 | 56 | </Grid.ColumnDefinitions> |
57 | 57 |
|
58 | 58 | <DataGrid Grid.Column="0" |
59 | | - Background="Transparent" |
| 59 | + Background="{DynamicResource Brush.Contents}" |
| 60 | + BorderThickness="1" |
| 61 | + Margin="8,4,4,8" |
| 62 | + BorderBrush="{DynamicResource Brush.Border2}" |
60 | 63 | ItemsSource="{Binding Commits}" |
61 | 64 | SelectedItem="{Binding SelectedCommit, Mode=TwoWay}" |
62 | 65 | SelectionMode="Single" |
|
96 | 99 | HorizontalAlignment="Stretch" VerticalAlignment="Stretch" |
97 | 100 | Background="Transparent" |
98 | 101 | BorderThickness="1,0,0,0" |
99 | | - BorderBrush="{DynamicResource Brush.Border2}"/> |
| 102 | + BorderBrush="{DynamicResource Brush.Border0}"/> |
100 | 103 |
|
101 | 104 | <v:LoadingIcon Grid.Column="2" |
102 | 105 | Width="48" Height="48" |
103 | 106 | HorizontalAlignment="Center" VerticalAlignment="Center" |
104 | 107 | IsVisible="{Binding IsLoading}"/> |
105 | 108 |
|
106 | | - <Grid Grid.Column="2" RowDefinitions="*,3,*" Margin="0,4,4,4" IsVisible="{Binding !IsLoading}"> |
107 | | - <ContentControl Grid.Row="0" Content="{Binding DiffContext}"> |
| 109 | + <Grid Grid.Column="2" RowDefinitions="*,3,*" IsVisible="{Binding !IsLoading}"> |
| 110 | + <ContentControl Grid.Row="0" Margin="4,4,8,0" Content="{Binding DiffContext}"> |
108 | 111 | <ContentControl.DataTemplates> |
109 | 112 | <DataTemplate DataType="vm:DiffContext"> |
110 | 113 | <v:DiffView/> |
|
117 | 120 | HorizontalAlignment="Stretch" VerticalAlignment="Stretch" |
118 | 121 | Background="Transparent"/> |
119 | 122 |
|
120 | | - <Grid Grid.Row="2"> |
| 123 | + <Grid Grid.Row="2" Margin="0,0,4,4"> |
121 | 124 | <Border Background="{DynamicResource Brush.Window}"> |
122 | 125 | <Path Width="128" Height="128" |
123 | 126 | Data="{StaticResource Icons.Detail}" |
|
0 commit comments