2017-09-07 15:40:18 +08:00
|
|
|
.presence-users{
|
2017-11-28 04:23:18 +08:00
|
|
|
background-color: $secondary;
|
2017-09-07 15:40:18 +08:00
|
|
|
color: $primary-medium;
|
|
|
|
padding: 0px 5px;
|
|
|
|
position: absolute;
|
2017-11-28 04:23:18 +08:00
|
|
|
top: 18px;
|
|
|
|
right: 35px;
|
2017-09-07 15:40:18 +08:00
|
|
|
|
|
|
|
.wave {
|
|
|
|
|
|
|
|
.dot {
|
|
|
|
display: inline-block;
|
|
|
|
animation: wave 1.8s linear infinite;
|
|
|
|
|
|
|
|
&:nth-child(2) {
|
|
|
|
animation-delay: -1.6s;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(3) {
|
|
|
|
animation-delay: -1.4s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes wave {
|
|
|
|
0%, 60%, 100% {
|
|
|
|
transform: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
transform: translateY(-0.2em);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-view .presence-users{
|
2017-11-28 04:23:18 +08:00
|
|
|
top: 3px;
|
|
|
|
right: 54px;
|
2017-09-07 15:40:18 +08:00
|
|
|
.description{
|
|
|
|
display:none;
|
|
|
|
}
|
2017-11-28 04:23:18 +08:00
|
|
|
}
|