XF 1.5 Add Buttons for Control Bar Links

You could just add your own styling to it easy enough.

Code:
.messageMeta .item {
background-color: #f0f7fc;
border: 1px solid #d7edfc;
border-radius: 3px;
padding: 4px 6px;
}

Probably require a few adjustment but it would get you started.

Screenshot_5.webp
(I know this isn't the button css but you can apply your own :D )
 
@Russ

Code:
.messageMeta .item {
    color: @secondaryDarker;
    background-color: @secondaryMedium;
    border: 1px solid @secondaryLight;
    border-radius: 5px;
    padding: 5px;
}

.messageMeta .item:hover {
    color: @secondaryDarker;
    background-color: @inlineMod;
}

.messageMeta .item:active {
    background-color: @secondaryMedium;
}

Buttons.webp

Only had problems getting an exact padding match with SPs > Buttons > Button (0px for the top, 6px for the right, 0px for the bottom, and 6px for the left), so I just used 5px padding. :)
 
Top Bottom