Implemented Forum Descriptions in Responsive View

Carlos

Well-known member
Okay, so... I love xenForo's tooltips hovers for forum descriptions. LOVE.

Now, what gets me is that forum description doesn't appear in RESPONSIVE view.

Granted, it may appear when I turn tooltips off, and turn on regular forum descriptions...

It would be a nice middle ground to allow forum tooltips hovers on desktops, and allow forum descriptions on responsive view (mobile view).
 
Upvote 0
This suggestion has been implemented. Votes are no longer accepted.
If I attempt to hover a forum description on my phone, it's a long press. That will have other options show up for me.

-- And reading the rest, is that not what happens?

I never have "descriptions", so unsure.
 
The descriptions are hidden in the narrow responsive view - for obvious reasons.

You can override that for your own site if you wish.
 
The node_list.css template controls that.

Code:
<xen:if is="@enableResponsive">

@media (max-width:@maxResponsiveMediumWidth)
{
    .Responsive .node .nodeText
    {
        margin-right: 0;
    }
   
    .Responsive.Touch .node .nodeDescriptionTooltip,
    .Responsive .node .nodeDescription
    {
        display: none;
    }
.
.
.
 
The node_list.css template controls that.

Code:
<xen:if is="@enableResponsive">

@media (max-width:@maxResponsiveMediumWidth)
{
    .Responsive .node .nodeText
    {
        margin-right: 0;
    }
  
    .Responsive.Touch .node .nodeDescriptionTooltip,
    .Responsive .node .nodeDescription
    {
        display: none;
    }
.
.
.


This is not properly working with your latest version. Kindly help with the one that will work for the latest version. Thanks
 
Top Bottom