We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 617ee8d commit 7bbbe83Copy full SHA for 7bbbe83
src/TwitchStreamingTools/Views/Pages/ChatView.axaml
@@ -44,9 +44,18 @@
44
</Grid.ColumnDefinitions>
45
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Center" Text="{Binding }" Padding="0" />
46
<Button Grid.Column="1"
47
+ Content="-"
48
+ FontWeight="Bold"
49
Command="{Binding $parent[UserControl].((pages:ChatViewModel)DataContext).OnRemoveChat, FallbackValue=null}"
50
CommandParameter="{Binding }">
- -
51
+ <Button.Styles>
52
+ <Style Selector="Button">
53
+ <Setter Property="Background" Value="#643332" />
54
+ </Style>
55
+ <Style Selector="Button:pointerover /template/ ContentPresenter">
56
+ <Setter Property="Background" Value="#963332" />
57
58
+ </Button.Styles>
59
</Button>
60
</Grid>
61
</DataTemplate>
0 commit comments