Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Divide the image selection form into two columns #123

Merged
merged 2 commits into from
Nov 27, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions views/pages/tasks-new.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@

<!-- BEGIN MODAL -->
<div class="modal fade" id="imageSelectionModal" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Select Images</h5>
Expand All @@ -152,7 +152,8 @@
</div>

<form id="imageSelectionForm">
<div class="modal-body">
<div class="modal-body d-flex flex-row gap-4 justify-content-between">
<div class="w-50" style="margin-right: 50px;">
<div class="input-group mb-1">
<div class="form-floating">
<input type="text" id="originalFilenameLower" name="originalFilenameLower" class="form-control" />
Expand Down Expand Up @@ -264,7 +265,9 @@
</div>
</fieldset>
</div>
</div>

<div class="w-50">
<p class="mt-4">Labels used in Images</p>
<div
class="input-group mb-3" >
Expand Down Expand Up @@ -332,6 +335,7 @@
</fieldset>
</div>
</div>
</div>
</form>
<div class="modal-footer d-flex justify-content-between">
<em><span id="filteredImageCountModal"><%=imageCountTotal%></span> matching images</em>
Expand Down