Skip to content

Commit 9e7f0f3

Browse files
committed
Minor changes
1 parent 387dda9 commit 9e7f0f3

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

src/Platforms/SecureFolderFS.Maui/UserControls/BreadcrumbBar.xaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@
1313
<ContentView.Resources>
1414
<vc:BreadcrumbConverter x:Key="BreadcrumbConverter" />
1515

16-
<!-- Pill background for the active (leading) item -->
16+
<!-- Ghost pill for ancestor items -->
1717
<Style x:Key="BreadcrumbPillStyle" TargetType="Border">
1818
<Setter Property="StrokeShape" Value="RoundRectangle 20" />
19-
<Setter Property="Stroke" Value="{AppThemeBinding Light={StaticResource PrimaryLightColor}, Dark={StaticResource PrimaryDarkColor}}" />
2019
<Setter Property="StrokeThickness" Value="0" />
21-
<Setter Property="Padding" Value="10,4" />
22-
<Setter Property="BackgroundColor" Value="{AppThemeBinding Light={StaticResource SecondaryLightColor}, Dark={StaticResource SecondaryDarkColor}}" />
20+
<Setter Property="Padding" Value="10,5" />
21+
<Setter Property="BackgroundColor" Value="Transparent" />
2322
</Style>
2423
</ContentView.Resources>
2524

@@ -50,7 +49,7 @@
5049

5150
<!-- Separator chevron, hidden on the last (leading) item -->
5251
<Grid
53-
Margin="-4,0,4,0"
52+
Margin="4,0"
5453
Opacity="{Binding IsLeading, Mode=OneWay, Converter={StaticResource BoolOpacityConverter}, ConverterParameter='invert'}"
5554
VerticalOptions="Center">
5655
<mi:MauiIcon

src/Platforms/SecureFolderFS.Maui/UserControls/Widgets/HealthWidget.xaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@
2020
<mi:MauiIcon
2121
Icon="{mi_material:Material ChevronRight}"
2222
IconColor="White"
23+
IconSize="20"
2324
OnPlatforms="Android" />
2425
<mi:MauiIcon
2526
Icon="{mi_cupertino:Cupertino ChevronRight}"
2627
IconColor="White"
28+
IconSize="20"
2729
OnPlatforms="iOS" />
2830
</Grid>
2931
</uc:HealthScanControl.IconSlot>

src/Platforms/SecureFolderFS.Maui/ValueConverters/BreadcrumbConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ internal sealed class BreadcrumbConverter : IValueConverter
2626
case "background":
2727
{
2828
return value is not true
29-
? Colors.Transparent
29+
? App.Current.Resources[isDark ? "ShimFillPrimaryDarkColor" : "ShimFillPrimaryLightColor"]
3030
: App.Current.Resources[isDark ? "SecondaryDarkColor" : "SecondaryLightColor"];
3131
}
3232

0 commit comments

Comments
 (0)