Browse Source

Revert to previous version.

Justin 2 years ago
parent
commit
a0dc16f0a5
1 changed files with 7 additions and 7 deletions
  1. 7 7
      fis/WindowsTitleBar.axaml

+ 7 - 7
fis/WindowsTitleBar.axaml

@@ -6,7 +6,7 @@
              x:Class="fis.WindowsTitleBar">
 	<Grid>
 		<!--The proper way would be not to use white as default, but somehow retrieve the users' window chrome color.-->
-		<DockPanel Background="#3D92FB"
+		<DockPanel Background="#EBEBEB"
 				   IsHitTestVisible="False"
 				   Name="TitleBarBackground"></DockPanel>
 		<DockPanel Name="TitleBar">
@@ -14,13 +14,13 @@
 						DockPanel.Dock="Left"
 						Spacing="0">
 				<Image Source="flyinsono.ico"
-					   Height="24"
-					   Width="24"
+					   Height="20"
+					   Width="20"
 					   VerticalAlignment="Center"
-					   Margin="6,0,3,0"
+					   Margin="5,0,3,0"
 					   Name="WindowIcon"></Image>
-				<TextBlock FontSize="16"
-						   Foreground="White"
+				<TextBlock FontSize="12"
+						   Foreground="Black"
 						   VerticalAlignment="Center"
 						   IsHitTestVisible="False"
 						   Name="WindowsTitle"></TextBlock>
@@ -83,7 +83,7 @@
 					</Button.Resources>
 					<Button.Styles>
 						<Style Selector="Button:pointerover /template/ ContentPresenter#PART_ContentPresenter">
-							<Setter Property="Background" Value="Red"/>
+							<Setter Property="Background" Value="#C6C6C6"/>
 						</Style>
 						<Style Selector="Button:not(:pointerover) /template/ ContentPresenter#PART_ContentPresenter">
 							<Setter Property="Background" Value="Transparent"/>