-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the game lobby tab layout +text cleanup (#2227)
* closes #2152 #2153 redesigned play/spectate tab + other text improvements * added a dropshadow to the chat box to make the text easier to read on different coloured backgrounds --------- Co-authored-by: Kelly Elton <[email protected]>
- Loading branch information
1 parent
195f075
commit 57a0329
Showing
13 changed files
with
291 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:ctrl="clr-namespace:Octgn.Controls"> | ||
<Style x:Key="HorizontalGridSplitter" TargetType="{x:Type GridSplitter}"> | ||
<Setter Property="ResizeDirection" Value="Rows"/> | ||
<Setter Property="HorizontalAlignment" Value="Center"/> | ||
<Setter Property="VerticalAlignment" Value="Center"/> | ||
<Setter Property="BorderBrush" Value="WhiteSmoke"/> | ||
<Setter Property="BorderThickness" Value="1" /> | ||
<Setter Property="Margin" Value="1" /> | ||
<Setter Property="Background" Value="{StaticResource ControlBackgroundBrush}" /> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="{x:Type GridSplitter}"> | ||
<Border BorderBrush="{TemplateBinding BorderBrush}" | ||
BorderThickness="{TemplateBinding BorderThickness}" | ||
Background="{TemplateBinding Background}" | ||
Padding="9,2,9,1" | ||
CornerRadius="5"> | ||
<Canvas RenderOptions.EdgeMode="Aliased" UseLayoutRounding="True" | ||
Height="6" VerticalAlignment="Center" | ||
Width="50" HorizontalAlignment="Center"> | ||
<Line X1="0" X2="50" Y1="0" Y2="0" | ||
Stroke="WhiteSmoke" StrokeThickness="1"/> | ||
<Line X1="0" X2="50" Y1="1" Y2="1" | ||
Stroke="#A0A0A0" StrokeThickness="1"/> | ||
<Line X1="0" X2="50" Y1="4" Y2="4" | ||
Stroke="WhiteSmoke" StrokeThickness="1"/> | ||
<Line X1="0" X2="50" Y1="5" Y2="5" | ||
Stroke="#A0A0A0" StrokeThickness="1"/> | ||
</Canvas> | ||
</Border> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
</Style> | ||
</ResourceDictionary> |
Oops, something went wrong.