XF 2.2 Why does this internal unfurl link appear different?

 
Seems at least a background color change would improve the appearance and make it a more obvious link. Maybe it's just me, but I see some room for improvement on the visual side for these rich previews.
I think the same.

Also, how can I turn the rounded corners into normal corners? URL unfurling and quotes don't have rounded corners either. I would like the display to be consistent.
 
it goes back to the old unfurl.
I don't want to go back to the old unfurl. It makes total sense to grab the post itself instead of the metadata from the thread.

It's just the styling of the preview I don't like. The border should have normal corners instead of rounded ones. Than it would be more consistent. How can I change that?
 
I don't want to go back to the old unfurl. It makes total sense to grab the post itself instead of the metadata from the thread.

It's just the styling of the preview I don't like. The border should have normal corners instead of rounded ones. Than it would be more consistent. How can I change that?
Add to template extra.less

CSS:
.embed
{
   border-radius:0px;
}

EDIT: To also change background:

CSS:
.embed
{
   border-radius:0px;
   background-color:@xf-contentHighlightBg;
}
 
Last edited:
Back
Top Bottom