mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Some margin styling
This commit is contained in:
parent
cafba5ff81
commit
06ceb197b0
@ -955,7 +955,7 @@
|
|||||||
<Setter Property="Background" Value="{StaticResource TextBoxBackground}" />
|
<Setter Property="Background" Value="{StaticResource TextBoxBackground}" />
|
||||||
<Setter Property="BorderBrush" Value="{StaticResource TextBoxBorder}" />
|
<Setter Property="BorderBrush" Value="{StaticResource TextBoxBorder}" />
|
||||||
<Setter Property="BorderThickness" Value="1" />
|
<Setter Property="BorderThickness" Value="1" />
|
||||||
<Setter Property="Padding" Value="2,2,2,1" />
|
<Setter Property="Padding" Value="3" />
|
||||||
<Setter Property="AllowDrop" Value="true" />
|
<Setter Property="AllowDrop" Value="true" />
|
||||||
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
|
<Setter Property="FocusVisualStyle" Value="{x:Null}" />
|
||||||
<Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst" />
|
<Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst" />
|
||||||
@ -3616,4 +3616,11 @@
|
|||||||
</Setter.Value>
|
</Setter.Value>
|
||||||
</Setter>
|
</Setter>
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
|
<!-- FilePicker -->
|
||||||
|
<Style x:Key="MainFilePickerStyle" TargetType="{x:Type local:FilePicker}">
|
||||||
|
<Setter Property="FontSize" Value="14" />
|
||||||
|
</Style>
|
||||||
|
<Style BasedOn="{StaticResource MainFilePickerStyle}" TargetType="{x:Type local:FilePicker}" />
|
||||||
|
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
CornerRadius="3" />
|
CornerRadius="3" />
|
||||||
<TextBox
|
<TextBox
|
||||||
Grid.Column="0"
|
Grid.Column="0"
|
||||||
Margin="5,0,-2,0"
|
Margin="5,1,-2,1"
|
||||||
VerticalContentAlignment="Center"
|
VerticalContentAlignment="Center"
|
||||||
Background="{StaticResource DarkBackgroundBrush}"
|
Background="{StaticResource DarkBackgroundBrush}"
|
||||||
Text="{Binding TargetPath, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
|
Text="{Binding TargetPath, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
|
||||||
|
@ -85,7 +85,10 @@
|
|||||||
<Setter Property="FontSize" Value="15" />
|
<Setter Property="FontSize" Value="15" />
|
||||||
<Setter Property="Margin" Value="0,0,0,6" />
|
<Setter Property="Margin" Value="0,0,0,6" />
|
||||||
</Style>
|
</Style>
|
||||||
<Style x:Key="PickerStyle" TargetType="local:FilePicker">
|
<Style
|
||||||
|
x:Key="PickerStyle"
|
||||||
|
BasedOn="{StaticResource MainFilePickerStyle}"
|
||||||
|
TargetType="local:FilePicker">
|
||||||
<Setter Property="Margin" Value="0,0,0,6" />
|
<Setter Property="Margin" Value="0,0,0,6" />
|
||||||
</Style>
|
</Style>
|
||||||
</StackPanel.Resources>
|
</StackPanel.Resources>
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
ToolTip="The game you wish to target">
|
ToolTip="The game you wish to target">
|
||||||
<ComboBox.ItemTemplate>
|
<ComboBox.ItemTemplate>
|
||||||
<DataTemplate>
|
<DataTemplate>
|
||||||
<TextBlock Text="{Binding DisplayName}" />
|
<TextBlock Margin="6,2" Text="{Binding DisplayName}" />
|
||||||
</DataTemplate>
|
</DataTemplate>
|
||||||
</ComboBox.ItemTemplate>
|
</ComboBox.ItemTemplate>
|
||||||
</ComboBox>
|
</ComboBox>
|
||||||
|
Loading…
Reference in New Issue
Block a user