forked from space-wizards/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reagent guidebook reactions UI dividers (space-wizards#35608)
* Update GuideReagentReaction.xaml * Update Content.Client/Guidebook/Controls/GuideReagentReaction.xaml Co-authored-by: Thomas <[email protected]> * Update Content.Client/Guidebook/Controls/GuideReagentReaction.xaml Co-authored-by: Thomas <[email protected]> --------- Co-authored-by: Thomas <[email protected]>
- Loading branch information
Showing
1 changed file
with
28 additions
and
24 deletions.
There are no files selected for viewing
52 changes: 28 additions & 24 deletions
52
Content.Client/Guidebook/Controls/GuideReagentReaction.xaml
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 |
---|---|---|
@@ -1,30 +1,34 @@ | ||
<BoxContainer xmlns="https://spacestation14.io" | ||
Orientation="Horizontal" | ||
Orientation="Vertical" | ||
HorizontalAlignment="Stretch" | ||
HorizontalExpand="True" | ||
Margin="0 0 0 5"> | ||
<BoxContainer Name="ReactantsContainer" Orientation="Vertical" HorizontalExpand="True" VerticalAlignment="Center"> | ||
<RichTextLabel Name="ReactantsLabel" | ||
HorizontalAlignment="Center" | ||
VerticalAlignment="Center" | ||
Access="Public" | ||
Visible="False"/> | ||
</BoxContainer> | ||
<BoxContainer Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center"> | ||
<TextureRect TexturePath="/Textures/Interface/Misc/beakerlarge.png" | ||
HorizontalAlignment="Center" | ||
Name="MixTexture" | ||
Access="Public"/> | ||
<RichTextLabel Name="MixLabel" | ||
HorizontalAlignment="Center" | ||
Access="Public" | ||
Margin="2 0 0 0"/> | ||
</BoxContainer> | ||
<BoxContainer Orientation="Vertical" HorizontalExpand="True" VerticalAlignment="Center"> | ||
<RichTextLabel Name="ProductsLabel" | ||
HorizontalAlignment="Center" | ||
VerticalAlignment="Center" | ||
Access="Public" | ||
Visible="False"/> | ||
<BoxContainer Orientation="Horizontal"> | ||
<BoxContainer Name="ReactantsContainer" Orientation="Vertical" HorizontalExpand="True" | ||
VerticalAlignment="Center"> | ||
<RichTextLabel Name="ReactantsLabel" | ||
HorizontalAlignment="Center" | ||
VerticalAlignment="Center" | ||
Access="Public" | ||
Visible="False" /> | ||
</BoxContainer> | ||
<BoxContainer Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center"> | ||
<TextureRect TexturePath="/Textures/Interface/Misc/beakerlarge.png" | ||
HorizontalAlignment="Center" | ||
Name="MixTexture" | ||
Access="Public" /> | ||
<RichTextLabel Name="MixLabel" | ||
HorizontalAlignment="Center" | ||
Access="Public" | ||
Margin="2 0 0 0" /> | ||
</BoxContainer> | ||
<BoxContainer Orientation="Vertical" HorizontalExpand="True" VerticalAlignment="Center"> | ||
<RichTextLabel Name="ProductsLabel" | ||
HorizontalAlignment="Center" | ||
VerticalAlignment="Center" | ||
Access="Public" | ||
Visible="False" /> | ||
</BoxContainer> | ||
</BoxContainer> | ||
<PanelContainer StyleClasses="LowDivider" Margin="0 5 0 5" /> | ||
</BoxContainer> |