cssfx icon indicating copy to clipboard operation
cssfx copied to clipboard

Allow runtime modification of JavaFX CSS

Results 10 cssfx issues
Sort by recently updated
recently updated
newest added

People reported me they were using CSS like ``` scene.getStylesheets().add("/styles/main.css") ``` instead of using a URL. The [JavaFX CSS reference guide](http://docs.oracle.com/javase/8/javafx/api/javafx/scene/doc-files/cssref.html) says that CSS should be referenced by URL. Not...

enhancement
help wanted

While working on dark mode support I noticed that I could not disable the dark mode anymore. I enable dark mode by adding additional stylesheets to my application. Then when...

enhancement

Our application uses AfterburnerFX and tons of FXML files. The CSS files are discovered either by "Convention" (css file has same name as fxml file) or via "Configuration" (declared explicitly...

enhancement

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()); ```

enhancement
help wanted

if we execute `mvn test`, then tests in BasicUITest fail. executed standalone `mvn test -Dtest=BasicUITest` it works correctly.

bug
good first issue

BasicUITest doesn't work on mac

bug
help wanted
good first issue

Currently cssfx doesn't support "include" inside of css files. A lot of people are missing this feature.

enhancement
help wanted

…arted. Useful to check whether it's active in a production environment, without relying on JVM-Arguments.

Pretty simple issue actually. Here is a visualVM screenshot: ![image](https://github.com/McFoggy/cssfx/assets/4145923/ea2e594a-4741-4529-9760-121cd08c0d14) `PathsWatcher.stop` should call `watchService.close()` but doesn't. ```java private WatchService watchService; public void stop() { watcherThread.interrupt(); // add: watchService.stop(); // might...