Give buttons a slightly ligher colour

This commit is contained in:
Paddy Xu
2017-07-18 20:43:14 +03:00
parent 4cc98c59fd
commit 5f6c5d0e07

View File

@@ -60,11 +60,11 @@
<DockPanel x:Name="titlebar" Height="28" Dock="Top">
<fa:ImageAwesome DockPanel.Dock="Right" x:Name="buttonCloseWindow" Icon="TimesCircle"
WindowChrome.IsHitTestVisibleInChrome="True"
Width="15" Height="15" Margin="5,0,10,0" Foreground="Gray"
Width="15" Height="15" Margin="5,0,10,0" Foreground="#E5868686"
Cursor="Hand" />
<fa:ImageAwesome DockPanel.Dock="Right" x:Name="buttonWindowStatus"
WindowChrome.IsHitTestVisibleInChrome="True"
Width="14" Height="14" Margin="5,0,5,0" Foreground="Gray"
Width="14" Height="14" Margin="5,0,5,0" Foreground="#E5868686"
Visibility="{Binding ContextObject.CanResize,ElementName=mainWindow,Converter={StaticResource BooleanToVisibilityConverter}}"
Cursor="Hand">
<fa:ImageAwesome.Style>
@@ -85,7 +85,7 @@
</fa:ImageAwesome>
<fa:ImageAwesome DockPanel.Dock="Right" x:Name="buttonShare" Icon="ShareAlt"
WindowChrome.IsHitTestVisibleInChrome="True"
Width="14" Height="14" Margin="10,0,5,0" Foreground="Gray"
Width="14" Height="14" Margin="10,0,5,0" Foreground="#E5868686"
Cursor="Hand" />
<Button x:Name="buttonOpenWith" DockPanel.Dock="Right" Content="Open with..." Height="20"
Margin="10,0,0,0" Padding="5,0"
@@ -104,7 +104,7 @@
Cursor="Hand">
<fa:ImageAwesome.Style>
<Style TargetType="{x:Type fa:ImageAwesome}">
<Setter Property="Foreground" Value="Gray" />
<Setter Property="Foreground" Value="#E5868686" />
<Setter Property="LayoutTransform">
<Setter.Value>
<RotateTransform Angle="-45" />
@@ -112,7 +112,7 @@
</Setter>
<Style.Triggers>
<DataTrigger Binding="{Binding Pinned, ElementName=mainWindow}" Value="True">
<Setter Property="Foreground" Value="Black" />
<Setter Property="Foreground" Value="#E53C3C3C" />
<Setter Property="LayoutTransform">
<Setter.Value>
<RotateTransform Angle="0" />