diff --git a/owlplug-client/src/main/java/com/owlplug/core/components/ApplicationDefaults.java b/owlplug-client/src/main/java/com/owlplug/core/components/ApplicationDefaults.java index 47851561..a8d8d934 100644 --- a/owlplug-client/src/main/java/com/owlplug/core/components/ApplicationDefaults.java +++ b/owlplug-client/src/main/java/com/owlplug/core/components/ApplicationDefaults.java @@ -65,10 +65,6 @@ public class ApplicationDefaults { public final Image auImage = new Image(getClass().getResourceAsStream("/icons/au-purple-16.png")); public final Image lv2Image = new Image(getClass().getResourceAsStream("/icons/lv2-orange-16.png")); public final Image pluginComponentImage = new Image(getClass().getResourceAsStream("/icons/cube-white-16.png")); - public final Image taskPendingImage = new Image(getClass().getResourceAsStream("/icons/loading-grey-16.png")); - public final Image taskSuccessImage = new Image(getClass().getResourceAsStream("/icons/check-green-16.png")); - public final Image taskFailImage = new Image(getClass().getResourceAsStream("/icons/cross-red-16.png")); - public final Image taskRunningImage = new Image(getClass().getResourceAsStream("/icons/play-green-16.png")); public final Image verifiedSourceImage = new Image(getClass().getResourceAsStream("/icons/doublecheck-grey-16.png")); public final Image suggestedSourceImage = new Image( ApplicationDefaults.class.getResourceAsStream("/icons/check-grey-16.png")); diff --git a/owlplug-client/src/main/java/com/owlplug/core/controllers/fragments/PluginPathFragmentController.java b/owlplug-client/src/main/java/com/owlplug/core/controllers/fragments/PluginPathFragmentController.java index 8f8f5ba7..f2a6bd5b 100644 --- a/owlplug-client/src/main/java/com/owlplug/core/controllers/fragments/PluginPathFragmentController.java +++ b/owlplug-client/src/main/java/com/owlplug/core/controllers/fragments/PluginPathFragmentController.java @@ -238,11 +238,11 @@ public void refresh() { if (checks.getExists().status()) { directoryExistLabel.getStyleClass().add("label-disabled"); imv.setShape(checkPath); - imv.setStyle("-fx-background-color: disabled-color;"); + imv.setStyle("-fx-background-color: -color-fg-muted;"); } else { directoryExistLabel.getStyleClass().add("label-danger"); imv.setShape(crossPath); - imv.setStyle("-fx-background-color: danger-color;"); + imv.setStyle("-fx-background-color: -color-danger-emphasis;"); } directoryExistLabel.setTooltip(new Tooltip(checks.getExists().message())); @@ -251,11 +251,11 @@ public void refresh() { if (checks.getCanRead().status()) { canReadLabel.getStyleClass().add("label-disabled"); imv.setShape(checkPath); - imv.setStyle("-fx-background-color: disabled-color;"); + imv.setStyle("-fx-background-color: -color-fg-muted;"); } else { canReadLabel.getStyleClass().add("label-danger"); imv.setShape(crossPath); - imv.setStyle("-fx-background-color: danger-color;"); + imv.setStyle("-fx-background-color: -color-danger-emphasis;"); } canReadLabel.setTooltip(new Tooltip(checks.getCanRead().message())); @@ -264,11 +264,11 @@ public void refresh() { if (checks.getCanWrite().status()) { canWriteLabel.getStyleClass().add("label-disabled"); imv.setShape(checkPath); - imv.setStyle("-fx-background-color: disabled-color;"); + imv.setStyle("-fx-background-color: -color-fg-muted;"); } else { canWriteLabel.getStyleClass().add("label-danger"); imv.setShape(crossPath); - imv.setStyle("-fx-background-color: danger-color;"); + imv.setStyle("-fx-background-color: -color-danger-emphasis;"); } canWriteLabel.setTooltip(new Tooltip(checks.getCanWrite().message())); } diff --git a/owlplug-client/src/main/resources/fxml/HomeView.fxml b/owlplug-client/src/main/resources/fxml/HomeView.fxml index c217f0e7..afddbe55 100644 --- a/owlplug-client/src/main/resources/fxml/HomeView.fxml +++ b/owlplug-client/src/main/resources/fxml/HomeView.fxml @@ -54,7 +54,7 @@ - +