mirror of
https://github.com/ascribe/onion.git
synced 2024-11-13 16:45:05 +01:00
76 lines
1.6 KiB
SCSS
76 lines
1.6 KiB
SCSS
.ascribe-global-notification {
|
|
background-color: #212121;
|
|
color: white;
|
|
display: table;
|
|
height: 3.5em;
|
|
left: 0;
|
|
position: fixed;
|
|
transition: .2s bottom cubic-bezier(.77, 0, .175, 1);
|
|
width: 100%;
|
|
|
|
z-index: 9999;
|
|
|
|
> div {
|
|
padding: .5em 1em;
|
|
text-align: center;
|
|
}
|
|
|
|
&.ascribe-global-notification-off {
|
|
bottom: -5em;
|
|
}
|
|
|
|
&.ascribe-global-notification-on {
|
|
bottom: 0;
|
|
|
|
// React can sometimes take some time to load the notification message,
|
|
// so add a small delay before showing the notification
|
|
transition-delay: 0.2s;
|
|
}
|
|
}
|
|
|
|
.ascribe-global-notification-bubble {
|
|
background-color: #212121;
|
|
border-radius: 2px;
|
|
bottom: 3em;
|
|
color: white;
|
|
display: table;
|
|
height: 3.5em;
|
|
max-width: 75%;
|
|
position: fixed;
|
|
transition: 0.5s right ease;
|
|
|
|
z-index: 9999;
|
|
|
|
> div {
|
|
padding: .75em 1.5em;
|
|
text-align: left;
|
|
}
|
|
|
|
&.ascribe-global-notification-bubble-off {
|
|
right: -100em;
|
|
}
|
|
|
|
&.ascribe-global-notification-bubble-on {
|
|
right: 3.5em;
|
|
|
|
// React can sometimes take some time to load the notification message,
|
|
// so add a small delay before showing the notification
|
|
transition-delay: 0.5s;
|
|
}
|
|
}
|
|
|
|
.ascribe-global-notification > div,
|
|
.ascribe-global-notification-bubble > div {
|
|
display: table-cell;
|
|
font-size: 1.25em;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.ascribe-global-notification-danger {
|
|
background-color: #d9534f;
|
|
}
|
|
|
|
.ascribe-global-notification-success {
|
|
background-color: rgba(2, 182, 163, 1);
|
|
}
|