|
11 | 11 | <Setter Property="Width" Value="46" />
|
12 | 12 | </Style>
|
13 | 13 | <Style x:Key="ImageIconStyle" TargetType="{x:Type Image}">
|
14 |
| - <Setter Property="Height" Value="24" /> |
15 |
| - <Setter Property="Width" Value="24" /> |
| 14 | + <Setter Property="Height" Value="20" /> |
| 15 | + <Setter Property="Width" Value="20" /> |
16 | 16 | </Style>
|
17 | 17 | <Style
|
18 | 18 | x:Key="ItemGlyph"
|
19 | 19 | BasedOn="{StaticResource BaseGlyphStyle}"
|
20 | 20 | TargetType="{x:Type TextBlock}">
|
21 |
| - <Setter Property="FontSize" Value="24" /> |
22 |
| - <Setter Property="Width" Value="24" /> |
23 |
| - <Setter Property="Height" Value="24" /> |
| 21 | + <Setter Property="FontSize" Value="20" /> |
| 22 | + <Setter Property="Width" Value="20" /> |
| 23 | + <Setter Property="Height" Value="20" /> |
24 | 24 | <Setter Property="Foreground" Value="#100f0f" />
|
25 | 25 | </Style>
|
26 | 26 | <Style
|
27 | 27 | x:Key="QueryBoxStyle"
|
28 | 28 | BasedOn="{StaticResource BaseQueryBoxStyle}"
|
29 | 29 | TargetType="{x:Type TextBox}">
|
30 |
| - <Setter Property="Padding" Value="0,0,42,0" /> |
| 30 | + <Setter Property="Padding" Value="0 0 42 0" /> |
31 | 31 | <Setter Property="Foreground" Value="#282728" />
|
32 | 32 | <Setter Property="FontSize" Value="16" />
|
33 | 33 | <Setter Property="Height" Value="24" />
|
|
37 | 37 | x:Key="QuerySuggestionBoxStyle"
|
38 | 38 | BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}"
|
39 | 39 | TargetType="{x:Type TextBox}">
|
40 |
| - <Setter Property="Padding" Value="0,0,42,0" /> |
| 40 | + <Setter Property="Padding" Value="0 0 42 0" /> |
41 | 41 | <Setter Property="Background" Value="Transparent" />
|
42 | 42 | <Setter Property="Height" Value="24" />
|
43 | 43 | <Setter Property="FontSize" Value="16" />
|
|
50 | 50 | TargetType="{x:Type Border}">
|
51 | 51 | <Setter Property="BorderThickness" Value="1" />
|
52 | 52 | <Setter Property="BorderBrush" Value="#bcbabd" />
|
53 |
| - <Setter Property="Background" Value="#edebee" /> |
| 53 | + <Setter Property="Background" Value="#FAFAFA" /> |
54 | 54 | <Setter Property="CornerRadius" Value="6" />
|
55 | 55 | <Setter Property="UseLayoutRounding" Value="True" />
|
56 | 56 | </Style>
|
|
68 | 68 | x:Key="ItemTitleStyle"
|
69 | 69 | BasedOn="{StaticResource BaseItemTitleStyle}"
|
70 | 70 | TargetType="{x:Type TextBlock}">
|
| 71 | + <Setter Property="Margin" Value="0" /> |
71 | 72 | <Setter Property="FontSize" Value="14" />
|
72 | 73 | <Setter Property="Foreground" Value="#100f0f" />
|
73 | 74 | </Style>
|
74 | 75 | <Style
|
75 | 76 | x:Key="ItemSubTitleStyle"
|
76 | 77 | BasedOn="{StaticResource BaseItemSubTitleStyle}"
|
77 | 78 | TargetType="{x:Type TextBlock}">
|
| 79 | + <Setter Property="Margin" Value="0" /> |
78 | 80 | <Setter Property="FontSize" Value="10" />
|
79 | 81 | <Setter Property="Foreground" Value="#8f8d90" />
|
80 | 82 | </Style>
|
|
84 | 86 | TargetType="{x:Type Rectangle}">
|
85 | 87 | <Setter Property="Fill" Value="#dedcde" />
|
86 | 88 | <Setter Property="Height" Value="1" />
|
87 |
| - <Setter Property="Margin" Value="0,0,0,4" /> |
| 89 | + <Setter Property="Margin" Value="0 0 0 4" /> |
88 | 90 | </Style>
|
89 | 91 | <Style x:Key="HighlightStyle" />
|
90 | 92 | <Style
|
91 | 93 | x:Key="ItemTitleSelectedStyle"
|
92 | 94 | BasedOn="{StaticResource BaseItemTitleSelectedStyle}"
|
93 | 95 | TargetType="{x:Type TextBlock}">
|
94 | 96 | <Setter Property="FontSize" Value="14" />
|
| 97 | + <Setter Property="Margin" Value="0" /> |
95 | 98 | <Setter Property="Foreground" Value="#100f0f" />
|
96 | 99 | </Style>
|
97 | 100 | <Style
|
98 | 101 | x:Key="ItemSubTitleSelectedStyle"
|
99 | 102 | BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}"
|
100 | 103 | TargetType="{x:Type TextBlock}">
|
101 | 104 | <Setter Property="FontSize" Value="10" />
|
| 105 | + <Setter Property="Margin" Value="0" /> |
102 | 106 | <Setter Property="Foreground" Value="#8f8d90" />
|
103 | 107 | </Style>
|
104 | 108 | <SolidColorBrush x:Key="ItemSelectedBackgroundColor">#d6d4d7</SolidColorBrush>
|
|
113 | 117 | <ControlTemplate TargetType="{x:Type Thumb}">
|
114 | 118 | <Border
|
115 | 119 | Width="4"
|
116 |
| - Margin="0,0,2,0" |
| 120 | + Margin="0 0 2 0" |
117 | 121 | Background="#878687"
|
118 | 122 | BorderBrush="Transparent"
|
119 | 123 | BorderThickness="0"
|
|
136 | 140 | <Setter Property="Height" Value="24" />
|
137 | 141 | </Style>
|
138 | 142 | <Style x:Key="SearchIconPosition" TargetType="{x:Type Canvas}">
|
139 |
| - <Setter Property="Background" Value="#edebee" /> |
140 | 143 | <Setter Property="Width" Value="24" />
|
141 | 144 | <Setter Property="Height" Value="24" />
|
142 |
| - <Setter Property="Margin" Value="0,0,8,0" /> |
| 145 | + <Setter Property="Margin" Value="0 0 8 0" /> |
143 | 146 | <Setter Property="HorizontalAlignment" Value="Right" />
|
144 | 147 | </Style>
|
145 | 148 | <Style x:Key="PluginActivationIcon" TargetType="{x:Type Image}">
|
146 | 149 | <Setter Property="Width" Value="24" />
|
147 | 150 | <Setter Property="Height" Value="24" />
|
148 |
| - <Setter Property="Margin" Value="0,0,8,0" /> |
| 151 | + <Setter Property="Margin" Value="0 0 8 0" /> |
149 | 152 | <Setter Property="HorizontalAlignment" Value="Right" />
|
150 | 153 | <Setter Property="VerticalAlignment" Value="Center" />
|
151 | 154 | </Style>
|
152 | 155 |
|
153 | 156 | <Style x:Key="ItemHotkeyStyle" TargetType="{x:Type TextBlock}">
|
154 |
| - <Setter Property="FontSize" Value="12" /> |
| 157 | + <Setter Property="FontSize" Value="9" /> |
155 | 158 | <Setter Property="Foreground" Value="#8f8d90" />
|
156 | 159 | </Style>
|
157 | 160 | <Style x:Key="ItemHotkeySelectedStyle" TargetType="{x:Type TextBlock}">
|
158 |
| - <Setter Property="FontSize" Value="12" /> |
| 161 | + <Setter Property="FontSize" Value="9" /> |
159 | 162 | <Setter Property="Foreground" Value="#8f8d90" />
|
160 | 163 | </Style>
|
| 164 | + <Style |
| 165 | + x:Key="ItemHotkeyBGStyle" |
| 166 | + BasedOn="{StaticResource BaseItemHotkeyBGStyle}" |
| 167 | + TargetType="{x:Type Border}"> |
| 168 | + <Setter Property="Margin" Value="6 0 6 0" /> |
| 169 | + <Setter Property="Padding" Value="4 2 4 2" /> |
| 170 | + <Setter Property="CornerRadius" Value="2" /> |
| 171 | + </Style> |
| 172 | + <Style |
| 173 | + x:Key="ItemHotkeyBGSelectedStyle" |
| 174 | + BasedOn="{StaticResource BaseItemHotkeyBGSelectedStyle}" |
| 175 | + TargetType="{x:Type Border}"> |
| 176 | + <Setter Property="Margin" Value="6 0 6 0" /> |
| 177 | + <Setter Property="Padding" Value="4 2 4 2" /> |
| 178 | + <Setter Property="CornerRadius" Value="2" /> |
| 179 | + </Style> |
| 180 | + |
161 | 181 | <Style x:Key="ItemGlyphSelectedStyle" TargetType="{x:Type TextBlock}">
|
162 | 182 | <Setter Property="Foreground" Value="#100f0f" />
|
163 |
| - <Setter Property="Width" Value="24" /> |
164 |
| - <Setter Property="Height" Value="24" /> |
165 |
| - <Setter Property="FontSize" Value="24" /> |
| 183 | + <Setter Property="Width" Value="20" /> |
| 184 | + <Setter Property="Height" Value="20" /> |
| 185 | + <Setter Property="FontSize" Value="20" /> |
166 | 186 | </Style>
|
167 | 187 | <CornerRadius x:Key="ItemRadius">6</CornerRadius>
|
168 | 188 | <Thickness x:Key="ItemMargin">4 0 4 0</Thickness>
|
|
172 | 192 | BasedOn="{StaticResource ClockPanel}"
|
173 | 193 | TargetType="{x:Type StackPanel}">
|
174 | 194 | <Setter Property="Orientation" Value="Horizontal" />
|
175 |
| - <Setter Property="Margin" Value="0,0,42,0" /> |
| 195 | + <Setter Property="Margin" Value="0 0 42 0" /> |
176 | 196 | </Style>
|
177 | 197 | <Style
|
178 | 198 | x:Key="ClockBox"
|
179 | 199 | BasedOn="{StaticResource BaseClockBox}"
|
180 | 200 | TargetType="{x:Type TextBlock}">
|
181 | 201 | <Setter Property="FontSize" Value="14" />
|
182 | 202 | <Setter Property="Foreground" Value="#bebebe" />
|
183 |
| - <Setter Property="Margin" Value="0,0,10,0" /> |
| 203 | + <Setter Property="Margin" Value="0 0 10 0" /> |
184 | 204 | <Style.Triggers>
|
185 | 205 | <DataTrigger Binding="{Binding ElementName=DateBox, Path=Visibility}" Value="Visible">
|
186 | 206 | <Setter Property="FontSize" Value="14" />
|
187 |
| - <Setter Property="Margin" Value="0,0,10,3" /> |
| 207 | + <Setter Property="Margin" Value="0 0 10 3" /> |
188 | 208 | </DataTrigger>
|
189 | 209 | </Style.Triggers>
|
190 | 210 |
|
|
198 | 218 | <Style.Triggers>
|
199 | 219 | <DataTrigger Binding="{Binding ElementName=ClockBox, Path=Visibility}" Value="Visible">
|
200 | 220 | <Setter Property="FontSize" Value="14" />
|
201 |
| - <Setter Property="Margin" Value="0,0,0,3" /> |
| 221 | + <Setter Property="Margin" Value="0 0 0 3" /> |
202 | 222 | </DataTrigger>
|
203 | 223 | </Style.Triggers>
|
204 | 224 | </Style>
|
205 | 225 | <Style
|
206 | 226 | x:Key="PreviewBorderStyle"
|
207 | 227 | BasedOn="{StaticResource BasePreviewBorderStyle}"
|
208 | 228 | TargetType="{x:Type Border}">
|
209 |
| - <Setter Property="Margin" Value="0,0,10,8" /> |
| 229 | + <Setter Property="Margin" Value="0 0 10 8" /> |
210 | 230 | <Setter Property="BorderBrush" Value="#dedcde" />
|
211 | 231 | </Style>
|
212 | 232 | <Style
|
|
0 commit comments