2017-12-06 15:58:59 -05:00
|
|
|
.presence-users {
|
2017-11-27 15:23:18 -05:00
|
|
|
background-color: $secondary;
|
2017-09-07 03:40:18 -04:00
|
|
|
color: $primary-medium;
|
2017-12-20 16:45:07 -05:00
|
|
|
display: flex;
|
|
|
|
|
|
|
|
span.presence-text {
|
|
|
|
margin-left: 5px;
|
2018-01-19 19:15:08 -05:00
|
|
|
margin-right: 2px;
|
|
|
|
flex: 0 0 auto;
|
|
|
|
padding-top: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.presence-avatars {
|
|
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
|
|
|
flex-wrap: wrap;
|
2017-12-20 16:45:07 -05:00
|
|
|
}
|
2017-09-07 03:40:18 -04:00
|
|
|
|
|
|
|
.wave {
|
2018-01-19 19:15:08 -05:00
|
|
|
flex: 0 0 auto;
|
|
|
|
|
2017-09-07 03:40:18 -04:00
|
|
|
.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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-06 15:58:59 -05:00
|
|
|
.composer-fields .presence-users {
|
|
|
|
position: absolute;
|
|
|
|
top: 18px;
|
2018-01-19 19:15:08 -05:00
|
|
|
right: 40px;
|
|
|
|
@media screen and (max-width: $small-width) {
|
|
|
|
max-width: 318px;
|
|
|
|
.presence-avatars {
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
}
|
2017-12-06 15:58:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.mobile-view {
|
2018-01-19 19:15:08 -05:00
|
|
|
.presence-users {
|
|
|
|
font-size: $font-down-1;
|
|
|
|
}
|
2017-12-06 15:58:59 -05:00
|
|
|
.composer-fields .presence-users {
|
|
|
|
top: 3px;
|
2018-01-19 19:15:08 -05:00
|
|
|
right: 65px;
|
|
|
|
max-width: 70px;
|
|
|
|
.presence-avatars {
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
2017-12-06 15:58:59 -05:00
|
|
|
.description {
|
|
|
|
display:none;
|
|
|
|
}
|
2017-09-07 03:40:18 -04:00
|
|
|
}
|
2017-11-27 15:23:18 -05:00
|
|
|
}
|