mirror of
https://github.com/mollersuite/monofile.git
synced 2024-11-21 21:36:26 -08:00
FUCK YOU! YOU FUCKIN' DICK!
This commit is contained in:
parent
88035195be
commit
eb53609e79
|
@ -78,7 +78,7 @@ fileApiRoutes.post("/manage", parser, (req,res) => {
|
|||
if (!req.body.value) delete files.files[e].tag
|
||||
else {
|
||||
if (req.body.value.toString().length > 30) return
|
||||
files.files[e].tag = req.body.value.toString().lower()
|
||||
files.files[e].tag = req.body.value.toString().toLowerCase()
|
||||
}
|
||||
modified++;
|
||||
break;
|
||||
|
|
|
@ -169,5 +169,12 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.category {
|
||||
|
||||
p {
|
||||
text-align:left;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -81,12 +81,27 @@
|
|||
color: #AAAAAA;
|
||||
font-size: 14px;
|
||||
margin: 10px 0px 3px 0px;
|
||||
text-align:center;
|
||||
|
||||
@media screen and (max-width:500px) {
|
||||
font-size:16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.mdHitbox {
|
||||
position:absolute;
|
||||
width:100%;
|
||||
height:100%;
|
||||
top:0%;
|
||||
left:0%;
|
||||
cursor:pointer;
|
||||
z-index: 0;
|
||||
border:none;
|
||||
background-color: #00000000;
|
||||
outline:none;
|
||||
}
|
||||
|
||||
.modal {
|
||||
|
@ -96,4 +111,5 @@
|
|||
transform:translateY(-100%);
|
||||
top:100%;
|
||||
left:0%;
|
||||
z-index: 1;
|
||||
}
|
||||
|
|
|
@ -35,7 +35,8 @@
|
|||
</script>
|
||||
|
||||
{#if activeModal}
|
||||
<button class="modalContainer" on:click|self={forceCancel} transition:fade={{duration:200}}>
|
||||
<div class="modalContainer" transition:fade={{duration:200}}>
|
||||
<button class="mdHitbox" on:click|self={forceCancel}></button>
|
||||
<div class="modal" transition:slide={{duration:200}}>
|
||||
|
||||
<div class="optPicker">
|
||||
|
@ -73,5 +74,5 @@
|
|||
|
||||
</div>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
{/if}
|
Loading…
Reference in a new issue