Mouth
Well-known member
The Reactions List overlay is HUGE, way more info than necessary.
One of my site users recently said, "it's like performing a dating background check"
So I want to remove the Users Title, Location, and Stats from the Reactions List overlay.
I thought that adding the following to EXTRA.LESS would work, removing this superfluous info from wherever the reactions list is shown, but it appears the data-template isn't changed/referenced when loading the page/template within an overlay.
I can add to the CSS with the data-template for every page that has the reactions list (example below), which works for removing the superfluous, but means identifying every page and listing it. Is there a way in CSS to reference all overlay content with a single statement?
One of my site users recently said, "it's like performing a dating background check"
So I want to remove the Users Title, Location, and Stats from the Reactions List overlay.
I thought that adding the following to EXTRA.LESS would work, removing this superfluous info from wherever the reactions list is shown, but it appears the data-template isn't changed/referenced when loading the page/template within an overlay.
Code:
[data-template="reaction_list"] {
.contentRow-lesser, .contentRow-minor { display: none; }
}
I can add to the CSS with the data-template for every page that has the reactions list (example below), which works for removing the superfluous, but means identifying every page and listing it. Is there a way in CSS to reference all overlay content with a single statement?
Code:
[data-template="reaction_list"], &[data-template="thread_view"] , &[data-template="conversation_view"] {
.contentRow-lesser, .contentRow-minor { display: none; }
}