mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 00:25:57 +08:00
c9912fcc37
* Add discourse-presence as a core plugin * Default enabled
45 lines
615 B
SCSS
45 lines
615 B
SCSS
.presence-users{
|
|
|
|
background-color: $primary-low;
|
|
|
|
color: $primary-medium;
|
|
padding: 0px 5px;
|
|
position: absolute;
|
|
top: 8px;
|
|
right: 30px;
|
|
|
|
|
|
.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{
|
|
top: 5px;
|
|
right: 60px;
|
|
.description{
|
|
display:none;
|
|
}
|
|
} |