mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-13 19:19:23 +08:00
4d25d505e0
This is part of .net 4.5 fix, check #393 to see more
59 lines
2.7 KiB
XML
59 lines
2.7 KiB
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:system="clr-namespace:System;assembly=mscorlib">
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="Base.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<system:Boolean x:Key="ThemeBlurEnabled">True</system:Boolean>
|
|
|
|
<Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}">
|
|
<Setter Property="Foreground" Value="#FF000000" />
|
|
<Setter Property="Background" Value="#01FFFFFF" />
|
|
</Style>
|
|
|
|
<Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}">
|
|
<Setter Property="Background">
|
|
<Setter.Value>
|
|
<SolidColorBrush Color="White" Opacity="0.1"/>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style x:Key="WindowStyle" BasedOn="{StaticResource BaseWindowStyle}" TargetType="{x:Type Window}">
|
|
<Setter Property="Background">
|
|
<Setter.Value>
|
|
<SolidColorBrush Color="White" Opacity="0.1"/>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style x:Key="PendingLineStyle" BasedOn="{StaticResource BasePendingLineStyle}" TargetType="{x:Type Line}">
|
|
</Style>
|
|
|
|
<!-- Item Style -->
|
|
<Style x:Key="ItemTitleStyle" BasedOn="{StaticResource BaseItemTitleStyle}" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Margin" Value="0, -10"/>
|
|
<Setter Property="Foreground" Value="#FF000000"/>
|
|
</Style>
|
|
<Style x:Key="ItemSubTitleStyle" BasedOn="{StaticResource BaseItemSubTitleStyle}" TargetType="{x:Type TextBlock}" >
|
|
<Setter Property="Foreground" Value="#FF000000"/>
|
|
</Style>
|
|
<Style x:Key="ItemTitleSelectedStyle" BasedOn="{StaticResource BaseItemTitleSelectedStyle}" TargetType="{x:Type TextBlock}" >
|
|
<Setter Property="Margin" Value="0, -10"/>
|
|
<Setter Property="Foreground" Value="#FFFFFFFF"/>
|
|
</Style>
|
|
<Style x:Key="ItemSubTitleSelectedStyle" BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" TargetType="{x:Type TextBlock}" >
|
|
<Setter Property="Foreground" Value="#FFFFFFFF"/>
|
|
</Style>
|
|
<SolidColorBrush x:Key="ItemSelectedBackgroundColor">#356ef3</SolidColorBrush>
|
|
|
|
<!-- button style in the middle of the scrollbar -->
|
|
<Style x:Key="ThumbStyle" BasedOn="{StaticResource BaseThumbStyle}" TargetType="{x:Type Thumb}">
|
|
</Style>
|
|
|
|
<Style x:Key="ScrollBarStyle" BasedOn="{StaticResource BaseScrollBarStyle}" TargetType="{x:Type ScrollBar}">
|
|
<Setter Property="Background" Value="#a0a0a0"/>
|
|
</Style>
|
|
</ResourceDictionary>
|