|
307 | 307 |
|
308 | 308 | <TabItem Header="Commits" Style="{DynamicResource GitHubPRDetailsTabItem}"> |
309 | 309 | <ListView Background="Transparent" |
310 | | - BorderBrush="Transparent"> |
| 310 | + BorderBrush="Transparent" |
| 311 | + ScrollViewer.HorizontalScrollBarVisibility="Disabled"> |
311 | 312 | <ListViewItem Style="{StaticResource CommitListItemContainerStyle}"> |
312 | 313 | <Grid> |
313 | 314 | <Grid.ColumnDefinitions> |
|
339 | 340 | </Grid> |
340 | 341 |
|
341 | 342 | <TextBlock Text="I am an example commit message" |
| 343 | + TextTrimming="CharacterEllipsis" |
342 | 344 | ToolTip="I am an example commit message" |
343 | 345 | VerticalAlignment="Top" |
344 | 346 | Foreground="{DynamicResource GitHubVsToolWindowText}" |
|
349 | 351 |
|
350 | 352 | <TextBlock Margin="10,0,0,0" |
351 | 353 | Text="Andreia Gaita committed 20 hours ago" |
| 354 | + TextTrimming="CharacterEllipsis" |
352 | 355 | ToolTip="Andreia Gaita committed 20 hours ago" |
353 | 356 | VerticalAlignment="Top" |
354 | 357 | Grid.Column="1" |
|
361 | 364 |
|
362 | 365 | <TabItem Header="Files Changed" Style="{DynamicResource GitHubPRDetailsTabItem}"> |
363 | 366 | <ListView Background="Transparent" |
364 | | - BorderBrush="Transparent"> |
| 367 | + BorderBrush="Transparent" |
| 368 | + ScrollViewer.HorizontalScrollBarVisibility="Disabled"> |
365 | 369 | <ListViewItem Style="{StaticResource CommitListItemContainerStyle}"> |
366 | 370 | <Grid> |
367 | 371 | <Grid.ColumnDefinitions> |
|
381 | 385 |
|
382 | 386 | <TextBlock |
383 | 387 | Foreground="{DynamicResource GitHubVsWindowText}" |
384 | | - Grid.Column="1" Text="src\file_added.cs" /> |
| 388 | + TextTrimming="CharacterEllipsis" |
| 389 | + Text="src\file_added.cs" |
| 390 | + ToolTip="src\file_added.cs" |
| 391 | + Grid.Column="1" /> |
385 | 392 |
|
386 | 393 | <ui:OcticonImage Icon="diff_added" Grid.Column="2" Foreground="#ff6cc644" ToolTip="Added" /> |
387 | 394 | </Grid> |
|
406 | 413 |
|
407 | 414 | <TextBlock |
408 | 415 | Foreground="{DynamicResource GitHubVsWindowText}" |
409 | | - Grid.Column="1" Text="src\file_modified.cs" /> |
| 416 | + TextTrimming="CharacterEllipsis" |
| 417 | + Text="src\file_modified.cs" |
| 418 | + ToolTip="src\file_modified.cs" |
| 419 | + Grid.Column="1" /> |
410 | 420 |
|
411 | 421 | <ui:OcticonImage Icon="diff_modified" Grid.Column="2" Foreground="#ffbbbbbb" ToolTip="Modified" /> |
412 | 422 | </Grid> |
|
431 | 441 |
|
432 | 442 | <TextBlock |
433 | 443 | Foreground="{DynamicResource GitHubVsWindowText}" |
434 | | - Grid.Column="1" Text="src\file_removed.cs" /> |
| 444 | + TextTrimming="CharacterEllipsis" |
| 445 | + Text="src\file_removed.cs" |
| 446 | + ToolTip="src\file_removed.cs" |
| 447 | + Grid.Column="1" /> |
435 | 448 |
|
436 | 449 | <ui:OcticonImage Icon="diff_removed" Grid.Column="2" Foreground="#FFbd2c00" ToolTip="Removed" /> |
437 | 450 | </Grid> |
|
456 | 469 |
|
457 | 470 | <TextBlock |
458 | 471 | Foreground="{DynamicResource GitHubVsWindowText}" |
459 | | - Grid.Column="1" Text="src\file_renamed.cs" /> |
| 472 | + TextTrimming="CharacterEllipsis" |
| 473 | + Text="src\file_renamed.cs" |
| 474 | + ToolTip="src\file_renamed.cs" |
| 475 | + Grid.Column="1" /> |
460 | 476 |
|
461 | 477 | <ui:OcticonImage Icon="diff_renamed" Grid.Column="2" Foreground="#ff4078c0" ToolTip="Renamed" /> |
462 | 478 | </Grid> |
|
0 commit comments