forked from projects/fipamo
notification position tweaks, bumped version number
This commit is contained in:
parent
0b914fcdb5
commit
97fd051423
4 changed files with 17 additions and 13 deletions
|
@ -12,8 +12,8 @@ html(xmlns='http://www.w3.org/1999/xhtml', lang='en', xml:lang="en")
|
||||||
//meta(name="twitter:image" content="https://thetwelfth.house/base-assets/images/current.png")
|
//meta(name="twitter:image" content="https://thetwelfth.house/base-assets/images/current.png")
|
||||||
link(rel='stylesheet', href="/assets/css/dash.css", type='text/css')
|
link(rel='stylesheet', href="/assets/css/dash.css", type='text/css')
|
||||||
body
|
body
|
||||||
#notifications.notifications.notify-close
|
#notifications.notifications
|
||||||
#notifyMessage.notifyMessage
|
#notifyMessage.notifyMessage.notify-close
|
||||||
.notify-icon#notify-good
|
.notify-icon#notify-good
|
||||||
svg(viewBox="0 0 20 20" class="icons")
|
svg(viewBox="0 0 20 20" class="icons")
|
||||||
use#submit-update(xlink:href='/assets/images/global/sprite.svg#entypo-emoji-flirt')
|
use#submit-update(xlink:href='/assets/images/global/sprite.svg#entypo-emoji-flirt')
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "fipamo-beta",
|
"name": "fipamo-beta",
|
||||||
"version": "1.2.2",
|
"version": "1.2.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "The most chill blog framework ever.",
|
"description": "The most chill blog framework ever.",
|
||||||
"repository": "https://code.playvicio.us/Are0h/Fipamo",
|
"repository": "https://code.playvicio.us/Are0h/Fipamo",
|
||||||
|
|
|
@ -1559,7 +1559,6 @@ body {
|
||||||
background-color: #161d23;
|
background-color: #161d23;
|
||||||
font: 400 1em Helvetica, Arial, sans-serif;
|
font: 400 1em Helvetica, Arial, sans-serif;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
perspective: 1000px;
|
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
font: 300 1em Helvetica, Arial, sans-serif;
|
font: 300 1em Helvetica, Arial, sans-serif;
|
||||||
|
@ -1578,26 +1577,27 @@ svg.icons {
|
||||||
fill: #b2cce5;
|
fill: #b2cce5;
|
||||||
}
|
}
|
||||||
#notifications {
|
#notifications {
|
||||||
|
perspective: 1000px;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 2000;
|
z-index: 2000;
|
||||||
height: 10%;
|
height: 10%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: block;
|
display: none;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
transform-origin: 50% 0;
|
|
||||||
transition: all 0.5s cubic-bezier(0.83, 0.05, 0.28, 1);
|
|
||||||
}
|
}
|
||||||
#notifications #notifyMessage {
|
#notifications #notifyMessage {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
transition: all 0.5s cubic-bezier(0.83, 0.05, 0.28, 1);
|
||||||
height: 50px;
|
height: 50px;
|
||||||
width: 500px;
|
width: 500px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
transform-origin: 50% 0;
|
||||||
}
|
}
|
||||||
#notifications #notifyMessage #notify-good,
|
#notifications #notifyMessage #notify-good,
|
||||||
#notifications #notifyMessage #notify-lame,
|
#notifications #notifyMessage #notify-lame,
|
||||||
|
|
16
public/assets/scripts/dash.min.js
vendored
16
public/assets/scripts/dash.min.js
vendored
|
@ -3617,6 +3617,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
||||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||||
|
|
||||||
var notifcation = document.getElementById('notifications');
|
var notifcation = document.getElementById('notifications');
|
||||||
|
var notify = document.getElementById('notifyMessage');
|
||||||
var messageText = document.getElementById('message-text');
|
var messageText = document.getElementById('message-text');
|
||||||
var iconGood = document.getElementById('notify-good');
|
var iconGood = document.getElementById('notify-good');
|
||||||
var iconLame = document.getElementById('notify-lame');
|
var iconLame = document.getElementById('notify-lame');
|
||||||
|
@ -3636,7 +3637,7 @@ var Notfications = /*#__PURE__*/function () {
|
||||||
_createClass(Notfications, [{
|
_createClass(Notfications, [{
|
||||||
key: "alert",
|
key: "alert",
|
||||||
value: function alert(text, status) {
|
value: function alert(text, status) {
|
||||||
//notifcation.style.display = 'flex';
|
notifcation.style.display = 'block';
|
||||||
iconWorking.style.display = 'none';
|
iconWorking.style.display = 'none';
|
||||||
iconGood.style.display = 'none';
|
iconGood.style.display = 'none';
|
||||||
iconLame.style.display = 'none';
|
iconLame.style.display = 'none';
|
||||||
|
@ -3657,8 +3658,8 @@ var Notfications = /*#__PURE__*/function () {
|
||||||
iconWorking.style.display = 'block';
|
iconWorking.style.display = 'block';
|
||||||
}
|
}
|
||||||
|
|
||||||
notifcation.classList.remove('notify-close');
|
notify.classList.remove('notify-close');
|
||||||
notifcation.classList.add('notify-open');
|
notify.classList.add('notify-open');
|
||||||
messageText.innerHTML = text;
|
messageText.innerHTML = text;
|
||||||
(0, _animeEs.default)({
|
(0, _animeEs.default)({
|
||||||
targets: messageText,
|
targets: messageText,
|
||||||
|
@ -3668,8 +3669,11 @@ var Notfications = /*#__PURE__*/function () {
|
||||||
complete: function complete() {
|
complete: function complete() {
|
||||||
if (status !== null) {
|
if (status !== null) {
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
notifcation.classList.add('notify-close');
|
notify.addEventListener('transitionend', function () {
|
||||||
notifcation.classList.remove('notify-open');
|
notifcation.style.display = 'none';
|
||||||
|
});
|
||||||
|
notify.classList.add('notify-close');
|
||||||
|
notify.classList.remove('notify-open');
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8572,7 +8576,7 @@ var parent = module.bundle.parent;
|
||||||
if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') {
|
if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') {
|
||||||
var hostname = "" || location.hostname;
|
var hostname = "" || location.hostname;
|
||||||
var protocol = location.protocol === 'https:' ? 'wss' : 'ws';
|
var protocol = location.protocol === 'https:' ? 'wss' : 'ws';
|
||||||
var ws = new WebSocket(protocol + '://' + hostname + ':' + "53859" + '/');
|
var ws = new WebSocket(protocol + '://' + hostname + ':' + "57255" + '/');
|
||||||
|
|
||||||
ws.onmessage = function (event) {
|
ws.onmessage = function (event) {
|
||||||
checkedAssets = {};
|
checkedAssets = {};
|
||||||
|
|
Loading…
Reference in a new issue