mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
use bold colored headers
This commit is contained in:
parent
44782b1ddf
commit
3475d39f37
2 changed files with 5 additions and 1 deletions
|
@ -73,9 +73,11 @@
|
||||||
<Style TargetType="Label"
|
<Style TargetType="Label"
|
||||||
Class="box-header-platform">
|
Class="box-header-platform">
|
||||||
<Setter Property="TextColor"
|
<Setter Property="TextColor"
|
||||||
Value="{StaticResource MutedColor}" />
|
Value="{StaticResource BoxHeaderTextColor}" />
|
||||||
<Setter Property="FontSize"
|
<Setter Property="FontSize"
|
||||||
Value="Small" />
|
Value="Small" />
|
||||||
|
<Setter Property="FontAttributes"
|
||||||
|
Value="Bold" />
|
||||||
</Style>
|
</Style>
|
||||||
<Style TargetType="Button"
|
<Style TargetType="Button"
|
||||||
ApplyToDerivedTypes="True"
|
ApplyToDerivedTypes="True"
|
||||||
|
|
|
@ -25,10 +25,12 @@ namespace Bit.App.Utilities
|
||||||
public object ProvideValue(IServiceProvider serviceProvider)
|
public object ProvideValue(IServiceProvider serviceProvider)
|
||||||
{
|
{
|
||||||
var val = _i18nService.T(Id, P1, P2, P3);
|
var val = _i18nService.T(Id, P1, P2, P3);
|
||||||
|
/*
|
||||||
if(Header && Device.RuntimePlatform == Device.iOS)
|
if(Header && Device.RuntimePlatform == Device.iOS)
|
||||||
{
|
{
|
||||||
return val.ToUpper();
|
return val.ToUpper();
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue