mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 15:15:34 +03:00
list row separator
This commit is contained in:
parent
dcf412d94d
commit
aa3fd29508
2 changed files with 8 additions and 1 deletions
|
@ -98,7 +98,7 @@
|
||||||
<DataTemplate x:DataType="pages:GroupingsPageListGroup">
|
<DataTemplate x:DataType="pages:GroupingsPageListGroup">
|
||||||
<ViewCell>
|
<ViewCell>
|
||||||
<StackLayout Spacing="0" Padding="0">
|
<StackLayout Spacing="0" Padding="0">
|
||||||
<BoxView StyleClass="box-row-separator"
|
<BoxView StyleClass="list-section-separator"
|
||||||
IsVisible="{Binding First, Converter={StaticResource inverseBool}}" />
|
IsVisible="{Binding First, Converter={StaticResource inverseBool}}" />
|
||||||
<StackLayout StyleClass="list-row-header">
|
<StackLayout StyleClass="list-row-header">
|
||||||
<Label
|
<Label
|
||||||
|
|
|
@ -166,6 +166,13 @@
|
||||||
<Setter Property="Padding"
|
<Setter Property="Padding"
|
||||||
Value="2, 5" />
|
Value="2, 5" />
|
||||||
</Style>
|
</Style>
|
||||||
|
<Style TargetType="BoxView"
|
||||||
|
Class="list-section-separator">
|
||||||
|
<Setter Property="HeightRequest"
|
||||||
|
Value="1" />
|
||||||
|
<Setter Property="Color"
|
||||||
|
Value="{StaticResource ListItemBorderColor}" />
|
||||||
|
</Style>
|
||||||
<Style TargetType="Label"
|
<Style TargetType="Label"
|
||||||
Class="list-title">
|
Class="list-title">
|
||||||
</Style>
|
</Style>
|
||||||
|
|
Loading…
Reference in a new issue