Fix: Rebuild broken modal HTML structure - add missing closing tags and attributes
This commit is contained in:
@@ -273,6 +273,7 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
"
|
"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
style="
|
style="
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -292,6 +293,7 @@
|
|||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
onclick="closeProjectModal()"
|
onclick="closeProjectModal()"
|
||||||
|
style="
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 20px;
|
top: 20px;
|
||||||
right: 20px;
|
right: 20px;
|
||||||
@@ -308,15 +310,22 @@
|
|||||||
z-index: 10;
|
z-index: 10;
|
||||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
|
"
|
||||||
onmouseover="this.style.transform='scale(1.1)'; this.style.background='#f8f9fa';"
|
onmouseover="this.style.transform='scale(1.1)'; this.style.background='#f8f9fa';"
|
||||||
onmouseout="this.style.transform='scale(1)'; this.style.background='white';"
|
onmouseout="this.style.transform='scale(1)'; this.style.background='white';"
|
||||||
|
>
|
||||||
<i class="bi bi-x-lg"></i>
|
<i class="bi bi-x-lg"></i>
|
||||||
</button>
|
</button>
|
||||||
|
<div
|
||||||
id="modalContent"
|
id="modalContent"
|
||||||
|
style="
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
scroll-behavior: smooth;
|
scroll-behavior: smooth;
|
||||||
|
"
|
||||||
|
></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="/assets/js/page-transitions.js?v=1766709739"></script>
|
<script src="/assets/js/page-transitions.js?v=1766709739"></script>
|
||||||
<script src="/assets/js/back-button-control.js?v=1766723554"></script>
|
<script src="/assets/js/back-button-control.js?v=1766723554"></script>
|
||||||
|
|||||||
Reference in New Issue
Block a user