XenForo Adding the "Important" prefix for sticky thread, another version.

CR LEAKS

Administrators
Joined
Mar 25, 2022
Messages
1,485
Credits
28,051
In extra.less:


CSS:
.structItemContainer-group--sticky .structItem-title:after {
    content: 'Important';
    font-size: 12px;
    color: #fdfdfd;
    background: #dd3d3d;
    border-radius: 3px;
    padding-top: 1px;
    padding-right: 4px;
    padding-bottom: 1px;
    padding-left: 4px;
    margin-left: 10px;
    border: 1px solid;
    border-left-color: #fcf3a2;
    border-top-color: #fcf3a2;
    border-right-color: #fcf3a2;
    border-bottom-color: #fcf3a2;
    box-shadow: 0px 0px 10px 5px hsla(79, 99%, 36%, 0.16862745098039217);
}

1722682103302.png
 
Back
Top Bottom