|
1 |
| -<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
2 |
| - xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
3 |
| - xmlns:system="clr-namespace:System;assembly=mscorlib"> |
| 1 | +<ResourceDictionary |
| 2 | + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 3 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 4 | + xmlns:system="clr-namespace:System;assembly=mscorlib"> |
4 | 5 | <ResourceDictionary.MergedDictionaries>
|
5 | 6 | <ResourceDictionary Source="pack://application:,,,/Themes/Base.xaml" />
|
6 | 7 | </ResourceDictionary.MergedDictionaries>
|
7 | 8 |
|
8 | 9 | <system:Boolean x:Key="ThemeBlurEnabled">True</system:Boolean>
|
9 |
| - |
10 |
| - <Style x:Key="ItemGlyph" BasedOn="{StaticResource BaseGlyphStyle}" TargetType="{x:Type TextBlock}"> |
| 10 | + <Style x:Key="WindowRadius" TargetType="{x:Type Border}"> |
| 11 | + <Setter Property="CornerRadius" Value="0" /> |
| 12 | + </Style> |
| 13 | + <Style |
| 14 | + x:Key="ItemGlyph" |
| 15 | + BasedOn="{StaticResource BaseGlyphStyle}" |
| 16 | + TargetType="{x:Type TextBlock}"> |
11 | 17 | <Setter Property="Foreground" Value="#ffffff" />
|
12 | 18 | </Style>
|
13 |
| - <Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}"> |
| 19 | + <Style |
| 20 | + x:Key="QueryBoxStyle" |
| 21 | + BasedOn="{StaticResource BaseQueryBoxStyle}" |
| 22 | + TargetType="{x:Type TextBox}"> |
14 | 23 | <Setter Property="Foreground" Value="#FFFFFFFF" />
|
15 | 24 | <Setter Property="Background" Value="Transparent" />
|
16 | 25 | </Style>
|
17 | 26 |
|
18 |
| - <Style x:Key="QuerySuggestionBoxStyle" BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}" TargetType="{x:Type TextBox}"> |
| 27 | + <Style |
| 28 | + x:Key="QuerySuggestionBoxStyle" |
| 29 | + BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}" |
| 30 | + TargetType="{x:Type TextBox}"> |
19 | 31 | <Setter Property="Foreground" Value="LightGray" />
|
20 | 32 | <Setter Property="Opacity" Value="0.5" />
|
21 | 33 | </Style>
|
22 | 34 |
|
23 |
| - <Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}"> |
| 35 | + <Style |
| 36 | + x:Key="WindowBorderStyle" |
| 37 | + BasedOn="{StaticResource BaseWindowBorderStyle}" |
| 38 | + TargetType="{x:Type Border}"> |
| 39 | + <Setter Property="BorderThickness" Value="1" /> |
| 40 | + <Setter Property="BorderBrush" Value="#444444" /> |
| 41 | + <Setter Property="CornerRadius" Value="0" /> |
24 | 42 | <Setter Property="Background">
|
25 | 43 | <Setter.Value>
|
26 |
| - <SolidColorBrush Color="Black" Opacity="0.6"/> |
| 44 | + <SolidColorBrush Opacity="0.9" Color="Black" /> |
27 | 45 | </Setter.Value>
|
28 | 46 | </Setter>
|
29 | 47 | </Style>
|
30 | 48 |
|
31 |
| - <Style x:Key="WindowStyle" BasedOn="{StaticResource BaseWindowStyle}" TargetType="{x:Type Window}"> |
| 49 | + <Style |
| 50 | + x:Key="WindowStyle" |
| 51 | + BasedOn="{StaticResource BaseWindowStyle}" |
| 52 | + TargetType="{x:Type Window}"> |
32 | 53 | <Setter Property="Background">
|
33 | 54 | <Setter.Value>
|
34 |
| - <SolidColorBrush Color="Black" Opacity="0.7"/> |
| 55 | + <SolidColorBrush Opacity="0.7" Color="Black" /> |
35 | 56 | </Setter.Value>
|
36 | 57 | </Setter>
|
37 | 58 | </Style>
|
38 | 59 |
|
39 |
| - <Style x:Key="PendingLineStyle" BasedOn="{StaticResource BasePendingLineStyle}" TargetType="{x:Type Line}"> |
| 60 | + <Style |
| 61 | + x:Key="PendingLineStyle" |
| 62 | + BasedOn="{StaticResource BasePendingLineStyle}" |
| 63 | + TargetType="{x:Type Line}"> |
40 | 64 | <Setter Property="Stroke" Value="White" />
|
41 | 65 | </Style>
|
42 | 66 |
|
43 |
| - <!-- Item Style --> |
44 |
| - <Style x:Key="ItemTitleStyle" BasedOn="{StaticResource BaseItemTitleStyle}" TargetType="{x:Type TextBlock}"> |
45 |
| - <Setter Property="Margin" Value="0, -10"/> |
46 |
| - <Setter Property="Foreground" Value="#FFFFFFFF"/> |
| 67 | + <!-- Item Style --> |
| 68 | + <Style |
| 69 | + x:Key="ItemTitleStyle" |
| 70 | + BasedOn="{StaticResource BaseItemTitleStyle}" |
| 71 | + TargetType="{x:Type TextBlock}"> |
| 72 | + <Setter Property="Margin" Value="0,-10" /> |
| 73 | + <Setter Property="Foreground" Value="#FFFFFFFF" /> |
47 | 74 | </Style>
|
48 |
| - <Style x:Key="ItemSubTitleStyle" BasedOn="{StaticResource BaseItemSubTitleStyle}" TargetType="{x:Type TextBlock}" > |
49 |
| - <Setter Property="Foreground" Value="#FFFFFFFF"/> |
| 75 | + <Style |
| 76 | + x:Key="ItemSubTitleStyle" |
| 77 | + BasedOn="{StaticResource BaseItemSubTitleStyle}" |
| 78 | + TargetType="{x:Type TextBlock}"> |
| 79 | + <Setter Property="Foreground" Value="#FFFFFFFF" /> |
50 | 80 | <Setter Property="Opacity" Value="0.5" />
|
51 | 81 | </Style>
|
52 |
| - <Style x:Key="ItemTitleSelectedStyle" BasedOn="{StaticResource BaseItemTitleSelectedStyle}" TargetType="{x:Type TextBlock}" > |
53 |
| - <Setter Property="Margin" Value="0, -10"/> |
54 |
| - <Setter Property="Foreground" Value="#FFFFFFFF"/> |
| 82 | + <Style |
| 83 | + x:Key="ItemTitleSelectedStyle" |
| 84 | + BasedOn="{StaticResource BaseItemTitleSelectedStyle}" |
| 85 | + TargetType="{x:Type TextBlock}"> |
| 86 | + <Setter Property="Margin" Value="0,-10" /> |
| 87 | + <Setter Property="Foreground" Value="#FFFFFFFF" /> |
55 | 88 | </Style>
|
56 |
| - <Style x:Key="ItemSubTitleSelectedStyle" BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" TargetType="{x:Type TextBlock}" > |
57 |
| - <Setter Property="Foreground" Value="#FFFFFFFF"/> |
| 89 | + <Style |
| 90 | + x:Key="ItemSubTitleSelectedStyle" |
| 91 | + BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" |
| 92 | + TargetType="{x:Type TextBlock}"> |
| 93 | + <Setter Property="Foreground" Value="#FFFFFFFF" /> |
58 | 94 | <Setter Property="Opacity" Value="0.5" />
|
59 | 95 | </Style>
|
60 |
| - <SolidColorBrush x:Key="ItemSelectedBackgroundColor">#356ef3</SolidColorBrush> |
| 96 | + <SolidColorBrush x:Key="ItemSelectedBackgroundColor">#19ffffff</SolidColorBrush> |
61 | 97 |
|
62 |
| - <!-- button style in the middle of the scrollbar --> |
63 |
| - <Style x:Key="ThumbStyle" BasedOn="{StaticResource BaseThumbStyle}" TargetType="{x:Type Thumb}"> |
| 98 | + <!-- button style in the middle of the scrollbar --> |
| 99 | + <Style |
| 100 | + x:Key="ThumbStyle" |
| 101 | + BasedOn="{StaticResource BaseThumbStyle}" |
| 102 | + TargetType="{x:Type Thumb}"> |
64 | 103 | <Setter Property="Template">
|
65 | 104 | <Setter.Value>
|
66 | 105 | <ControlTemplate TargetType="{x:Type Thumb}">
|
67 |
| - <Border CornerRadius="2" DockPanel.Dock="Right" Background="#FFFFFF" Opacity="0.5" BorderBrush="Transparent" BorderThickness="0" /> |
| 106 | + <Border |
| 107 | + Background="#FFFFFF" |
| 108 | + BorderBrush="Transparent" |
| 109 | + BorderThickness="0" |
| 110 | + CornerRadius="2" |
| 111 | + DockPanel.Dock="Right" |
| 112 | + Opacity="0.5" /> |
68 | 113 | </ControlTemplate>
|
69 | 114 | </Setter.Value>
|
70 | 115 | </Setter>
|
71 | 116 | </Style>
|
72 | 117 |
|
73 |
| - <Style x:Key="ScrollBarStyle" BasedOn="{StaticResource BaseScrollBarStyle}" TargetType="{x:Type ScrollBar}"> |
74 |
| - <Setter Property="Background" Value="#a0a0a0"/> |
| 118 | + <Style |
| 119 | + x:Key="ScrollBarStyle" |
| 120 | + BasedOn="{StaticResource BaseScrollBarStyle}" |
| 121 | + TargetType="{x:Type ScrollBar}"> |
| 122 | + <Setter Property="Background" Value="#a0a0a0" /> |
75 | 123 | </Style>
|
76 |
| - <Style x:Key="SearchIconStyle" TargetType="{x:Type Path}" BasedOn="{StaticResource BaseSearchIconStyle}"> |
| 124 | + <Style |
| 125 | + x:Key="SearchIconStyle" |
| 126 | + BasedOn="{StaticResource BaseSearchIconStyle}" |
| 127 | + TargetType="{x:Type Path}"> |
77 | 128 | <Setter Property="Fill" Value="#ffffff" />
|
78 | 129 | <Setter Property="Width" Value="32" />
|
79 | 130 | <Setter Property="Height" Value="32" />
|
|
0 commit comments