Skip to content

Commit

Permalink
fix z-index of close.png
Browse files Browse the repository at this point in the history
  • Loading branch information
adaurat committed Dec 19, 2024
1 parent 507529e commit 2331741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmra/risk_assessment/templates/treatments-form-js.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
var innerHTML = `
<div class='pr-2 mt-2' ${isValid ? "id='summary-" + values.id + "'" : ""} style='position: relative; display: flex; height: 42px; min-width: 100%; ${isValid ? "" : "border: solid 2px var(--danger);"}'>
<button id='focus-${values.id}' class='btn btn-secondary text-truncate w-100'>${values.name}</button>
<button id='delete-${values.id}' class='btn' style='position: absolute; top: -22px; right: -15px; opacity: 1; z-index: 1000;'><img src='/static/img/close.svg'></button>
<button id='delete-${values.id}' class='btn' style='position: absolute; top: -22px; right: -15px; opacity: 1; z-index: 90;'><img src='/static/img/close.svg'></button>
</div>
`.trim();
if (!isValid) {
Expand Down

0 comments on commit 2331741

Please sign in to comment.