Skip to content

Commit

Permalink
Fixed small UI problem with the dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
Cjreek committed Aug 2, 2023
1 parent 8fa018a commit f3c21fa
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions eos-edit/Views/CustomObjectView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button Grid.Column="0" Content="πŸ‘…" FontSize="14" Foreground="#505050" Height="24" Margin="0,0,0,0" Command="{Binding ElementName=page, Path=DataContext.MoveObjectPropertyUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" Content="πŸ‘‡" FontSize="14" Foreground="#505050" Height="24" Margin="1,0,0,0" Command="{Binding ElementName=page, Path=DataContext.MoveObjectPropertyDownCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="0" Content="πŸ‘…" FontSize="14" Height="24" Margin="0,0,0,0" Command="{Binding ElementName=page, Path=DataContext.MoveObjectPropertyUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" Content="πŸ‘‡" FontSize="14" Height="24" Margin="1,0,0,0" Command="{Binding ElementName=page, Path=DataContext.MoveObjectPropertyDownCommand}" CommandParameter="{Binding}"/>
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
Expand Down
4 changes: 2 additions & 2 deletions eos-edit/Views/ItemPropertyCostTableView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Foreground="#505050" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Foreground="#505050" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveDownCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveDownCommand}" CommandParameter="{Binding}"/>
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
Expand Down
4 changes: 2 additions & 2 deletions eos-edit/Views/ItemPropertyTableView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Foreground="#505050" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Foreground="#505050" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveDownCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveDownCommand}" CommandParameter="{Binding}"/>
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
Expand Down
2 changes: 1 addition & 1 deletion eos-edit/Views/MainWindow.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="Eos.Views.MainWindow" MinHeight="300" MinWidth="500"
Height="700" Width="1100" Loaded="mainWindow_Loaded"
x:Name="mainWindow" Tag="Eos Toolset v0.72" FontFamily="Segoe UI"
x:Name="mainWindow" Tag="Eos Toolset v0.72a" FontFamily="Segoe UI"
Closing="mainWindow_Closing"
Icon="/Assets/Icons/Eos.ico">
<Window.Title>
Expand Down
4 changes: 2 additions & 2 deletions eos-edit/Views/ModelExtensionView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button Grid.Column="0" Content="πŸ‘…" FontSize="14" Foreground="#505050" Height="24" Margin="0,0,0,0" Command="{Binding ElementName=page, Path=DataContext.MoveExtensionPropertyUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" Content="πŸ‘‡" FontSize="14" Foreground="#505050" Height="24" Margin="1,0,0,0" Command="{Binding ElementName=page, Path=DataContext.MoveExtensionPropertyDownCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="0" Content="πŸ‘…" FontSize="14" Height="24" Margin="0,0,0,0" Command="{Binding ElementName=page, Path=DataContext.MoveExtensionPropertyUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" Content="πŸ‘‡" FontSize="14" Height="24" Margin="1,0,0,0" Command="{Binding ElementName=page, Path=DataContext.MoveExtensionPropertyDownCommand}" CommandParameter="{Binding}"/>
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
Expand Down
4 changes: 2 additions & 2 deletions eos-edit/Views/PackageFeatPreferencesTableView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Foreground="#505050" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveFeatPrefUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Foreground="#505050" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveFeatPrefDownCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveFeatPrefUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveFeatPrefDownCommand}" CommandParameter="{Binding}"/>
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
Expand Down
4 changes: 2 additions & 2 deletions eos-edit/Views/PackageSkillPreferencesTableView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Foreground="#505050" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveSkillPrefUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Foreground="#505050" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveSkillPrefDownCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveSkillPrefUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveSkillPrefDownCommand}" CommandParameter="{Binding}"/>
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
Expand Down
4 changes: 2 additions & 2 deletions eos-edit/Views/PackageSpellPreferencesTableView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>

<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Foreground="#505050" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveSpellPrefUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Foreground="#505050" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveSpellPrefDownCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="0" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘…" FontSize="14" Height="24" Margin="0,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveSpellPrefUpCommand}" CommandParameter="{Binding}"/>
<Button Grid.Column="1" IsEnabled="{Binding ElementName=page, Path=!DataContext.Data.IsReadonly}" Content="πŸ‘‡" FontSize="14" Height="24" Margin="1,1,0,-1" Command="{Binding ElementName=page, Path=DataContext.MoveSpellPrefDownCommand}" CommandParameter="{Binding}"/>
</Grid>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
Expand Down

0 comments on commit f3c21fa

Please sign in to comment.