Updated "Play" button style. Removed default background image on the main window.
This commit is contained in:
@@ -25,20 +25,33 @@
|
||||
<GradientStop Color="#0B0D0F" Offset="1"/>
|
||||
</LinearGradientBrush>
|
||||
|
||||
<LinearGradientBrush x:Key="ActiveGradientBrush" StartPoint="0,0" EndPoint="0,1">
|
||||
<GradientStop Color="#E1B88A" Offset="0"/>
|
||||
<GradientStop Color="#E9B578" Offset="1"/>
|
||||
</LinearGradientBrush>
|
||||
|
||||
<LinearGradientBrush x:Key="ActiveDarkGradientBrush" StartPoint="0,0" EndPoint="0,1">
|
||||
<GradientStop Color="#F9EBC6" Offset="0"/>
|
||||
<GradientStop Color="#A66831" Offset="1"/>
|
||||
</LinearGradientBrush>
|
||||
|
||||
<!-- Playlist Icon Path -->
|
||||
<Style x:Key="PlaylistIconPath" TargetType="PathIcon">
|
||||
<Setter Property="Foreground" Value="{StaticResource PlaylistItemIconBrush}"/>
|
||||
<Setter Property="Foreground" Value="{StaticResource ActiveDarkGradientBrush}"/>
|
||||
</Style>
|
||||
|
||||
<Style x:Key="SelectedPlaylistIconPath" TargetType="PathIcon" BasedOn="{StaticResource PlaylistIconPath}">
|
||||
<Setter Property="Foreground" Value="{StaticResource AccentTextFillColorPrimaryBrush}"/>
|
||||
<Setter Property="Foreground" Value="{StaticResource ActiveGradientBrush}"/>
|
||||
<Setter Property="Foreground" Value="{StaticResource ActiveDarkGradientBrush}"/>
|
||||
</Style>
|
||||
|
||||
<!-- Playlist Title Text Block -->
|
||||
<Style x:Key="PlaylistTitleTextBlock" TargetType="TextBlock">
|
||||
<Setter Property="Foreground" Value="{StaticResource PlaylistItemTitleBrush}"/>
|
||||
<Setter Property="FontSize" Value="15"/>
|
||||
<Setter Property="FontWeight" Value="Medium"/>
|
||||
<Setter Property="FontWeight" Value="Normal"/>
|
||||
<Setter Property="LineStackingStrategy" Value="BlockLineHeight"/>
|
||||
<Setter Property="VerticalAlignment" Value="Center"/>
|
||||
<Setter Property="TextTrimming" Value="CharacterEllipsis"/>
|
||||
@@ -47,6 +60,7 @@
|
||||
|
||||
<Style x:Key="SelectedPlaylistTitleTextBlock" TargetType="TextBlock" BasedOn="{StaticResource PlaylistTitleTextBlock}">
|
||||
<Setter Property="Foreground" Value="{StaticResource AccentTextFillColorPrimaryBrush}"/>
|
||||
<Setter Property="FontWeight" Value="Medium"/>
|
||||
</Style>
|
||||
|
||||
<!-- Playlist Item Subtitle Text Block -->
|
||||
|
||||
Reference in New Issue
Block a user