mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-30 00:38:38 +00:00
Fix missing end quote and add extra margin
This commit is contained in:
parent
2967fc7f48
commit
f87e9704d1
1 changed files with 4 additions and 5 deletions
|
@ -61,19 +61,19 @@ function onSubmit(){
|
||||||
<textarea name="description" id="description" spellcheck="false" placeholder="Description">@HttpUtility.HtmlDecode(Model.Slot.Description)</textarea>
|
<textarea name="description" id="description" spellcheck="false" placeholder="Description">@HttpUtility.HtmlDecode(Model.Slot.Description)</textarea>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui divider"></div>
|
<div class="ui divider"></div>
|
||||||
<label class="ui button @(Model.Slot.InitiallyLocked ? "selected" : "")" for="checkboxInitiallyLocked">
|
<label class="ui button @(Model.Slot.InitiallyLocked ? "selected" : "")" style="margin-bottom: 1em;" for="checkboxInitiallyLocked">
|
||||||
<i class="lock icon"></i>
|
<i class="lock icon"></i>
|
||||||
Locked
|
Locked
|
||||||
<input type="checkbox" name="initiallyLocked" id="checkboxInitiallyLocked" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.InitiallyLocked ? "checked" : "") value="true">
|
<input type="checkbox" name="initiallyLocked" id="checkboxInitiallyLocked" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.InitiallyLocked ? "checked" : "") value="true">
|
||||||
</label>
|
</label>
|
||||||
<label class="ui button @(Model.Slot.Shareable == 1 ? "selected" : "")" for="checkboxShareable">
|
<label class="ui button @(Model.Slot.Shareable == 1 ? "selected" : "")" style="margin-bottom: 1em;" for="checkboxShareable">
|
||||||
<i class="check icon"></i>
|
<i class="check icon"></i>
|
||||||
Copyable
|
Copyable
|
||||||
<input type="checkbox" name="shareable" id="checkboxShareable" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.Shareable == 1 ? "checked" : "") value="1">
|
<input type="checkbox" name="shareable" id="checkboxShareable" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.Shareable == 1 ? "checked" : "") value="1">
|
||||||
</label>
|
</label>
|
||||||
@if (Model.Slot.GameVersion != GameVersion.LittleBigPlanet1)
|
@if (Model.Slot.GameVersion != GameVersion.LittleBigPlanet1)
|
||||||
{
|
{
|
||||||
<label class="ui button @(Model.Slot.SubLevel ? "selected" : """ for="checkboxSubLevel">
|
<label class="ui button @(Model.Slot.SubLevel ? "selected" : "")" style="margin-bottom: 1em;" for="checkboxSubLevel">
|
||||||
<i class="arrow circle down icon"></i>
|
<i class="arrow circle down icon"></i>
|
||||||
Sub Level
|
Sub Level
|
||||||
<input type="checkbox" name="subLevel" id="checkboxSubLevel" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.SubLevel ? "checked" : "") value="true">
|
<input type="checkbox" name="subLevel" id="checkboxSubLevel" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.SubLevel ? "checked" : "") value="true">
|
||||||
|
@ -81,13 +81,12 @@ function onSubmit(){
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
<label class="ui button @(Model.Slot.Lbp1Only ? "selected" : "")" for="checkboxLbp1Only">
|
<label class="ui button @(Model.Slot.Lbp1Only ? "selected" : "")" style="margin-bottom: 1em;" for="checkboxLbp1Only">
|
||||||
<i class="eye icon"></i>
|
<i class="eye icon"></i>
|
||||||
LBP1 Only
|
LBP1 Only
|
||||||
<input type="checkbox" name="lbp1Only" id="checkboxLbp1Only" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.Lbp1Only ? "checked" : "") value="true">
|
<input type="checkbox" name="lbp1Only" id="checkboxLbp1Only" style="margin-left: 5px;" onchange="onCheckboxChange(this)" @(Model.Slot.Lbp1Only ? "checked" : "") value="true">
|
||||||
</label>
|
</label>
|
||||||
}
|
}
|
||||||
<div class="ui divider fitted hidden"></div>
|
|
||||||
@if (Model.Slot.GameVersion != GameVersion.LittleBigPlanet1)
|
@if (Model.Slot.GameVersion != GameVersion.LittleBigPlanet1)
|
||||||
{
|
{
|
||||||
<div class="field">
|
<div class="field">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue