|
436 | 436 | Padding="0" |
437 | 437 | HorizontalAlignment="Left" |
438 | 438 | VerticalAlignment="Stretch" |
439 | | - Background="Transparent" |
| 439 | + Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" |
440 | 440 | BorderBrush="{ThemeResource CardStrokeColorDefaultBrush}" |
441 | 441 | BorderThickness="1" |
442 | 442 | CornerRadius="8" |
|
553 | 553 | x:Name="ItemName" |
554 | 554 | MaxLines="{Binding ElementName=PageRoot, Path=CardsViewItemNameMaxLines, Mode=OneWay}" |
555 | 555 | Opacity="{x:Bind Opacity, Mode=OneWay}" |
556 | | - Style="{ThemeResource BodyStrongTextBlockStyle}" |
| 556 | + Style="{ThemeResource App.Theme.BodyStrongTextBlockStyle}" |
557 | 557 | Text="{x:Bind Name, Mode=OneWay}" |
558 | 558 | TextTrimming="CharacterEllipsis" |
559 | 559 | TextWrapping="Wrap" /> |
560 | 560 |
|
561 | 561 | <!-- Item Type --> |
562 | 562 | <TextBlock |
563 | 563 | Foreground="{ThemeResource TextFillColorSecondaryBrush}" |
564 | | - Style="{ThemeResource CaptionTextBlockStyle}" |
| 564 | + Style="{ThemeResource App.Theme.CaptionTextBlockStyle}" |
565 | 565 | Text="{x:Bind ItemType, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" |
566 | 566 | TextTrimming="CharacterEllipsis" |
567 | 567 | TextWrapping="NoWrap" /> |
|
781 | 781 | </Setter> |
782 | 782 | </Style> |
783 | 783 |
|
| 784 | + <!-- Regular List Container Style --> |
784 | 785 | <Style |
785 | | - x:Name="DefaultItemContainerStyle" |
| 786 | + x:Name="LocalListItemContainerStyle" |
786 | 787 | BasedOn="{StaticResource DefaultGridViewItemStyle}" |
787 | 788 | TargetType="GridViewItem"> |
788 | 789 | <Setter Property="HorizontalContentAlignment" Value="Stretch" /> |
|
849 | 850 | </Setter> |
850 | 851 | </Style> |
851 | 852 |
|
| 853 | + <!-- Compact List Container Style --> |
852 | 854 | <Style |
853 | | - x:Name="CompactListItemContainerStyle" |
| 855 | + x:Name="LocalCompactListItemContainerStyle" |
854 | 856 | BasedOn="{StaticResource DefaultGridViewItemStyle}" |
855 | 857 | TargetType="GridViewItem"> |
856 | 858 | <Setter Property="HorizontalContentAlignment" Value="Stretch" /> |
|
918 | 920 | </Setter> |
919 | 921 | </Style> |
920 | 922 |
|
| 923 | + <!-- Regular Container Style --> |
921 | 924 | <Style |
922 | | - x:Name="CardsItemContainerStyle" |
| 925 | + x:Name="LocalRegularItemContainerStyle" |
923 | 926 | BasedOn="{StaticResource DefaultGridViewItemStyle}" |
924 | 927 | TargetType="GridViewItem"> |
925 | | - <Setter Property="Background" Value="{ThemeResource CardBackgroundFillColorDefaultBrush}" /> |
| 928 | + <Setter Property="Background" Value="Transparent" /> |
926 | 929 | <Setter Property="HorizontalContentAlignment" Value="Stretch" /> |
927 | 930 | <Setter Property="HorizontalAlignment" Value="Stretch" /> |
928 | 931 | <Setter Property="MinHeight" Value="1" /> |
|
0 commit comments