Valo Theme: setting datefield button to the right side

Hi,
Is there any easy way to select the side of the datefield button from the left to the right side in Valo Theme?

Hello,

Datefield “calendar” is of button-class, adding some custom style like below should do the trick :

dateField.addStyleName("btn-on-rightside");

Css-side

v-datefield-btn-on-rightside[class*="button"]

{
   right: 1px;
}

(not tested)

Regards