Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lite/Services/DataGridFilterManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public void UpdateFilterButtonStyles()

var textBlock = new TextBlock
{
Text = "\uE71C",
Text = hasActive ? "\uE16E" : "\uE71C",
FontFamily = new FontFamily("Segoe MDL2 Assets"),
Foreground = hasActive
? new SolidColorBrush(Color.FromRgb(0xFF, 0xD7, 0x00))
Expand Down
4 changes: 4 additions & 0 deletions Lite/Themes/DarkTheme.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,13 @@
<!-- Column Filter Button Style when filter is active -->
<Style x:Key="ColumnFilterButtonActiveStyle" TargetType="Button" BasedOn="{StaticResource ColumnFilterButtonStyle}">
<Setter Property="Foreground" Value="#FFD700"/>
<Setter Property="Background" Value="#33FFD700"/>
<Setter Property="Content" Value="&#xE16E;"/>
<Setter Property="ToolTip" Value="Filter active — click to modify"/>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Foreground" Value="#FFEC8B"/>
<Setter Property="Background" Value="#55FFD700"/>
</Trigger>
</Style.Triggers>
</Style>
Expand Down