This issue is so small I'm hesistant to post it as a bug, but be that as it may...
Style properties
Forum style: Classic
XenForo 2 removes the right border from .blockStatus elements in narrow width resolutions by default. While this looks fine for XF2's default style and also FA+ in the default page layout mode, I think it looks odd when combined with the classic forum style mode. core_blockend.less (unmodified) for reference:
Editing core_blockend.less to incoporate property('xbForumStyle') != 'classic' on the border-right: none rule seems like a potential fix. That or reapply the right border via xb.less?
Cheers
Style properties
Forum style: Classic
XenForo 2 removes the right border from .blockStatus elements in narrow width resolutions by default. While this looks fine for XF2's default style and also FA+ in the default page layout mode, I think it looks odd when combined with the classic forum style mode. core_blockend.less (unmodified) for reference:
Code:
@media (max-width: @xf-responsiveEdgeSpacerRemoval)
{
/* Other style rules removed from this copy and paste */
.blockStatus
{
margin-left: -@xf-pageEdgeSpacer;
margin-right: -@xf-pageEdgeSpacer;
border-radius: 0;
border-right: none;
}
/* Other style rules removed from this copy and paste */
}
Editing core_blockend.less to incoporate property('xbForumStyle') != 'classic' on the border-right: none rule seems like a potential fix. That or reapply the right border via xb.less?
Cheers