diff --git a/src/Files.App.Controls/ThemedIcon/Styles/Icons.Action.xaml b/src/Files.App.Controls/ThemedIcon/Styles/Icons.Action.xaml
index eb99ac4f0b96..aa8ef8ff4496 100644
--- a/src/Files.App.Controls/ThemedIcon/Styles/Icons.Action.xaml
+++ b/src/Files.App.Controls/ThemedIcon/Styles/Icons.Action.xaml
@@ -220,4 +220,58 @@
+
+
+
+
diff --git a/src/Files.App.Controls/ThemedIcon/Styles/Icons.SizeLayout28.xaml b/src/Files.App.Controls/ThemedIcon/Styles/Icons.SizeLayout28.xaml
index 5ad48867f5b9..acef0be97f77 100644
--- a/src/Files.App.Controls/ThemedIcon/Styles/Icons.SizeLayout28.xaml
+++ b/src/Files.App.Controls/ThemedIcon/Styles/Icons.SizeLayout28.xaml
@@ -18,8 +18,14 @@
-
-
+
+
@@ -40,8 +46,14 @@
-
-
+
+
@@ -62,7 +74,10 @@
-
+
@@ -83,8 +98,14 @@
-
-
+
+
@@ -105,8 +126,14 @@
-
-
+
+
@@ -127,8 +154,14 @@
-
-
+
+
@@ -148,8 +181,14 @@
-
-
+
+
@@ -174,7 +213,10 @@
LayerType="Base"
Opacity="0.3"
PathData="m14.71,10.71l3.51,3.51c.47.47.14,1.28-.53,1.28h-7.38c-.67,0-1-.81-.53-1.28l3.51-3.51c.39-.39,1.02-.39,1.41,0Z" />
-
+
@@ -194,12 +236,19 @@
-
+
-
+
@@ -220,12 +269,19 @@
-
+
-
+
diff --git a/src/Files.App.Controls/ThemedIcon/Styles/Icons.Status.xaml b/src/Files.App.Controls/ThemedIcon/Styles/Icons.Status.xaml
index ba4164f2f70c..330a4630624c 100644
--- a/src/Files.App.Controls/ThemedIcon/Styles/Icons.Status.xaml
+++ b/src/Files.App.Controls/ThemedIcon/Styles/Icons.Status.xaml
@@ -326,8 +326,14 @@
-
-
+
+
@@ -348,8 +354,14 @@
-
-
+
+
diff --git a/src/Files.App/Data/Items/DriveItem.cs b/src/Files.App/Data/Items/DriveItem.cs
index 0168e683b839..118ca94160bd 100644
--- a/src/Files.App/Data/Items/DriveItem.cs
+++ b/src/Files.App/Data/Items/DriveItem.cs
@@ -195,16 +195,16 @@ public FrameworkElement? ItemDecorator
get
{
if (!IsRemovable)
- return null; // Removable items don't need the eject button
+ return null; // Non-removable items don't need the eject button
var itemDecorator = new Button()
{
Style = Application.Current.Resources["SidebarEjectButtonStyle"] as Style,
Content = new ThemedIcon()
{
- Style = Application.Current.Resources["App.ThemedIcons.Actions.Eject"] as Style,
- Height = 16,
- Width = 16
+ Style = Application.Current.Resources["App.ThemedIcons.Actions.Eject.12"] as Style,
+ Height = 12,
+ Width = 12
}
};
diff --git a/src/Files.App/Styles/SidebarStyles.xaml b/src/Files.App/Styles/SidebarStyles.xaml
index efc107056bd2..5b3558c1c704 100644
--- a/src/Files.App/Styles/SidebarStyles.xaml
+++ b/src/Files.App/Styles/SidebarStyles.xaml
@@ -28,12 +28,12 @@