mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
style<Dashboard>: toolbar style
This commit is contained in:
parent
5f2fe64e80
commit
ed911fb679
3 changed files with 19 additions and 19 deletions
|
@ -23,7 +23,7 @@
|
|||
<sys:String x:Key="Text.About">ABOUT</sys:String>
|
||||
<sys:String x:Key="Text.About.Title">SourceGit - OPEN SOURCE GIT CLIENT</sys:String>
|
||||
|
||||
<sys:String x:Key="Text.Apply">Apply</sys:String>
|
||||
<sys:String x:Key="Text.Apply">Patch</sys:String>
|
||||
<sys:String x:Key="Text.Apply.Title">Apply Patch</sys:String>
|
||||
<sys:String x:Key="Text.Apply.File">Patch File :</sys:String>
|
||||
<sys:String x:Key="Text.Apply.File.Placeholder">Select .patch file to apply</sys:String>
|
||||
|
|
|
@ -62,35 +62,35 @@
|
|||
</StackPanel>
|
||||
|
||||
<!-- Common Git Options -->
|
||||
<StackPanel Grid.Column="1" Orientation="Horizontal" Margin="6,0">
|
||||
<Button Click="OpenFetch" Margin="4,0">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<StackPanel Grid.Column="1" Orientation="Horizontal">
|
||||
<Button Click="OpenFetch" Style="{StaticResource Style.Button.HighlightHover}">
|
||||
<StackPanel Orientation="Horizontal" Margin="6,0">
|
||||
<Path Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.Fetch}"/>
|
||||
<Label Content="{StaticResource Text.Fetch}"/>
|
||||
<Label Content="{StaticResource Text.Fetch}" Margin="4,0,0,0"/>
|
||||
</StackPanel>
|
||||
</Button>
|
||||
<Button Click="OpenPull" Margin="4,0">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<Button Click="OpenPull" Style="{StaticResource Style.Button.HighlightHover}">
|
||||
<StackPanel Orientation="Horizontal" Margin="6,0">
|
||||
<Path Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.Pull}"/>
|
||||
<Label Content="{StaticResource Text.Pull}"/>
|
||||
<Label Content="{StaticResource Text.Pull}" Margin="4,0,0,0"/>
|
||||
</StackPanel>
|
||||
</Button>
|
||||
<Button Click="OpenPush" Margin="4,0">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<Button Click="OpenPush" Style="{StaticResource Style.Button.HighlightHover}">
|
||||
<StackPanel Orientation="Horizontal" Margin="6,0">
|
||||
<Path Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.Push}"/>
|
||||
<Label Content="{StaticResource Text.Push}"/>
|
||||
<Label Content="{StaticResource Text.Push}" Margin="4,0,0,0"/>
|
||||
</StackPanel>
|
||||
</Button>
|
||||
<Button Click="OpenStash" Margin="4,0">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<Button Click="OpenStash" Style="{StaticResource Style.Button.HighlightHover}">
|
||||
<StackPanel Orientation="Horizontal" Margin="6,0">
|
||||
<Path Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.SaveStash}"/>
|
||||
<Label Content="{StaticResource Text.Stash}"/>
|
||||
<Label Content="{StaticResource Text.Stash}" Margin="4,0,0,0"/>
|
||||
</StackPanel>
|
||||
</Button>
|
||||
<Button Click="OpenApply">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
</Button>
|
||||
<Button Click="OpenApply" Style="{StaticResource Style.Button.HighlightHover}">
|
||||
<StackPanel Orientation="Horizontal" Margin="6,0">
|
||||
<Path Style="{StaticResource Style.Icon}" Data="{StaticResource Icon.Apply}"/>
|
||||
<Label Content="{StaticResource Text.Apply}"/>
|
||||
<Label Content="{StaticResource Text.Apply}" Margin="4,0,0,0"/>
|
||||
</StackPanel>
|
||||
</Button>
|
||||
</StackPanel>
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Label Grid.Row="0" Grid.ColumnSpan="2" FontWeight="DemiBold" FontSize="18" Content="{StaticResource Text.Push.Local}"/>
|
||||
<Label Grid.Row="0" Grid.ColumnSpan="2" FontWeight="DemiBold" FontSize="18" Content="{StaticResource Text.Push.Title}"/>
|
||||
|
||||
<Label Grid.Row="2" Grid.Column="0" HorizontalAlignment="Right" VerticalAlignment="Center" Content="{StaticResource Text.Push.Local}"/>
|
||||
<ComboBox Grid.Row="2" Grid.Column="1"
|
||||
|
|
Loading…
Reference in a new issue