mirror of
https://gitlab.silvrtree.co.uk/martind2000/mdot_server.git
synced 2025-01-30 05:30:15 +00:00
de8af028e5
Before convertion of graph object to use AMCharts..
137 lines
2.7 KiB
CSS
137 lines
2.7 KiB
CSS
/*!
|
|
* Notification.js
|
|
*
|
|
* A well designed, highly customizable and lightweigth notification library.
|
|
*
|
|
* @author Dominique Müller <dominique.m.mueller@gmail.com>
|
|
* @copyright Dominique Müller 2015
|
|
* @license MIT <http://opensource.org/licenses/MIT>
|
|
* @link Github <https://github.com/dominique-mueller/notification-js>
|
|
* @version 1.0.0
|
|
*/
|
|
|
|
/* Notification container */
|
|
|
|
.notification {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
overflow: hidden;
|
|
box-shadow: 0 1px 2px rgba(0,0,0,0);
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
opacity: 0;
|
|
}
|
|
|
|
.notification.is-visible {
|
|
box-shadow: 0 1px 2px rgba(0,0,0,.15);
|
|
opacity: 1;
|
|
}
|
|
|
|
.notification-background {
|
|
position: absolute;
|
|
top: 50%;
|
|
z-index: -1;
|
|
width: 200%;
|
|
padding-bottom: 200%;
|
|
border-radius: 50%;
|
|
-webkit-transform: translateY(-50%) scale(0);
|
|
transform: translateY(-50%) scale(0);
|
|
}
|
|
|
|
.notification.is-visible > .notification-background {
|
|
-webkit-transform: translateY(-50%) scale(1);
|
|
transform: translateY(-50%) scale(1);
|
|
}
|
|
|
|
/* Notification symbol */
|
|
|
|
.notification-symbol {
|
|
position: absolute;
|
|
top: 50%;
|
|
opacity: 0;
|
|
-webkit-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.notification.is-visible > .notification-symbol {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Notification default success symbol */
|
|
|
|
.notification-symbol-success > polyline {
|
|
transition: stroke-dashoffset 0s linear 2s;
|
|
|
|
stroke-dashoffset: 23;
|
|
}
|
|
|
|
.notification.is-visible > .notification-symbol-success > polyline {
|
|
transition: stroke-dashoffset .8s ease;
|
|
|
|
stroke-dashoffset: 0;
|
|
}
|
|
|
|
/* Notification default error symbol */
|
|
|
|
.notification-symbol-error > line {
|
|
transition: stroke-dashoffset 0s linear 2s;
|
|
|
|
stroke-dashoffset: 17;
|
|
}
|
|
|
|
.notification.is-visible > .notification-symbol-error > line:nth-child(1) {
|
|
transition: stroke-dashoffset .5s ease;
|
|
|
|
stroke-dashoffset: 0;
|
|
}
|
|
|
|
.notification.is-visible > .notification-symbol-error > line:nth-child(2) {
|
|
transition: stroke-dashoffset .5s ease .4s;
|
|
|
|
stroke-dashoffset: 0;
|
|
}
|
|
|
|
/* Notification message */
|
|
|
|
.notification-message {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
opacity: 0;
|
|
-webkit-transform: translateX(-22px);
|
|
transform: translateX(-22px);
|
|
}
|
|
|
|
.notification.is-visible > .notification-message {
|
|
opacity: 1;
|
|
-webkit-transform: translateX(0);
|
|
transform: translateX(0);
|
|
}
|
|
|
|
/* Notification button */
|
|
|
|
.notification-btn {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 10px;
|
|
cursor: pointer;
|
|
background-color: transparent;
|
|
border: none;
|
|
opacity: 0;
|
|
-webkit-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
.notification-btn:hover,
|
|
.notification-btn:focus,
|
|
.notification-btn:active {
|
|
padding: inherit;
|
|
}
|
|
|
|
.notification-btn::-moz-focus-inner {
|
|
border: 0;
|
|
}
|
|
|
|
.notification.is-visible > .notification-btn {
|
|
opacity: .5;
|
|
}
|