Replaced symlink with local version of Plugins

This commit is contained in:
Michał Gdula 2022-08-07 11:02:42 +01:00
parent 9fd86cb3fc
commit dba8379a0c
8 changed files with 265 additions and 8 deletions

@ -1 +0,0 @@
Subproject commit 471cd363a78fd2b73d960211a33829bada62e849

112
Sniffle/sniffle.css Normal file
View file

@ -0,0 +1,112 @@
/*
Sniffle CSS
Written simply for easy changing!
*/
/*
Base notification stacking
It allows for the notifications to stack simply
Due to div having no height initself there is no
reason in hiding it when no notifications are showing
*/
.sniffle {
margin: 0; padding: 0 1rem;
max-width: 621px; width: calc(100% - 1rem);
top: 0.5rem; left: 50%;
transform: translateX(-50%);
position: fixed; z-index: 999;
}
/*
Notification body
It contains 2 child elements,
am image .sniffle-img
and a text div .sniffle-content
*/
.sniffle-notification {
margin-bottom: 1rem; padding: 0.5rem;
max-width: calc(100% - 1rem); min-height: 2.5rem;
display: flex; flex-direction: row; overflow-y: hidden;
z-index: 999;
background-color: #151515;
box-shadow: 5px 5px 5px #151515aa;
transition: transform 1s cubic-bezier(.19,1,.22,1), opacity 0.2s cubic-bezier(.19,1,.22,1);
border-radius: var(--rad);
}
.sniffle-notification:hover {
transform: scale(1.05);
cursor: pointer;
}
/*
Notification content Root
Overflow is hidden incase the description of the message is too long too display
And to prevent text from overflowing the notification
*/
.sniffle-content {
margin: 0 auto;
width: calc(100% - 3.5rem);
flex-direction: column; flex-wrap: wrap;
overflow-y: hidden;
}
/*
Notification icon/image
*/
.sniffle-img {
margin-right: 1rem;
max-width: 2.5rem; width: auto;
height: auto;
object-fit: contain;
}
/*
Notification header
*/
.sniffle-header {
margin: 0 0 0.25rem 0; padding: 0;
font-size: 16px;
font-weight: bold;
color: var(--fg);
}
/*
Notification description
*/
.sniffle-description {
margin: 0; padding: 0;
font-size: 14px;
word-wrap: break-word;
font-weight: bold;
color: var(--fg);
}
.sniffle-description::after {
content: '\A Click\00A0 to\00A0 dissmiss';
white-space: pre;
opacity: 0.6;
}

52
Sniffle/sniffle.js Normal file
View file

@ -0,0 +1,52 @@
/*
Close notification
Used by the notifications themself, don't use in code
*/
function sniffleClose(a) {
a.closest(".sniffle-notification").style.transform="translateY(-20rem) scale(0.8)";
a.closest(".sniffle-notification").style.opacity="0";
setTimeout(function(){
a.closest(".sniffle-notification").style.display="none";
a.remove()
}, 200);
};
/*
Add notification
Header > Required
Takes in String input
Description > Required
Takes in String input
Img > Optional
Takes in String input
*/
function sniffleAdd(header, description, colour, img) {
// Colour is optional, so check if it was added or not
if (typeof colour === 'undefined') {
colour = '';
} else {
colour = `style="background-color:${colour};"`;
}
// Image is optional, so check if it was added or not
if (typeof img === 'undefined') {
img = '';
} else {
img = `<img class="sniffle-img" src="${img}">`;
}
var newSniffle = `<div class="sniffle-notification" onclick="sniffleClose(this)" ${colour}>\
${img}\
<div class="sniffle-content">\
<p class="sniffle-header">${header}</p>\
<p class="sniffle-description">${description}</p>\
</div>\
</div>`;
$(".sniffle").append(newSniffle);
};