Fixed Profile posts '.actionBar-set--external' reaction element positioning off by 3 pixels

marquisite

Well-known member
Affected version
2.1
The CSS rule margin-right: -3px; for the external action bar seems out of place for profile posts. Removing this (or making an equivalent style adjustment on the .reaction element) would be more aesthetically pleasing, I think! :)
Code:
.actionBar-set.actionBar-set--external {
    float: right;
    margin-right: -3px;
}

187273

Edit: So it seems the reason this doesn't affect posts is because the right-most external action 'reply' has the CSS class .actionBar-action with 3px padding, whereas the reaction element (in forum posts and profile posts) does not.
 
Last edited:
Top Bottom