For example:
If the "3.2+ only" could be wrapped in a span, it could be styled differently to make it stand out more.hasIndirect
One or more of the structure’s weapons are indirect. (3.2+ only)
Code: Select all
<span class="api-ver">3.2</span>Code: Select all
.api-ver:before {
content: "WZ ";
}
.api-ver:after {
content: "+";
}
.api-ver {
background-color: #999;
color: #eee;
}

