- Affected version
- 2.3 Beta 7
In sidebars the avatar size is intended to be 2/3 of the normal size.
Due to the fact that css computations in 2.3 have to be surrounded by parentheses this fails for e.g.the visitor panel in the sidebars.
The bug is in app_body.less:
Due to the fact that css computations in 2.3 have to be surrounded by parentheses this fails for e.g.the visitor panel in the sidebars.
The bug is in app_body.less:
the line with.p-body-sidebar
{
display: table-cell;
vertical-align: top;
width: @xf-sidebarWidth;
.contentRow-figure .avatar--m
{
// make these avatars a bit smaller in the sidebar so the content has more space
.m-avatarSize(@avatar-m * 2 / 3);
}
}
.m-avatarSize
has to be changed to.m-avatarSize((@avatar-m * 2 / 3));