Skip to content

Commit 5894538

Browse files
committed
Fix: Requested changes
1 parent f1156db commit 5894538

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

src/Files.App/Views/Properties/SecurityPage.xaml

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -67,18 +67,20 @@
6767
Orientation="Horizontal"
6868
Spacing="8">
6969

70-
<Button Padding="6,4" Command="{x:Bind SecurityViewModel.AddAccessControlEntryCommand}">
71-
<StackPanel Orientation="Horizontal" Spacing="6">
72-
<FontIcon FontSize="16" Glyph="&#xE710;" />
73-
<TextBlock Text="{helpers:ResourceString Name=Add}" />
74-
</StackPanel>
70+
<Button
71+
Padding="8"
72+
Background="Transparent"
73+
BorderBrush="Transparent"
74+
Command="{x:Bind SecurityViewModel.AddAccessControlEntryCommand}">
75+
<FontIcon FontSize="16" Glyph="&#xE710;" />
7576
</Button>
7677

77-
<Button Padding="6,4" Command="{x:Bind SecurityViewModel.RemoveAccessControlEntryCommand}">
78-
<StackPanel Orientation="Horizontal" Spacing="6">
79-
<FontIcon FontSize="16" Glyph="&#xE738;" />
80-
<TextBlock Text="{helpers:ResourceString Name=Remove}" />
81-
</StackPanel>
78+
<Button
79+
Padding="8"
80+
Background="Transparent"
81+
BorderBrush="Transparent"
82+
Command="{x:Bind SecurityViewModel.RemoveAccessControlEntryCommand}">
83+
<FontIcon FontSize="16" Glyph="&#xE738;" />
8284
</Button>
8385

8486
</StackPanel>

0 commit comments

Comments
 (0)