перенос файлов клиента из папки White в _White

This commit is contained in:
Remuchi
2024-01-28 17:32:55 +07:00
parent c80b10a688
commit 21dbccfec9
139 changed files with 345 additions and 434 deletions

View File

@@ -0,0 +1,29 @@
<controls:FancyWindow xmlns="https://spacestation14.io"
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:style="clr-namespace:Content.Client.Stylesheets"
Title="{Loc 'character-information-ui-title'}" MinSize="675 384" Resizable="True">
<BoxContainer Orientation="Horizontal" HorizontalExpand="True" VerticalExpand="True" Margin="8">
<BoxContainer Orientation="Vertical">
<GridContainer Name="SpriteContainer" Columns="2">
</GridContainer>
<!-- Character name, job title and icon, etc goes here -->
<RichTextLabel Name="Name" HorizontalAlignment="Center" />
<RichTextLabel Name="Job" HorizontalAlignment="Center" VerticalAlignment="Center" />
</BoxContainer>
<PanelContainer MinSize="2 5" MaxWidth="2" Margin="8 0 8 0">
<PanelContainer.PanelOverride>
<graphics:StyleBoxFlat BackgroundColor="{x:Static style:StyleNano.NanoGold}" ContentMarginTopOverride="2" />
</PanelContainer.PanelOverride>
</PanelContainer>
<ScrollContainer HScrollEnabled="False" HorizontalExpand="True" VerticalExpand="True">
<BoxContainer Orientation="Vertical" HorizontalExpand="True" VerticalExpand="True">
<!-- Character description goes here -->
<RichTextLabel Name="FlavorText" HorizontalExpand="True" />
</BoxContainer>
</ScrollContainer>
</BoxContainer>
</controls:FancyWindow>