Not a bug discussion_list.css border

Marcus

Well-known member
Code:
.discussionListItem
{
   @property "primaryContent.background";
   background-color: @contentBackground;
   @property "/primaryContent.background";
   
   @property "primaryContent.border";
   border-bottom: 1px solid @primaryLighterStill;
   @property "/primaryContent.border";
}

border-bottom: 1px solid @primaryLighterStill; is not needed, it is already in primaryContent.border
 
This:
Code:
border-bottom: 1px solid @primaryLighterStill;

Is there BECAUSE of:
Code:
@property "primaryContent.border";

That's how Style Properties work.

Delete:
Code:
border-bottom: 1px solid @primaryLighterStill;
Save the template.
Refresh the page,
Code:
border-bottom: 1px solid @primaryLighterStill;
Will come back.
 
I also noticed edits in the css templates show up in style properties. Thanks for explaining it to me. XenForo is more advanced than I thought.
 
Top Bottom