In the v8.3x Infor CRM web client, when you create a quick form that contains a toolbar containing buttons and that quick form is added to the Dialog workspace the resulting rendering of the toolbar buttons does not align with other buttons that are automatically rendered on the Toolbar, like shown here (The first 3 buttons on the left are user defined buttons):

There is a quick way to fix this bug globally by adding your own custom css file. Within that css file, just add the following definition:
.dialog-toolbar td.dialog-tools-left *,
.dialog-toolbar td.dialog-tools-middle *,
.dialog-toolbar td.dialog-tools-right * {
vertical-align: middle;
}
Once this is added the controls will be aligned:




