ui: Updated notifications popup/dropdown.

This commit is contained in:
gerlofvanek
2022-11-15 17:03:30 +01:00
parent d2de181550
commit 59adf3368b
4 changed files with 107 additions and 49 deletions

View File

@@ -16,11 +16,9 @@
.floatright
{
position:fixed;
top:10px;
right:18px;
margin: 0;
width:calc(33.33% - 25px);
position: absolute;
top:1.25rem;
right:1.25rem;
z-index: 9999;
}
@@ -32,3 +30,29 @@
{
color:red;
}
#hide {
-moz-animation: cssAnimation 0s ease-in 15s forwards;
/* Firefox */
-webkit-animation: cssAnimation 0s ease-in 15s forwards;
/* Safari and Chrome */
-o-animation: cssAnimation 0s ease-in 15s forwards;
/* Opera */
animation: cssAnimation 0s ease-in 15s forwards;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
@keyframes cssAnimation {
to {
width:0;
height:0;
overflow:hidden;
}
}
@-webkit-keyframes cssAnimation {
to {
width:0;
height:0;
visibility:hidden;
}
}