|
3 | 3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 | 4 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
5 | 5 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
6 | | - xmlns:imaging="clr-namespace:Microsoft.VisualStudio.Imaging;assembly=Microsoft.VisualStudio.Imaging" |
7 | 6 | xmlns:mtcw="clr-namespace:Microsoft.TeamFoundation.Controls.WPF;assembly=Microsoft.TeamFoundation.Controls" |
8 | | - xmlns:local="clr-namespace:GitHub.VisualStudio;assembly=" |
9 | 7 | mc:Ignorable="d" |
10 | 8 | d:DesignHeight="300" d:DesignWidth="300"> |
11 | 9 |
|
12 | 10 | <UserControl.Resources> |
13 | 11 | <SolidColorBrush |
14 | 12 | x:Key="SubduedTextBrushKey" |
15 | 13 | Color="{Binding Source={x:Static mtcw:TeamFoundationColors.Instance}, Path=SubduedTextColor, Mode=OneWay}" /> |
| 14 | + <SolidColorBrush |
| 15 | + x:Key="SectionTitleTextColorKey" |
| 16 | + Color="{Binding Source={x:Static mtcw:TeamFoundationColors.Instance}, Path=SectionTitleTextColor, Mode=OneWay}" /> |
16 | 17 | </UserControl.Resources> |
17 | 18 |
|
18 | 19 | <StackPanel Margin="6,0,0,0"> |
|
24 | 25 | <ColumnDefinition Width="*" /> |
25 | 26 | </Grid.ColumnDefinitions> |
26 | 27 |
|
27 | | - <!--Icon --> |
28 | | - <imaging:CrispImage |
29 | | - Width="32" |
30 | | - Height="32" |
31 | | - Grid.Column="0" |
32 | | - HorizontalAlignment="Center" |
33 | | - VerticalAlignment="Top" |
34 | | - Margin="0,2,8,2" |
35 | | - SnapsToDevicePixels="True" |
36 | | - Visibility="Visible" |
37 | | - Moniker="{x:Static local:Images.Logo}" /> |
| 28 | + <!-- Icon --> |
| 29 | + <Viewbox |
| 30 | + Width="32" |
| 31 | + Height="32" |
| 32 | + Grid.Column="0" |
| 33 | + HorizontalAlignment="Center" |
| 34 | + VerticalAlignment="Top" |
| 35 | + Margin="0,2,8,2" |
| 36 | + SnapsToDevicePixels="True"> |
| 37 | + |
| 38 | + <Border BorderBrush="Transparent" BorderThickness="1"> |
| 39 | + <Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" Width="16" Height="16"> |
| 40 | + <Path xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 41 | + Fill="{StaticResource SectionTitleTextColorKey}" |
| 42 | + Data="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z"/> |
| 43 | + </Canvas> |
| 44 | + </Border> |
| 45 | + </Viewbox> |
38 | 46 |
|
39 | | - <!--Service name, provider --> |
| 47 | + <!-- Service name, provider --> |
40 | 48 | <StackPanel Orientation="Vertical" |
41 | 49 | VerticalAlignment="Center" |
42 | 50 | Grid.Column="1"> |
43 | | - <TextBlock x:Name="Name" Text="GitHub" TextTrimming="CharacterEllipsis" FontWeight="SemiBold" /> |
| 51 | + <TextBlock x:Name="Name" Text="GitHub" TextTrimming="CharacterEllipsis" FontWeight="SemiBold" |
| 52 | + Foreground="{StaticResource SectionTitleTextColorKey}" /> |
44 | 53 | <TextBlock x:Name="Provider" Text="GitHub, Inc" TextTrimming="CharacterEllipsis" |
45 | 54 | Foreground="{StaticResource SubduedTextBrushKey}" /> |
46 | 55 | </StackPanel> |
|
62 | 71 | Text="Powerful collaboration, code review, and code management for open source and private projects." |
63 | 72 | MaxHeight="100" |
64 | 73 | TextWrapping="Wrap" |
65 | | - TextTrimming="WordEllipsis" /> |
| 74 | + TextTrimming="WordEllipsis" |
| 75 | + Foreground="{StaticResource SectionTitleTextColorKey}" /> |
66 | 76 | </WrapPanel> |
67 | 77 | <WrapPanel Grid.Row="1" Grid.Column="1" HorizontalAlignment="Right" Margin="0,0,14,0"> |
68 | 78 | <Button x:Uid="publishARepoButton" x:Name="publishARepoButton" |
|
0 commit comments