XenForo Animasyonlu yeni gönderi bildirimi
Uyumlu XF Sürümleri- 2.3.X
Description:
Add animated new topic notifications to your forum categories.
Aşağıdaki kodları kullandığınız temanın extra.less şablonuna ekleyin.
Less:
/************* Animasyonlu yeni konu bildirimi TRXF.TR *************/
.node.node--forum.node--unread .node-title a:after,
.node.node--link.node--unread .node-title a:after,
.node.node--page.node--unread .node-title a:after,
.node.node--category.node--unread .node-title a:after {
content: "";
display: inline-block;
background: transparent;
border: 2px solid #ffa500; /* Orange color */
width: 10px;
height: 10px;
border-radius: 50%;
margin: 10px 0 0 10px;
box-shadow: 0 0 5px #ff4500; /* Darker orange shade */
animation: zoom-in-out 2s ease-out infinite;
}
@keyframes zoom-in-out {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.5, 1.5);
}
100% {
transform: scale(1, 1);
}
}
/*************////////////////*************/