You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
925 B
23 lines
925 B
1 year ago
|
<Styles xmlns="https://github.com/avaloniaui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
<Design.PreviewWith>
|
||
|
<Border Padding="20">
|
||
|
<!-- Add Controls for Previewer Here -->
|
||
|
</Border>
|
||
|
</Design.PreviewWith>
|
||
|
|
||
|
<!-- Default grid splitter style -->
|
||
|
<Style Selector="GridSplitter">
|
||
|
<Setter Property="Opacity" Value="0.6" />
|
||
|
<Setter Property="Background" Value="{DynamicResource ScrollBarTrackStroke}" />
|
||
|
<!--<Setter Property="Background" Value="{DynamicResource ScrollBarTrackStroke}" />-->
|
||
|
<Setter Property="BorderThickness" Value="6" />
|
||
|
<Setter Property="CornerRadius" Value="4" />
|
||
|
</Style>
|
||
|
|
||
|
<!-- Remove accent color from active dock bar -->
|
||
|
<Style Selector="ToolChromeControl:active /template/ Grid#PART_Grip">
|
||
|
<Setter Property="Background" Value="Transparent" />
|
||
|
</Style>
|
||
|
</Styles>
|