XF 2.2 message-userArrow

In case anyone else needs this, I had to fix it for mobile as well. here is the code:
CSS:
/* COLOR FOR ARROW IN POSTBIT */
.message-userArrow
{
    border-right-color: black;

    &:after
    {
        border-right-color: #654c22;
    }
}
/* COLOR FOR ARROW IN POSTBIT MOBILE */
@media (max-width: @xf-responsiveNarrow)
{
    .message:not(.message--forceColumns) .message-userArrow::after
    {
        border-bottom-color: #654c22;
    }
}
 
Top Bottom