mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 09:41:24 +01:00
zone editor - filter by type
This commit is contained in:
parent
5acc3b156b
commit
f8d2719218
2 changed files with 49 additions and 32 deletions
15
index.html
15
index.html
|
|
@ -177,7 +177,7 @@
|
|||
<div id="loading">
|
||||
<div id="titleName"><t data-t="titleName">Azgaar's</t></div>
|
||||
<div id="title"><t data-t="title">Fantasy Map Generator</t></div>
|
||||
<div id="version"><t data-t="version">v. </t>1.72</div>
|
||||
<div id="version"><t data-t="version">v. </t>1.73</div>
|
||||
<p id="loading-text"><t data-t="loading">LOADING</t><span>.</span><span>.</span><span>.</span></p>
|
||||
</div>
|
||||
|
||||
|
|
@ -2871,7 +2871,7 @@
|
|||
<div id="zonesEditor" class="dialog stable" style="display: none">
|
||||
<div id="customHeader" class="header">
|
||||
<div style="left:1.8em" data-tip="Zone description">Description </div>
|
||||
<div style="left:13em" data-tip="Zone type" class="hide">Type </div>
|
||||
<div style="left:13em" data-tip="Zone type">Type </div>
|
||||
<div style="left:19em" data-tip="Zone cells count" class="hide">Cells </div>
|
||||
<div style="left:23.6em" data-tip="Zone area" class="hide">Area </div>
|
||||
<div style="left:30.6em" data-tip="Zone population" class="hide">Population </div>
|
||||
|
|
@ -2879,11 +2879,6 @@
|
|||
|
||||
<div id="zonesBodySection" class="table" data-type="absolute"></div>
|
||||
|
||||
<div id="zonesFilters" data-tip="Show only zones of selected type">
|
||||
Type:
|
||||
<select id="zonesFilterType"></select>
|
||||
</div>
|
||||
|
||||
<div id="zonesFooter" class="totalLine">
|
||||
<div data-tip="Number of zones" style="margin-left: 5px">Zones: <span id="zonesFooterNumber">0</span></div>
|
||||
<div data-tip="Total cells number" style="margin-left: 12px">Cells: <span id="zonesFooterCells">0</span></div>
|
||||
|
|
@ -2900,8 +2895,8 @@
|
|||
<button id="zonesManually" data-tip="Re-assign zones" class="icon-brush"></button>
|
||||
<div id="zonesManuallyButtons" style="display: none">
|
||||
<label data-tip="Change brush size. Shortcut: + (increase), – (decrease)" class="italic">Brush:
|
||||
<input id="zonesBrush" oninput="tip('Brush size: '+this.value); zonesBrushNumber.value = this.value" type="range" min=5 max=25 value=7 style="width:7em">
|
||||
<input id="zonesBrushNumber" oninput="tip('Brush size: '+this.value); zonesBrush.value = this.value" type="number" min=5 max=25 value=7>
|
||||
<input id="zonesBrush" oninput="tip('Brush size: '+this.value); zonesBrushNumber.value = this.value" type="range" min=5 max=50 value=7 style="width:9em">
|
||||
<input id="zonesBrushNumber" oninput="tip('Brush size: '+this.value); zonesBrush.value = this.value" type="number" min=5 max=50 value=7>
|
||||
</label><br>
|
||||
<button id="zonesManuallyApply" data-tip="Apply assignment" class="icon-check"></button>
|
||||
<button id="zonesManuallyCancel" data-tip="Cancel assignment" class="icon-cancel"></button>
|
||||
|
|
@ -2910,6 +2905,8 @@
|
|||
|
||||
<button id="zonesAdd" data-tip="Add new zone layer" class="icon-plus"></button>
|
||||
<button id="zonesExport" data-tip="Download zones-related data" class="icon-download"></button>
|
||||
|
||||
<div id="zonesFilters" data-tip="Show only zones of selected type" style="display: inline-block">Type: <select id="zonesFilterType"></select></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue