Merge pull request #80 from ascribe/align-global-notification-left

Use left alignment for global notification messages
This commit is contained in:
Brett Sun 2016-01-26 13:51:30 +01:00
commit 5a5e597ca4
1 changed files with 34 additions and 22 deletions

View File

@ -9,23 +9,23 @@
width: 100%;
z-index: 9999;
}
.ascribe-global-notification-off {
bottom: -3.5em;
}
> div {
padding: .5em 1em;
text-align: center;
}
.ascribe-global-notification-on {
bottom: 0;
}
&.ascribe-global-notification-off {
bottom: -5em;
}
.ascribe-global-notification > div,
.ascribe-global-notification-bubble > div {
display: table-cell;
font-size: 1.25em;
padding-right: 3em;
text-align: right;
vertical-align: middle;
&.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 {
@ -35,23 +35,35 @@
color: white;
display: table;
height: 3.5em;
max-width: 75%;
position: fixed;
right: -50em;
transition: 1s right ease;
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-bubble-off {
right: -100em;
}
.ascribe-global-notification-bubble-on {
right: 3.5em;
.ascribe-global-notification > div,
.ascribe-global-notification-bubble > div {
display: table-cell;
font-size: 1.25em;
vertical-align: middle;
}
.ascribe-global-notification-danger {