main
psychobunny 10 years ago
parent 7987defbd8
commit 2e9746797b

@ -56,4 +56,14 @@
background: #e7e7e7; background: #e7e7e7;
color: #333; color: #333;
} }
}
@-webkit-keyframes topic-reply-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}
@keyframes topic-reply-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
} }

@ -258,16 +258,27 @@
} }
&::after { &::after {
.opacity(0); z-index: 0;
opacity: 0;
font-family: "FontAwesome"; font-family: "FontAwesome";
content: "\f11c"; content: "\f11c";
padding: 4px 0.25em; padding: 4px 0.25em;
position: relative; position: relative;
top: 1px; top: 0px;
left: -7px;
-webkit-transition: opacity 250ms ease, top 250ms ease;
-moz-transition: opacity 250ms ease, top 250ms ease;
-ms-transition: opacity 250ms ease, top 250ms ease;
-o-transition: opacity 250ms ease, top 250ms ease;
transition: opacity 250ms ease, top 250ms ease;
} }
&.replying::after { &.replying::after {
.opacity(100); opacity: 1;
top: -16px;
.animation(topic-reply-pulse 2s ease-in infinite);
} }
} }

Loading…
Cancel
Save