mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- Fix Default Font size (Tab control was the cause.)
- Adjust Plugin / Plugin Store SubTitle Color
This commit is contained in:
parent
4aae10173d
commit
757d995aa0
1 changed files with 7 additions and 8 deletions
|
|
@ -70,7 +70,7 @@
|
|||
</Style>
|
||||
|
||||
<Style x:Key="SettingSubTitleLabel" TargetType="{x:Type TextBlock}">
|
||||
<Setter Property="Foreground" Value="#5f5f5f" />
|
||||
<Setter Property="Foreground" Value="#5F5F5F" />
|
||||
<Setter Property="FontSize" Value="12" />
|
||||
<Setter Property="Margin" Value="0 0 0 0" />
|
||||
<Setter Property="Padding" Value="0 0 24 0" />
|
||||
|
|
@ -330,7 +330,7 @@
|
|||
|
||||
<!-- For Tab Header responsive Width -->
|
||||
<Style TargetType="{x:Type TabControl}">
|
||||
|
||||
<Setter Property="FontSize" Value="14" />
|
||||
<Setter Property="Template">
|
||||
<Setter.Value>
|
||||
<ControlTemplate TargetType="{x:Type TabControl}">
|
||||
|
|
@ -339,7 +339,7 @@
|
|||
<ColumnDefinition Width="2.2*"/>
|
||||
<ColumnDefinition Width="7.8*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<TabPanel
|
||||
<TabPanel
|
||||
Grid.Column="0"
|
||||
Panel.ZIndex="1"
|
||||
Margin="0,0,0,0"
|
||||
|
|
@ -350,8 +350,7 @@
|
|||
Grid.Column="1"
|
||||
BorderBrush="Black"
|
||||
BorderThickness="0"
|
||||
CornerRadius="0
|
||||
" >
|
||||
CornerRadius="0">
|
||||
<ContentPresenter ContentSource="SelectedContent" Grid.Column="1"/>
|
||||
</Border>
|
||||
</Grid>
|
||||
|
|
@ -677,7 +676,7 @@
|
|||
<TextBlock Text="{Binding PluginPair.Metadata.Name}"
|
||||
TextWrapping="Wrap"
|
||||
ToolTip="{Binding PluginPair.Metadata.Version}" />
|
||||
<TextBlock Opacity="0.5" TextWrapping="Wrap" Margin="0 2 0 0">
|
||||
<TextBlock TextWrapping="Wrap" Margin="0 2 0 0" Foreground="#5f5f5f">
|
||||
<Run Text="{Binding PluginPair.Metadata.Description}" FontSize="12" />
|
||||
</TextBlock>
|
||||
</StackPanel>
|
||||
|
|
@ -924,8 +923,8 @@
|
|||
<TextBlock Text="{Binding Name}"
|
||||
TextWrapping="WrapWithOverflow" Padding="0 0 20 0"
|
||||
ToolTip="{Binding Version}" />
|
||||
<TextBlock Opacity="0.5" TextWrapping="WrapWithOverflow" Margin="0 2 0 0" Padding="0 0 20 0">
|
||||
<Run Text="{Binding Description}" FontSize="12" />
|
||||
<TextBlock TextWrapping="WrapWithOverflow" Margin="0 2 0 0" Padding="0 0 20 0" Foreground="#5f5f5f">
|
||||
<Run Text="{Binding Description}" FontSize="12" Foreground="#5f5f5f"/>
|
||||
</TextBlock>
|
||||
|
||||
</StackPanel >
|
||||
|
|
|
|||
Loading…
Reference in a new issue