Hello everyone)
Vaadin 8.3.1
Please tell me, why default styles override my changes
For example: I want to change style for TextField by dynamicly, but default styles(like v-textfield-tiny or v-textfield) override my styles.
textField.addStyleName(ValoTheme.TEXTFIELD_TINY);
.............
public void changeFontSize(){
textField.addStyleName(FONT.font_size_18px);//I want to change only font size
}