Révision 18f910c6 GES_PAC/Resources/Styles/Styles.xaml
GES_PAC/Resources/Styles/Styles.xaml | ||
---|---|---|
1 | 1 |
<?xml version="1.0" encoding="UTF-8" ?> |
2 | 2 |
<?xaml-comp compile="true" ?> |
3 |
<ResourceDictionary |
|
4 |
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" |
|
5 |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"> |
|
3 |
<ResourceDictionary xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"> |
|
6 | 4 |
|
7 | 5 |
<Style TargetType="ActivityIndicator"> |
8 | 6 |
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> |
9 | 7 |
</Style> |
10 | 8 |
|
11 | 9 |
<Style TargetType="IndicatorView"> |
12 |
<Setter Property="IndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}"/> |
|
13 |
<Setter Property="SelectedIndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray100}}"/> |
|
10 |
<Setter Property="IndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" />
|
|
11 |
<Setter Property="SelectedIndicatorColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray100}}" />
|
|
14 | 12 |
</Style> |
15 | 13 |
|
16 | 14 |
<Style TargetType="Border"> |
17 | 15 |
<Setter Property="Stroke" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" /> |
18 |
<Setter Property="StrokeShape" Value="Rectangle"/> |
|
19 |
<Setter Property="StrokeThickness" Value="1"/> |
|
16 |
<Setter Property="StrokeShape" Value="Rectangle" />
|
|
17 |
<Setter Property="StrokeThickness" Value="1" />
|
|
20 | 18 |
</Style> |
21 | 19 |
|
22 | 20 |
<Style TargetType="BoxView"> |
23 |
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" />
|
|
21 |
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" /> |
|
24 | 22 |
</Style> |
25 | 23 |
|
26 | 24 |
<Style TargetType="Button"> |
27 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource PrimaryDarkText}}" /> |
|
28 |
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource PrimaryDark}}" /> |
|
29 |
<Setter Property="FontFamily" Value="OpenSansRegular"/> |
|
30 |
<Setter Property="FontSize" Value="14"/> |
|
31 |
<Setter Property="BorderWidth" Value="0"/> |
|
32 |
<Setter Property="CornerRadius" Value="8"/> |
|
33 |
<Setter Property="Padding" Value="14,10"/> |
|
34 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
35 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
25 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Primary}}" /> |
|
26 |
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> |
|
27 |
<Setter Property="FontFamily" Value="OpenSansRegular" /> |
|
28 |
<Setter Property="FontSize" Value="14" /> |
|
29 |
<Setter Property="CornerRadius" Value="8" /> |
|
30 |
<Setter Property="MinimumHeightRequest" Value="44" /> |
|
31 |
<Setter Property="MinimumWidthRequest" Value="44" /> |
|
36 | 32 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
37 | 33 |
<VisualStateGroupList> |
38 | 34 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
43 | 39 |
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray600}}" /> |
44 | 40 |
</VisualState.Setters> |
45 | 41 |
</VisualState> |
46 |
<VisualState x:Name="PointerOver" /> |
|
47 | 42 |
</VisualStateGroup> |
48 | 43 |
</VisualStateGroupList> |
49 | 44 |
</Setter> |
... | ... | |
51 | 46 |
|
52 | 47 |
<Style TargetType="CheckBox"> |
53 | 48 |
<Setter Property="Color" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" /> |
54 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
55 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
49 |
<Setter Property="MinimumHeightRequest" Value="44" />
|
|
50 |
<Setter Property="MinimumWidthRequest" Value="44" />
|
|
56 | 51 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
57 | 52 |
<VisualStateGroupList> |
58 | 53 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
70 | 65 |
<Style TargetType="DatePicker"> |
71 | 66 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" /> |
72 | 67 |
<Setter Property="BackgroundColor" Value="Transparent" /> |
73 |
<Setter Property="FontFamily" Value="OpenSansRegular"/> |
|
74 |
<Setter Property="FontSize" Value="14"/> |
|
75 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
76 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
68 |
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
69 |
<Setter Property="FontSize" Value="14" />
|
|
70 |
<Setter Property="MinimumHeightRequest" Value="44" />
|
|
71 |
<Setter Property="MinimumWidthRequest" Value="44" />
|
|
77 | 72 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
78 | 73 |
<VisualStateGroupList> |
79 | 74 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
91 | 86 |
<Style TargetType="Editor"> |
92 | 87 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> |
93 | 88 |
<Setter Property="BackgroundColor" Value="Transparent" /> |
94 |
<Setter Property="FontFamily" Value="OpenSansRegular"/> |
|
89 |
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
95 | 90 |
<Setter Property="FontSize" Value="14" /> |
96 | 91 |
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" /> |
97 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
98 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
92 |
<Setter Property="MinimumHeightRequest" Value="44" />
|
|
93 |
<Setter Property="MinimumWidthRequest" Value="44" />
|
|
99 | 94 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
100 | 95 |
<VisualStateGroupList> |
101 | 96 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
113 | 108 |
<Style TargetType="Entry"> |
114 | 109 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> |
115 | 110 |
<Setter Property="BackgroundColor" Value="Transparent" /> |
116 |
<Setter Property="FontFamily" Value="OpenSansRegular"/> |
|
111 |
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
117 | 112 |
<Setter Property="FontSize" Value="14" /> |
118 | 113 |
<Setter Property="PlaceholderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" /> |
119 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
120 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
114 |
<Setter Property="MinimumHeightRequest" Value="44" />
|
|
115 |
<Setter Property="MinimumWidthRequest" Value="44" />
|
|
121 | 116 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
122 | 117 |
<VisualStateGroupList> |
123 | 118 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
136 | 131 |
<Setter Property="HasShadow" Value="False" /> |
137 | 132 |
<Setter Property="BorderColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" /> |
138 | 133 |
<Setter Property="CornerRadius" Value="8" /> |
139 |
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" /> |
|
140 | 134 |
</Style> |
141 | 135 |
|
142 | 136 |
<Style TargetType="ImageButton"> |
143 | 137 |
<Setter Property="Opacity" Value="1" /> |
144 |
<Setter Property="BorderColor" Value="Transparent"/> |
|
145 |
<Setter Property="BorderWidth" Value="0"/> |
|
146 |
<Setter Property="CornerRadius" Value="0"/> |
|
147 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
148 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
138 |
<Setter Property="BorderColor" Value="Transparent" />
|
|
139 |
<Setter Property="BorderWidth" Value="0" />
|
|
140 |
<Setter Property="CornerRadius" Value="0" />
|
|
141 |
<Setter Property="MinimumHeightRequest" Value="44" />
|
|
142 |
<Setter Property="MinimumWidthRequest" Value="44" />
|
|
149 | 143 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
150 | 144 |
<VisualStateGroupList> |
151 | 145 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
155 | 149 |
<Setter Property="Opacity" Value="0.5" /> |
156 | 150 |
</VisualState.Setters> |
157 | 151 |
</VisualState> |
158 |
<VisualState x:Name="PointerOver" /> |
|
159 | 152 |
</VisualStateGroup> |
160 | 153 |
</VisualStateGroupList> |
161 | 154 |
</Setter> |
162 | 155 |
</Style> |
163 | 156 |
|
164 | 157 |
<Style TargetType="Label"> |
165 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" />
|
|
158 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" />
|
|
166 | 159 |
<Setter Property="BackgroundColor" Value="Transparent" /> |
167 | 160 |
<Setter Property="FontFamily" Value="OpenSansRegular" /> |
168 | 161 |
<Setter Property="FontSize" Value="14" /> |
... | ... | |
180 | 173 |
</Setter> |
181 | 174 |
</Style> |
182 | 175 |
|
183 |
<Style TargetType="Span"> |
|
184 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> |
|
185 |
</Style> |
|
186 |
|
|
187 |
<Style TargetType="Label" x:Key="Headline"> |
|
188 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource MidnightBlue}, Dark={StaticResource White}}" /> |
|
189 |
<Setter Property="FontSize" Value="32" /> |
|
190 |
<Setter Property="HorizontalOptions" Value="Center" /> |
|
191 |
<Setter Property="HorizontalTextAlignment" Value="Center" /> |
|
192 |
</Style> |
|
193 |
|
|
194 |
<Style TargetType="Label" x:Key="SubHeadline"> |
|
195 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource MidnightBlue}, Dark={StaticResource White}}" /> |
|
196 |
<Setter Property="FontSize" Value="24" /> |
|
197 |
<Setter Property="HorizontalOptions" Value="Center" /> |
|
198 |
<Setter Property="HorizontalTextAlignment" Value="Center" /> |
|
199 |
</Style> |
|
200 |
|
|
201 | 176 |
<Style TargetType="ListView"> |
202 | 177 |
<Setter Property="SeparatorColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray500}}" /> |
203 | 178 |
<Setter Property="RefreshControlColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" /> |
... | ... | |
207 | 182 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" /> |
208 | 183 |
<Setter Property="TitleColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" /> |
209 | 184 |
<Setter Property="BackgroundColor" Value="Transparent" /> |
210 |
<Setter Property="FontFamily" Value="OpenSansRegular"/> |
|
185 |
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
211 | 186 |
<Setter Property="FontSize" Value="14" /> |
212 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
213 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
187 |
<Setter Property="MinimumHeightRequest" Value="44" />
|
|
188 |
<Setter Property="MinimumWidthRequest" Value="44" />
|
|
214 | 189 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
215 | 190 |
<VisualStateGroupList> |
216 | 191 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
243 | 218 |
</Style> |
244 | 219 |
|
245 | 220 |
<Style TargetType="RadioButton"> |
246 |
<Setter Property="BackgroundColor" Value="Transparent"/> |
|
221 |
<Setter Property="BackgroundColor" Value="Transparent" />
|
|
247 | 222 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> |
248 |
<Setter Property="FontFamily" Value="OpenSansRegular"/> |
|
249 |
<Setter Property="FontSize" Value="14"/> |
|
250 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
251 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
223 |
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
224 |
<Setter Property="FontSize" Value="14" />
|
|
225 |
<Setter Property="MinimumHeightRequest" Value="44" />
|
|
226 |
<Setter Property="MinimumWidthRequest" Value="44" />
|
|
252 | 227 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
253 | 228 |
<VisualStateGroupList> |
254 | 229 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
274 | 249 |
<Setter Property="BackgroundColor" Value="Transparent" /> |
275 | 250 |
<Setter Property="FontFamily" Value="OpenSansRegular" /> |
276 | 251 |
<Setter Property="FontSize" Value="14" /> |
277 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
278 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
252 |
<Setter Property="MinimumHeightRequest" Value="44" />
|
|
253 |
<Setter Property="MinimumWidthRequest" Value="44" />
|
|
279 | 254 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
280 | 255 |
<VisualStateGroupList> |
281 | 256 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
329 | 304 |
<VisualState x:Name="Normal" /> |
330 | 305 |
<VisualState x:Name="Disabled"> |
331 | 306 |
<VisualState.Setters> |
332 |
<Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/> |
|
333 |
<Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/> |
|
334 |
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}"/> |
|
307 |
<Setter Property="MinimumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
308 |
<Setter Property="MaximumTrackColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
309 |
<Setter Property="ThumbColor" Value="{AppThemeBinding Light={StaticResource Gray300}, Dark={StaticResource Gray600}}" />
|
|
335 | 310 |
</VisualState.Setters> |
336 | 311 |
</VisualState> |
337 | 312 |
</VisualStateGroup> |
... | ... | |
374 | 349 |
|
375 | 350 |
<Style TargetType="TimePicker"> |
376 | 351 |
<Setter Property="TextColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource White}}" /> |
377 |
<Setter Property="BackgroundColor" Value="Transparent"/> |
|
378 |
<Setter Property="FontFamily" Value="OpenSansRegular"/> |
|
379 |
<Setter Property="FontSize" Value="14"/> |
|
380 |
<Setter Property="MinimumHeightRequest" Value="44"/> |
|
381 |
<Setter Property="MinimumWidthRequest" Value="44"/> |
|
352 |
<Setter Property="BackgroundColor" Value="Transparent" />
|
|
353 |
<Setter Property="FontFamily" Value="OpenSansRegular" />
|
|
354 |
<Setter Property="FontSize" Value="14" />
|
|
355 |
<Setter Property="MinimumHeightRequest" Value="44" />
|
|
356 |
<Setter Property="MinimumWidthRequest" Value="44" />
|
|
382 | 357 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
383 | 358 |
<VisualStateGroupList> |
384 | 359 |
<VisualStateGroup x:Name="CommonStates"> |
... | ... | |
392 | 367 |
</VisualStateGroupList> |
393 | 368 |
</Setter> |
394 | 369 |
</Style> |
395 |
|
|
396 |
<!-- |
|
397 |
<Style TargetType="TitleBar"> |
|
398 |
<Setter Property="MinimumHeightRequest" Value="32"/> |
|
399 |
<Setter Property="VisualStateManager.VisualStateGroups"> |
|
400 |
<VisualStateGroupList> |
|
401 |
<VisualStateGroup x:Name="TitleActiveStates"> |
|
402 |
<VisualState x:Name="TitleBarTitleActive"> |
|
403 |
<VisualState.Setters> |
|
404 |
<Setter Property="BackgroundColor" Value="Transparent" /> |
|
405 |
<Setter Property="ForegroundColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource White}}" /> |
|
406 |
</VisualState.Setters> |
|
407 |
</VisualState> |
|
408 |
<VisualState x:Name="TitleBarTitleInactive"> |
|
409 |
<VisualState.Setters> |
|
410 |
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" /> |
|
411 |
<Setter Property="ForegroundColor" Value="{AppThemeBinding Light={StaticResource Gray400}, Dark={StaticResource Gray500}}" /> |
|
412 |
</VisualState.Setters> |
|
413 |
</VisualState> |
|
414 |
</VisualStateGroup> |
|
415 |
</VisualStateGroupList> |
|
416 |
</Setter> |
|
417 |
</Style> |
|
418 |
--> |
|
419 | 370 |
|
420 |
<Style TargetType="Page" ApplyToDerivedTypes="True">
|
|
421 |
<Setter Property="Padding" Value="0"/> |
|
422 |
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" />
|
|
371 |
<Style ApplyToDerivedTypes="True" TargetType="Page">
|
|
372 |
<Setter Property="Padding" Value="0" />
|
|
373 |
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" /> |
|
423 | 374 |
</Style> |
424 | 375 |
|
425 |
<Style TargetType="Shell" ApplyToDerivedTypes="True">
|
|
426 |
<Setter Property="Shell.BackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" />
|
|
427 |
<Setter Property="Shell.ForegroundColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource SecondaryDarkText}}" />
|
|
428 |
<Setter Property="Shell.TitleColor" Value="{AppThemeBinding Light={StaticResource Black}, Dark={StaticResource SecondaryDarkText}}" />
|
|
376 |
<Style ApplyToDerivedTypes="True" TargetType="Shell">
|
|
377 |
<Setter Property="Shell.BackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource Gray950}}" />
|
|
378 |
<Setter Property="Shell.ForegroundColor" Value="{OnPlatform WinUI={StaticResource Primary}, Default={StaticResource White}}" />
|
|
379 |
<Setter Property="Shell.TitleColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource White}}" />
|
|
429 | 380 |
<Setter Property="Shell.DisabledColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" /> |
430 | 381 |
<Setter Property="Shell.UnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray200}}" /> |
431 | 382 |
<Setter Property="Shell.NavBarHasShadow" Value="False" /> |
432 | 383 |
<Setter Property="Shell.TabBarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Black}}" /> |
433 |
<Setter Property="Shell.TabBarForegroundColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" />
|
|
434 |
<Setter Property="Shell.TabBarTitleColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" />
|
|
384 |
<Setter Property="Shell.TabBarForegroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
385 |
<Setter Property="Shell.TabBarTitleColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
435 | 386 |
<Setter Property="Shell.TabBarUnselectedColor" Value="{AppThemeBinding Light={StaticResource Gray900}, Dark={StaticResource Gray200}}" /> |
436 | 387 |
</Style> |
437 | 388 |
|
438 | 389 |
<Style TargetType="NavigationPage"> |
439 |
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource OffBlack}}" />
|
|
390 |
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource Gray950}}" />
|
|
440 | 391 |
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" /> |
441 | 392 |
<Setter Property="IconColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource White}}" /> |
442 | 393 |
</Style> |
443 | 394 |
|
444 | 395 |
<Style TargetType="TabbedPage"> |
445 | 396 |
<Setter Property="BarBackgroundColor" Value="{AppThemeBinding Light={StaticResource White}, Dark={StaticResource Gray950}}" /> |
446 |
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Magenta}, Dark={StaticResource White}}" />
|
|
397 |
<Setter Property="BarTextColor" Value="{AppThemeBinding Light={StaticResource Primary}, Dark={StaticResource White}}" />
|
|
447 | 398 |
<Setter Property="UnselectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray200}, Dark={StaticResource Gray950}}" /> |
448 | 399 |
<Setter Property="SelectedTabColor" Value="{AppThemeBinding Light={StaticResource Gray950}, Dark={StaticResource Gray200}}" /> |
449 | 400 |
</Style> |
450 | 401 |
|
402 |
|
|
403 |
<Style x:Key="btnPlus" TargetType="Button"> |
|
404 |
<Setter Property="BackgroundColor" Value="{StaticResource InraePrimary}" /> |
|
405 |
<Setter Property="TextColor" Value="White" /> |
|
406 |
<Setter Property="CornerRadius" Value="10" /> |
|
407 |
<Setter Property="Padding" Value="14,10" /> |
|
408 |
<Setter Property="FontSize" Value="Medium" /> |
|
409 |
</Style> |
|
410 |
<Style x:Key="btnValidate" TargetType="Button"> |
|
411 |
<Setter Property="BackgroundColor" Value="{StaticResource InraePrimary}" /> |
|
412 |
<Setter Property="TextColor" Value="White" /> |
|
413 |
<Setter Property="CornerRadius" Value="10" /> |
|
414 |
<Setter Property="Padding" Value="14,10" /> |
|
415 |
<Setter Property="FontSize" Value="Medium" /> |
|
416 |
</Style> |
|
417 |
<Style x:Key="btnUpdate" TargetType="Button"> |
|
418 |
<Setter Property="BackgroundColor" Value="{StaticResource InraeSecondary}" /> |
|
419 |
<Setter Property="TextColor" Value="White" /> |
|
420 |
<Setter Property="CornerRadius" Value="10" /> |
|
421 |
<Setter Property="Padding" Value="14,10" /> |
|
422 |
<Setter Property="FontSize" Value="Medium" /> |
|
423 |
</Style> |
|
424 |
<Style x:Key="btnNormal" TargetType="Button"> |
|
425 |
<Setter Property="TextColor" Value="White" /> |
|
426 |
<Setter Property="CornerRadius" Value="10" /> |
|
427 |
<Setter Property="Padding" Value="14,10" /> |
|
428 |
<Setter Property="FontSize" Value="Medium" /> |
|
429 |
</Style> |
|
430 |
<Style x:Key="btnAccueil" TargetType="Button"> |
|
431 |
<Setter Property="TextColor" Value="White" /> |
|
432 |
<Setter Property="CornerRadius" Value="10" /> |
|
433 |
<Setter Property="Padding" Value="14,10" /> |
|
434 |
<Setter Property="Margin" Value="0,10" /> |
|
435 |
<Setter Property="FontSize" Value="Medium" /> |
|
436 |
</Style> |
|
437 |
<Style x:Key="btnRAZ" TargetType="Button"> |
|
438 |
<Setter Property="BackgroundColor" Value="{StaticResource InraeGray}" /> |
|
439 |
<Setter Property="TextColor" Value="White" /> |
|
440 |
<Setter Property="CornerRadius" Value="10" /> |
|
441 |
<Setter Property="Padding" Value="14,10" /> |
|
442 |
<Setter Property="FontSize" Value="Medium" /> |
|
443 |
</Style> |
|
444 |
<Style x:Key="btnCancel" TargetType="Button"> |
|
445 |
<Setter Property="BackgroundColor" Value="{StaticResource InraeGray}" /> |
|
446 |
<Setter Property="TextColor" Value="White" /> |
|
447 |
<Setter Property="CornerRadius" Value="10" /> |
|
448 |
<Setter Property="Padding" Value="14,10" /> |
|
449 |
<Setter Property="FontSize" Value="Medium" /> |
|
450 |
</Style> |
|
451 |
<Style x:Key="btnDelete" TargetType="Button"> |
|
452 |
<Setter Property="BackgroundColor" Value="{StaticResource InraeDelete}" /> |
|
453 |
<Setter Property="TextColor" Value="White" /> |
|
454 |
<Setter Property="CornerRadius" Value="10" /> |
|
455 |
<Setter Property="Padding" Value="14,10" /> |
|
456 |
<Setter Property="FontSize" Value="Medium" /> |
|
457 |
</Style> |
|
458 |
|
|
459 |
<Style x:Key="textInfoAccueilStyle" TargetType="Label"> |
|
460 |
<Setter Property="BackgroundColor" Value="{StaticResource InraeTertiary}" /> |
|
461 |
<Setter Property="TextColor" Value="White" /> |
|
462 |
<Setter Property="FontSize" Value="Medium" /> |
|
463 |
<Setter Property="Padding" Value="10" /> |
|
464 |
|
|
465 |
|
|
466 |
</Style> |
|
467 |
<Style x:Key="textTitre" TargetType="Label"> |
|
468 |
<Setter Property="TextColor" Value="{StaticResource InraePrimary}" /> |
|
469 |
<Setter Property="HorizontalTextAlignment" Value="Center" /> |
|
470 |
<Setter Property="FontSize" Value="Large" /> |
|
471 |
|
|
472 |
</Style> |
|
473 |
|
|
474 |
<Style x:Key="textLabel" TargetType="Label"> |
|
475 |
<Setter Property="TextColor" Value="{StaticResource InraeTertiary}" /> |
|
476 |
<Setter Property="FontSize" Value="Medium" /> |
|
477 |
</Style> |
|
478 |
|
|
479 |
|
|
451 | 480 |
</ResourceDictionary> |
Formats disponibles : Unified diff