Fix modal close trigger (#10)
parent
b2152c0166
commit
3e9c9c21ad
12
index.html
12
index.html
|
|
@ -120,9 +120,9 @@ npm/microtip@0.2.2/microtip.min.css
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
<div id="description-modal" class="modal">
|
<div id="description-modal" data-micromodal-close class="modal">
|
||||||
<div tabindex="-1" data-micromodal-close class="modal-overlay">
|
<div tabindex="-1" class="modal-overlay">
|
||||||
<div role="dialog" class="modal-content shadow-bottom p-3 m-3" data-micromodal-close>
|
<div role="dialog" class="modal-content shadow-bottom p-3 m-3">
|
||||||
<h2 class="mt-0">What is NoPaste?</h2>
|
<h2 class="mt-0">What is NoPaste?</h2>
|
||||||
|
|
||||||
<span class="pink">NoPaste</span> is an open-source website similar to Pastebin where you can store any piece of code,
|
<span class="pink">NoPaste</span> is an open-source website similar to Pastebin where you can store any piece of code,
|
||||||
|
|
@ -152,9 +152,9 @@ npm/microtip@0.2.2/microtip.min.css
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="error-modal" class="modal">
|
<div id="error-modal" class="modal" data-micromodal-close>
|
||||||
<div tabindex="-1" data-micromodal-close class="modal-overlay">
|
<div tabindex="-1" class="modal-overlay">
|
||||||
<div role="dialog" class="modal-content shadow-bottom p-3 m-3" data-micromodal-close>
|
<div role="dialog" class="modal-content shadow-bottom p-3 m-3">
|
||||||
NoPaste cannot decompress the URL<br /><br />
|
NoPaste cannot decompress the URL<br /><br />
|
||||||
It's possible that you clicked on an invalid link<br /><br />
|
It's possible that you clicked on an invalid link<br /><br />
|
||||||
Sorry about that
|
Sorry about that
|
||||||
|
|
|
||||||
|
|
@ -100,6 +100,7 @@ h1 {
|
||||||
max-height: 100vh;
|
max-height: 100vh;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
cursor: initial;
|
||||||
}
|
}
|
||||||
.modal-content .additional-info {
|
.modal-content .additional-info {
|
||||||
opacity: 0.75;
|
opacity: 0.75;
|
||||||
|
|
@ -118,6 +119,7 @@ h1 {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Form elements */
|
/* Form elements */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue