mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
230 lines
8.9 KiB
XML
230 lines
8.9 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="pack://application:,,,/Themes/Base.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<system:Double x:Key="ResultItemHeight">38</system:Double>
|
|
<Style x:Key="ImageAreaWidth" TargetType="{x:Type ColumnDefinition}">
|
|
<Setter Property="Width" Value="46" />
|
|
</Style>
|
|
<Style x:Key="ImageIconStyle" TargetType="{x:Type Image}">
|
|
<Setter Property="Height" Value="24" />
|
|
<Setter Property="Width" Value="24" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemGlyph"
|
|
BasedOn="{StaticResource BaseGlyphStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="FontSize" Value="24" />
|
|
<Setter Property="Width" Value="24" />
|
|
<Setter Property="Height" Value="24" />
|
|
<Setter Property="Foreground" Value="#100f0f" />
|
|
</Style>
|
|
<Style
|
|
x:Key="QueryBoxStyle"
|
|
BasedOn="{StaticResource BaseQueryBoxStyle}"
|
|
TargetType="{x:Type TextBox}">
|
|
<Setter Property="Padding" Value="0,2,42,0" />
|
|
<Setter Property="Foreground" Value="#282728" />
|
|
<Setter Property="FontSize" Value="16" />
|
|
<Setter Property="Height" Value="24" />
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="QuerySuggestionBoxStyle"
|
|
BasedOn="{StaticResource BaseQuerySuggestionBoxStyle}"
|
|
TargetType="{x:Type TextBox}">
|
|
<Setter Property="Padding" Value="0,2,42,0" />
|
|
<Setter Property="Background" Value="Transparent" />
|
|
<Setter Property="Height" Value="24" />
|
|
<Setter Property="FontSize" Value="16" />
|
|
<Setter Property="Foreground" Value="#8f8c8f" />
|
|
</Style>
|
|
|
|
<Style
|
|
x:Key="WindowBorderStyle"
|
|
BasedOn="{StaticResource BaseWindowBorderStyle}"
|
|
TargetType="{x:Type Border}">
|
|
<Setter Property="BorderThickness" Value="1" />
|
|
<Setter Property="BorderBrush" Value="#bcbabd" />
|
|
<Setter Property="Background" Value="#edebee" />
|
|
<Setter Property="CornerRadius" Value="6" />
|
|
<Setter Property="UseLayoutRounding" Value="True" />
|
|
</Style>
|
|
<Style
|
|
x:Key="WindowStyle"
|
|
BasedOn="{StaticResource BaseWindowStyle}"
|
|
TargetType="{x:Type Window}" />
|
|
<Style
|
|
x:Key="PendingLineStyle"
|
|
BasedOn="{StaticResource BasePendingLineStyle}"
|
|
TargetType="{x:Type Line}" />
|
|
|
|
<!-- Item Style -->
|
|
<Style
|
|
x:Key="ItemTitleStyle"
|
|
BasedOn="{StaticResource BaseItemTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="FontSize" Value="14" />
|
|
<Setter Property="Foreground" Value="#100f0f" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemSubTitleStyle"
|
|
BasedOn="{StaticResource BaseItemSubTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="FontSize" Value="10" />
|
|
<Setter Property="Foreground" Value="#8f8d90" />
|
|
</Style>
|
|
<Style
|
|
x:Key="SeparatorStyle"
|
|
BasedOn="{StaticResource BaseSeparatorStyle}"
|
|
TargetType="{x:Type Rectangle}">
|
|
<Setter Property="Fill" Value="#dedcde" />
|
|
<Setter Property="Height" Value="1" />
|
|
<Setter Property="Margin" Value="0,0,0,4" />
|
|
</Style>
|
|
<Style x:Key="HighlightStyle" />
|
|
<Style
|
|
x:Key="ItemTitleSelectedStyle"
|
|
BasedOn="{StaticResource BaseItemTitleSelectedStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="FontSize" Value="14" />
|
|
<Setter Property="Foreground" Value="#100f0f" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ItemSubTitleSelectedStyle"
|
|
BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="FontSize" Value="10" />
|
|
<Setter Property="Foreground" Value="#8f8d90" />
|
|
</Style>
|
|
<SolidColorBrush x:Key="ItemSelectedBackgroundColor">#d6d4d7</SolidColorBrush>
|
|
|
|
<!-- button style in the middle of the scrollbar -->
|
|
<Style
|
|
x:Key="ThumbStyle"
|
|
BasedOn="{StaticResource BaseThumbStyle}"
|
|
TargetType="{x:Type Thumb}">
|
|
<Setter Property="Template">
|
|
<Setter.Value>
|
|
<ControlTemplate TargetType="{x:Type Thumb}">
|
|
<Border
|
|
Width="4"
|
|
Margin="0,0,2,0"
|
|
Background="#878687"
|
|
BorderBrush="Transparent"
|
|
BorderThickness="0"
|
|
CornerRadius="2"
|
|
DockPanel.Dock="Right" />
|
|
</ControlTemplate>
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
<Style
|
|
x:Key="ScrollBarStyle"
|
|
BasedOn="{StaticResource BaseScrollBarStyle}"
|
|
TargetType="{x:Type ScrollBar}" />
|
|
<Style
|
|
x:Key="SearchIconStyle"
|
|
BasedOn="{StaticResource BaseSearchIconStyle}"
|
|
TargetType="{x:Type Path}">
|
|
<Setter Property="Fill" Value="#d5d3d6" />
|
|
<Setter Property="Width" Value="24" />
|
|
<Setter Property="Height" Value="24" />
|
|
</Style>
|
|
<Style x:Key="SearchIconPosition" TargetType="{x:Type Canvas}">
|
|
<Setter Property="Background" Value="#edebee" />
|
|
<Setter Property="Width" Value="24" />
|
|
<Setter Property="Height" Value="24" />
|
|
<Setter Property="Margin" Value="0,0,8,0" />
|
|
<Setter Property="HorizontalAlignment" Value="Right" />
|
|
</Style>
|
|
<Style x:Key="PluginActivationIcon" TargetType="{x:Type Image}">
|
|
<Setter Property="Width" Value="24" />
|
|
<Setter Property="Height" Value="24" />
|
|
<Setter Property="Margin" Value="0,0,8,0" />
|
|
<Setter Property="HorizontalAlignment" Value="Right" />
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
</Style>
|
|
|
|
<Style x:Key="ItemHotkeyStyle" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="FontSize" Value="12" />
|
|
<Setter Property="Foreground" Value="#8f8d90" />
|
|
</Style>
|
|
<Style x:Key="ItemHotkeySelectedStyle" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="FontSize" Value="12" />
|
|
<Setter Property="Foreground" Value="#8f8d90" />
|
|
</Style>
|
|
<Style x:Key="ItemGlyphSelectedStyle" TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#100f0f" />
|
|
<Setter Property="Width" Value="24" />
|
|
<Setter Property="Height" Value="24" />
|
|
<Setter Property="FontSize" Value="24" />
|
|
</Style>
|
|
<CornerRadius x:Key="ItemRadius">6</CornerRadius>
|
|
<Thickness x:Key="ItemMargin">4 0 4 0</Thickness>
|
|
<Thickness x:Key="ResultMargin">0 0 0 4</Thickness>
|
|
<Style
|
|
x:Key="ClockPanel"
|
|
BasedOn="{StaticResource ClockPanel}"
|
|
TargetType="{x:Type StackPanel}">
|
|
<Setter Property="Orientation" Value="Horizontal" />
|
|
<Setter Property="Margin" Value="0,0,42,0" />
|
|
</Style>
|
|
<Style
|
|
x:Key="ClockBox"
|
|
BasedOn="{StaticResource BaseClockBox}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="FontSize" Value="14" />
|
|
<Setter Property="Foreground" Value="#bebebe" />
|
|
<Setter Property="Margin" Value="0,0,10,0" />
|
|
<Style.Triggers>
|
|
<DataTrigger Binding="{Binding ElementName=DateBox, Path=Visibility}" Value="Visible">
|
|
<Setter Property="FontSize" Value="14" />
|
|
<Setter Property="Margin" Value="0,0,10,3" />
|
|
</DataTrigger>
|
|
</Style.Triggers>
|
|
|
|
</Style>
|
|
<Style
|
|
x:Key="DateBox"
|
|
BasedOn="{StaticResource BaseDateBox}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="FontSize" Value="14" />
|
|
<Setter Property="Foreground" Value="#bebebe" />
|
|
<Style.Triggers>
|
|
<DataTrigger Binding="{Binding ElementName=ClockBox, Path=Visibility}" Value="Visible">
|
|
<Setter Property="FontSize" Value="14" />
|
|
<Setter Property="Margin" Value="0,0,0,3" />
|
|
</DataTrigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewBorderStyle"
|
|
BasedOn="{StaticResource BasePreviewBorderStyle}"
|
|
TargetType="{x:Type Border}">
|
|
<Setter Property="Margin" Value="0,0,10,8" />
|
|
<Setter Property="BorderBrush" Value="#dedcde" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewItemTitleStyle"
|
|
BasedOn="{StaticResource BasePreviewItemTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#100f0f" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewItemSubTitleStyle"
|
|
BasedOn="{StaticResource BasePreviewItemSubTitleStyle}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#8f8d90" />
|
|
</Style>
|
|
<Style
|
|
x:Key="PreviewGlyph"
|
|
BasedOn="{StaticResource BasePreviewGlyph}"
|
|
TargetType="{x:Type TextBlock}">
|
|
<Setter Property="Foreground" Value="#100f0f" />
|
|
</Style>
|
|
</ResourceDictionary>
|