Icon for New thread
This code is for the first two images. Anyone who wants to use the current form can copy the code into a template ( extra.less )
The first image shows the new topics icon, indicating that there are new topics in the section.
Now, after entering the section, you will see that the new topics are dark.
What I am looking for is for the icon to also be in the topics so that it is easy for me to know the new topics?
This code is for the first two images. Anyone who wants to use the current form can copy the code into a template ( extra.less )
Less:
.node--unread .node-title:after {
content: 'New';
color: #ffffff;
background: #ed7a16;
display: inline-block;
font-size: 9px;
line-height: 2;
border-radius: 3px;
padding: 0 4px;
margin-right: 4px;
vertical-align: middle;
}
.node--unread .node-title:after {
content: 'New';
}
The first image shows the new topics icon, indicating that there are new topics in the section.
Now, after entering the section, you will see that the new topics are dark.
What I am looking for is for the icon to also be in the topics so that it is easy for me to know the new topics?
