When I define global CSS file for all stages of javafx application (see below), then changes aren't reloaded. ``` final URL globalCssFile = getClass().getResource("styles/Global.css"); Application.setUserAgentStylesheet(globalCssFile.toExternalForm()); ```