Skip to content

Commit 757d995

Browse files
committed
- Fix Default Font size (Tab control was the cause.)
- Adjust Plugin / Plugin Store SubTitle Color
1 parent 4aae101 commit 757d995

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

Flow.Launcher/SettingWindow.xaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
</Style>
7171

7272
<Style x:Key="SettingSubTitleLabel" TargetType="{x:Type TextBlock}">
73-
<Setter Property="Foreground" Value="#5f5f5f" />
73+
<Setter Property="Foreground" Value="#5F5F5F" />
7474
<Setter Property="FontSize" Value="12" />
7575
<Setter Property="Margin" Value="0 0 0 0" />
7676
<Setter Property="Padding" Value="0 0 24 0" />
@@ -330,7 +330,7 @@
330330

331331
<!-- For Tab Header responsive Width -->
332332
<Style TargetType="{x:Type TabControl}">
333-
333+
<Setter Property="FontSize" Value="14" />
334334
<Setter Property="Template">
335335
<Setter.Value>
336336
<ControlTemplate TargetType="{x:Type TabControl}">
@@ -339,7 +339,7 @@
339339
<ColumnDefinition Width="2.2*"/>
340340
<ColumnDefinition Width="7.8*"/>
341341
</Grid.ColumnDefinitions>
342-
<TabPanel
342+
<TabPanel
343343
Grid.Column="0"
344344
Panel.ZIndex="1"
345345
Margin="0,0,0,0"
@@ -350,8 +350,7 @@
350350
Grid.Column="1"
351351
BorderBrush="Black"
352352
BorderThickness="0"
353-
CornerRadius="0
354-
" >
353+
CornerRadius="0">
355354
<ContentPresenter ContentSource="SelectedContent" Grid.Column="1"/>
356355
</Border>
357356
</Grid>
@@ -677,7 +676,7 @@
677676
<TextBlock Text="{Binding PluginPair.Metadata.Name}"
678677
TextWrapping="Wrap"
679678
ToolTip="{Binding PluginPair.Metadata.Version}" />
680-
<TextBlock Opacity="0.5" TextWrapping="Wrap" Margin="0 2 0 0">
679+
<TextBlock TextWrapping="Wrap" Margin="0 2 0 0" Foreground="#5f5f5f">
681680
<Run Text="{Binding PluginPair.Metadata.Description}" FontSize="12" />
682681
</TextBlock>
683682
</StackPanel>
@@ -924,8 +923,8 @@
924923
<TextBlock Text="{Binding Name}"
925924
TextWrapping="WrapWithOverflow" Padding="0 0 20 0"
926925
ToolTip="{Binding Version}" />
927-
<TextBlock Opacity="0.5" TextWrapping="WrapWithOverflow" Margin="0 2 0 0" Padding="0 0 20 0">
928-
<Run Text="{Binding Description}" FontSize="12" />
926+
<TextBlock TextWrapping="WrapWithOverflow" Margin="0 2 0 0" Padding="0 0 20 0" Foreground="#5f5f5f">
927+
<Run Text="{Binding Description}" FontSize="12" Foreground="#5f5f5f"/>
929928
</TextBlock>
930929

931930
</StackPanel >

0 commit comments

Comments
 (0)