Since the front-end received much more code (features) than first expected, the files became much too large. For this reason, the JS and CSS code has now been split by component and thus into several small files. However, since there are now many small files, a JS and CSS bundle tool had to come :D.
17 lines
688 B
Plaintext
17 lines
688 B
Plaintext
<div id="diagram-import" class="modal" style="display: none;" tabindex="-1">
|
|
<div class="modal-content flex-rows">
|
|
<div class="modal-header">
|
|
<h2>Import Diagram</h2>
|
|
<div class="hr"></div>
|
|
</div>
|
|
<div class="modal-main flex-main">
|
|
<input id="diagram-import-input" type="file" name="diagram" />
|
|
<p id="diagram-import-error-message" class="error-message"></p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<input id="diagram-import-ok-btn" class="ok" type="button" value="Import" disabled />
|
|
<input id="diagram-import-cancel-btn" class="cancel" type="button" value="Cancel" onclick="closeModal('diagram-import');" />
|
|
</div>
|
|
</div>
|
|
</div>
|