Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Redo taglines
Browse files Browse the repository at this point in the history
  • Loading branch information
misandrie committed Nov 28, 2023
1 parent 29ac738 commit 044ebdd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
5 changes: 5 additions & 0 deletions SS14.Launcher/Theme/Theme.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
<Setter Property="Background" Value="{DynamicResource ThemeNanoGoldBrush}" />
<Setter Property="MinHeight" Value="2" />
</Style>

<Style Selector="Panel.SenseLineHorizontal">
<Setter Property="Background" Value="{DynamicResource SenseLineHorizontalBrush}" />
<Setter Property="MinHeight" Value="2" />
</Style>

<Style Selector="Expander[ExpandDirection=Down] /template/ ToggleButton#PART_toggle">
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
Expand Down
8 changes: 8 additions & 0 deletions SS14.Launcher/Theme/ThemeResources.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@

<SolidColorBrush x:Key="ThemeTabItemSelectedBrush" Color="{StaticResource ThemeTabItemSelectedColor}" />
<SolidColorBrush x:Key="ThemeTabItemHoveredBrush" Color="{StaticResource ThemeTabItemHoveredColor}" />

<LinearGradientBrush x:Key="SenseLineHorizontalBrush" StartPoint="0%,0%" EndPoint="100%,100%">
<LinearGradientBrush.GradientStops>
<GradientStop Color="#45aaf2" Offset="0.0" />
<GradientStop Color="#fc5c65" Offset="0.5" />
<GradientStop Color="#fed330" Offset="1.0" />
</LinearGradientBrush.GradientStops>
</LinearGradientBrush>

<sys:Double x:Key="FontSizeNormal">15</sys:Double>

Expand Down
2 changes: 1 addition & 1 deletion SS14.Launcher/Views/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
</Grid>
</DockPanel>
</Panel>
<Panel DockPanel.Dock="Top" Classes="GoldLineHorizontal" />
<Panel DockPanel.Dock="Top" Classes="SenseLineHorizontal" />
<Grid>
<!-- Main tabbed layout when logged in -->
<TabControl IsVisible="{Binding LoggedIn}" Items="{Binding Tabs}" TabStripPlacement="Bottom"
Expand Down

0 comments on commit 044ebdd

Please sign in to comment.