1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 13:28:33 +00:00

Markdown - Tweak inline code and HR styles

This commit is contained in:
Robert 2024-03-24 21:58:49 +01:00
parent da3d47d7b8
commit 257fa8ae0d

View File

@ -1,7 +1,13 @@
<Styles xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:avalonia="clr-namespace:Markdown.Avalonia;assembly=Markdown.Avalonia"
xmlns:ctxt="clr-namespace:ColorTextBlock.Avalonia;assembly=ColorTextBlock.Avalonia">
xmlns:ctxt="clr-namespace:ColorTextBlock.Avalonia;assembly=ColorTextBlock.Avalonia"
xmlns:controls="clr-namespace:Markdown.Avalonia.Controls;assembly=Markdown.Avalonia">
<Design.PreviewWith>
<avalonia:MarkdownScrollViewer MarkdownStyleName="FluentAvalonia">
Markdown.Xaml support ```inline code ``` and block code.
</avalonia:MarkdownScrollViewer>
</Design.PreviewWith>
<Style Selector="ScrollViewer > StackPanel">
<Setter Property="Margin" Value="0 0 15 0"></Setter>
</Style>
@ -60,4 +66,21 @@
<Setter Property="Margin" Value="0,10,0,5" />
</Style.Setters>
</Style>
<Style Selector="ctxt|CCode">
<Style.Setters>
<Setter Property="Foreground" Value="#CE9178" />
<Setter Property="Background" Value="#333333" />
<Setter Property="Padding" Value="4 3 4 -1"></Setter>
<Setter Property="Margin" Value="0 2 0 0"></Setter>
<Setter Property="CornerRadius" Value="5" />
<Setter Property="TextVerticalAlignment" Value="Bottom"></Setter>
</Style.Setters>
</Style>
<Style Selector="controls|Rule">
<Style.Setters>
<Setter Property="Foreground" Value="{DynamicResource ButtonBorderBrush}"/>
</Style.Setters>
</Style>
</Styles>