XF 2.2 border on member information

@abdur7man@

Member
Good evening ..
How are you doing
I want to know the code responsible for setting border on member information
As shown in the pictures
لقطة الشاشة 2022-05-20 164134.webp
 
You can try this
Less:
[data-template="message_macros"] {
    pairs pairs--justified {
        border: 1px solid black;
        margin-bottom: 2px;
    }
}
 
Hello Abdo,

here is the code for that:
CSS:
.message-userExtras .pairs
{
    background: #fff;
    padding: @xf-paddingSmall @xf-paddingMedium;
    border: @xf-borderSize solid @xf-borderColor;
    border-radius: @xf-borderRadiusSmall;
}

Regards
 
Back
Top Bottom