-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
128 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<ResourceDictionary xmlns="https://github.com/avaloniaui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:ui="using:FluentAvalonia.UI.Controls"> | ||
|
||
<ControlTheme x:Key="SimpleLargeBreadcrumbBarSeparator" TargetType="Separator"> | ||
<Setter Property="FontFamily" Value="{DynamicResource SymbolThemeFontFamily}" /> | ||
<Setter Property="FontSize" Value="16" /> | ||
<Setter Property="FontWeight" Value="SemiBold" /> | ||
<Setter Property="TextBlock.TextTrimming" Value="CharacterEllipsis" /> | ||
<Setter Property="TextBlock.TextWrapping" Value="Wrap" /> | ||
<Setter Property="VerticalAlignment" Value="Center" /> | ||
|
||
<Setter Property="Template"> | ||
<ControlTemplate> | ||
<TextBlock FontFamily="{DynamicResource SymbolThemeFontFamily}" | ||
FontSize="{TemplateBinding FontSize}" | ||
FontWeight="{TemplateBinding FontWeight}" | ||
Text="" /> | ||
</ControlTemplate> | ||
</Setter> | ||
</ControlTheme> | ||
|
||
<ControlTheme x:Key="SimpleLargeBreadcrumbBarButton" | ||
BasedOn="{StaticResource ResourceKey={x:Type Button}}" | ||
TargetType="Button"> | ||
<Setter Property="FontFamily" Value="XamlAutoFontFamily" /> | ||
<Setter Property="FontSize" Value="24" /> | ||
<Setter Property="FontWeight" Value="SemiBold" /> | ||
<Setter Property="TextBlock.TextTrimming" Value="CharacterEllipsis" /> | ||
<Setter Property="TextBlock.TextWrapping" Value="Wrap" /> | ||
<Setter Property="Padding" Value="0" /> | ||
<Setter Property="Background" Value="Transparent" /> | ||
<Setter Property="BorderBrush" Value="Transparent" /> | ||
<Setter Property="BorderThickness" Value="0" /> | ||
<Setter Property="Foreground" Value="{DynamicResource ButtonForegroundPressed}" /> | ||
|
||
<Style Selector="^ /template/ ContentPresenter#PART_ContentPresenter"> | ||
<Setter Property="Transitions"> | ||
<Transitions /> | ||
</Setter> | ||
</Style> | ||
|
||
<Style Selector="^:pointerover /template/ ui|FABorder#Root"> | ||
<Setter Property="BorderBrush" Value="Transparent" /> | ||
<Setter Property="Background" Value="Transparent" /> | ||
</Style> | ||
<Style Selector="^:pointerover /template/ ContentPresenter#PART_ContentPresenter"> | ||
<Setter Property="Foreground" Value="{DynamicResource ButtonForeground}" /> | ||
</Style> | ||
|
||
<Style Selector="^:pressed /template/ ui|FABorder#Root"> | ||
<Setter Property="Background" Value="Transparent" /> | ||
</Style> | ||
<Style Selector="^:pressed /template/ ContentPresenter#PART_ContentPresenter"> | ||
<Setter Property="Foreground" Value="{DynamicResource ButtonForeground}" /> | ||
<Setter Property="Opacity" Value="0.5" /> | ||
</Style> | ||
|
||
<Style Selector="^:disabled /template/ ui|FABorder#Root"> | ||
<Setter Property="Background" Value="Transparent" /> | ||
</Style> | ||
</ControlTheme> | ||
|
||
<ControlTheme x:Key="SimpleLargeBreadcrumbBarTextBlock" TargetType="TextBlock"> | ||
<Setter Property="FontFamily" Value="{DynamicResource XamlAutoFontFamily}" /> | ||
<Setter Property="FontSize" Value="24" /> | ||
<Setter Property="FontWeight" Value="SemiBold" /> | ||
<Setter Property="TextBlock.TextTrimming" Value="CharacterEllipsis" /> | ||
<Setter Property="TextBlock.TextWrapping" Value="Wrap" /> | ||
<Setter Property="VerticalAlignment" Value="Center" /> | ||
<Setter Property="ClipToBounds" Value="False" /> | ||
</ControlTheme> | ||
</ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters