XF 2.1 How to rearrange buttons under insert image?

Add this to the end of EXTRA.LESS:
(DISCLAIMER: I don't know whether this can affect other similar dropdown menus.)

Less:
.fr-popup.fr-active .fr-buttons {
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-end;
}
 
Top Bottom