I'm having an issue with one of my nodes not displaying "subforums". I'm using an option that basically "Shows node stats only on hover". Threads and Messages work atleast.

What I have in my extra.less

What I have in my extra.less
CSS:
.thNodes__nodeList {
.default-style {
.node {
padding: 5px;
}
.block-header {
margin-bottom: 0;
}
.node-subNodesFlat {
display: inline-block !important;
}
.node-body {
display: table;
border: none;
outline: 1px solid @xf-borderColor;
}
.node-stats {
display: table-cell;
}
@media (max-width: 1000px) {
.node-stats {
display: none;
}
}
@media (min-width: 1000px) {
.node-meta {
display: none;
}
}
@media (max-width: 650px) {
.node-extra {
margin-left: 46px; //width of node-icon
}
}
}
@media (max-width: 650px) {
.block-container.default-style .node {
padding-left: 0;
.node-extra {
padding-top: 0;
width: auto;
}
}
}
}