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

Frontend: Minor UI Fixes #156

Merged
merged 4 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
15 changes: 12 additions & 3 deletions frontend/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ h2,
width: 100%;
}

#submit {
margin-top: 10px;
margin-bottom: 10px;
}

.usa-button-group {
justify-content: center;
}
Expand Down Expand Up @@ -70,9 +75,13 @@ img {
animation: spin 2s linear infinite;
}

.security-info {
padding-inline-start: 0;
list-style-position: inside;
ul,
ol {
padding-left: 15px;
}

ol {
margin-bottom: 0px;
}

@keyframes spin {
Expand Down
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ <h1>DedupliFHIR</h1>
/>
</div>
<div class="usa-form-group">
<label class="usa-label" for="options">Select file format for results data</label>
<label class="usa-label" for="options">Select file format for your results data</label>
<select class="usa-select" name="options" id="options">
<option value=".xlsx" selected="selected" >.xlsx</option>
<option value=".csv">.csv</option>
Expand Down
4 changes: 3 additions & 1 deletion frontend/pages/success.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ <h4 class="usa-alert__heading">Error</h4>
<div class="results-spreadsheet-instructions" id="results-spreadsheet-instructions">
<p>
<b>To find possible duplicates:</b>
<ol>
<li>Open your results file.</li>
<li>Find the records with the same <b>cluster_id</b>.<br><a href="https://github.com/DSACMS/dedupliFHIR/blob/main/research/sept-2024/examples-use-clusterid-to-find-possible-duplicates.md" target="_blank">(See examples.)</a></li>
<li>Find the records with the same <b>cluster_id</b>.</li>
</ol>
<a href="https://github.com/DSACMS/dedupliFHIR/blob/main/research/sept-2024/examples-use-clusterid-to-find-possible-duplicates.md" target="_blank">(See examples.)</a>
</p>
</div>
<button type="button" class="usa-button" id="save-file">Save the results file</button>
Expand Down
Loading