WI Entry titles on left, controls on right.
This commit is contained in:
parent
d5004d79bd
commit
eaa33f2544
|
@ -3933,7 +3933,11 @@
|
||||||
<!-- <span class="drag-handle">☰</span> -->
|
<!-- <span class="drag-handle">☰</span> -->
|
||||||
<div class="gap5px world_entry_thin_controls wide100p alignitemscenter">
|
<div class="gap5px world_entry_thin_controls wide100p alignitemscenter">
|
||||||
<div class="fa-fw fa-solid fa-circle-chevron-down inline-drawer-icon down"></div>
|
<div class="fa-fw fa-solid fa-circle-chevron-down inline-drawer-icon down"></div>
|
||||||
|
|
||||||
<span class="flex-container alignitemscenter wide100p">
|
<span class="flex-container alignitemscenter wide100p">
|
||||||
|
<div class="flex-container flex1">
|
||||||
|
<textarea class="text_pole" name="comment" maxlength="2000" data-i18n="[placeholder]Entry Title/Memo" placeholder="Entry Title/Memo"></textarea>
|
||||||
|
</div>
|
||||||
<!-- <span class="world_entry_form_position_value"></span> -->
|
<!-- <span class="world_entry_form_position_value"></span> -->
|
||||||
<select title="WI Entry Status: 🔵 Constant 🟢 Normal ❌ Disabled" name="entryStateSelector" class="widthNatural margin0">
|
<select title="WI Entry Status: 🔵 Constant 🟢 Normal ❌ Disabled" name="entryStateSelector" class="widthNatural margin0">
|
||||||
<option title="WI Entry Status: 🔵 Constant 🟢 Normal ❌ Disabled" value="constant">🔵</option>
|
<option title="WI Entry Status: 🔵 Constant 🟢 Normal ❌ Disabled" value="constant">🔵</option>
|
||||||
|
@ -3963,9 +3967,9 @@
|
||||||
<div class="world_entry_form_control wi-enter-footer-text flex-container flexNoGap probabilityContainer">
|
<div class="world_entry_form_control wi-enter-footer-text flex-container flexNoGap probabilityContainer">
|
||||||
<input title="Probability" class="text_pole wideMax100px margin0" type="number" name="probability" placeholder="" min="0" max="100" />
|
<input title="Probability" class="text_pole wideMax100px margin0" type="number" name="probability" placeholder="" min="0" max="100" />
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-container flex1">
|
<!-- <div class="flex-container flex1">
|
||||||
<textarea class="text_pole" name="comment" maxlength="2000" data-i18n="[placeholder]Entry Title/Memo" placeholder="Entry Title/Memo"></textarea>
|
<textarea class="text_pole" name="comment" maxlength="2000" data-i18n="[placeholder]Entry Title/Memo" placeholder="Entry Title/Memo"></textarea>
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
|
@ -292,6 +292,9 @@ function displayWorldEntries(name, data, navigation = navigation_option.none) {
|
||||||
$("#world_popup_entries_list").empty();
|
$("#world_popup_entries_list").empty();
|
||||||
const keywordHeaders = `
|
const keywordHeaders = `
|
||||||
<div class="flex-container wide100p spaceBetween justifyCenter textAlignCenter" style="padding:0 2.5em;">
|
<div class="flex-container wide100p spaceBetween justifyCenter textAlignCenter" style="padding:0 2.5em;">
|
||||||
|
<small class="flex1">
|
||||||
|
Title/Memo
|
||||||
|
</small>
|
||||||
<small style="width:${InputWidthReference.width() + 5 + 'px'}">
|
<small style="width:${InputWidthReference.width() + 5 + 'px'}">
|
||||||
Status
|
Status
|
||||||
</small>
|
</small>
|
||||||
|
@ -307,9 +310,7 @@ function displayWorldEntries(name, data, navigation = navigation_option.none) {
|
||||||
<small style="width:${InputWidthReference.width() + 15 + 'px'}">
|
<small style="width:${InputWidthReference.width() + 15 + 'px'}">
|
||||||
Trigger %
|
Trigger %
|
||||||
</small>
|
</small>
|
||||||
<small class="flex1">
|
|
||||||
Title/Memo
|
|
||||||
</small>
|
|
||||||
</div>`
|
</div>`
|
||||||
const blocks = page.map(entry => getWorldEntry(name, data, entry));
|
const blocks = page.map(entry => getWorldEntry(name, data, entry));
|
||||||
$("#world_popup_entries_list").append(keywordHeaders);
|
$("#world_popup_entries_list").append(keywordHeaders);
|
||||||
|
|
Loading…
Reference in New Issue