Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()));

Expand All @@ -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()));

Expand All @@ -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()));
}
Expand Down
8 changes: 3 additions & 5 deletions owlplug-client/src/main/resources/fxml/HomeView.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</HBox>

<!-- Setup Suggestions (conditionally shown) -->
<VBox fx:id="setupPane" spacing="14.0" styleClass="pane-card">
<VBox fx:id="setupPane" spacing="14.0" styleClass="dashboard-card">
<Label styleClass="dashboard-section-title" text="GET STARTED"/>

<VBox fx:id="noPluginDirectorySuggestion" spacing="6.0">
Expand Down Expand Up @@ -183,9 +183,7 @@
<Insets bottom="16.0" left="16.0" right="16.0" top="16.0"/>
</padding>
<HBox alignment="CENTER_LEFT" spacing="5.0">
<ImageView fitHeight="12.0" fitWidth="12.0" preserveRatio="true">
<Image url="@../icons/cross-red-16.png"/>
</ImageView>
<FontIcon iconLiteral="mdi2a-alert-circle-outline" />
Comment thread
DropSnorz marked this conversation as resolved.
<Label styleClass="dashboard-tile-label" text="Unresolved"/>
</HBox>
<Label fx:id="unresolvedPluginCountLabel" styleClass="dashboard-tile-value-small" text="0"/>
Expand Down Expand Up @@ -216,7 +214,7 @@
<!-- Storage / File Size Chart -->
<VBox spacing="8.0">
<Label styleClass="dashboard-section-title" text="STORAGE"/>
<VBox spacing="8.0" styleClass="pane-card">
<VBox spacing="8.0" styleClass="dashboard-card">
<VBox fx:id="fileSizeChartContainer" prefHeight="160.0"/>
<Label fx:id="fileSizeEmptyLabel" styleClass="label-disabled"
text="No file statistics available. Run a plugin scan with file stat sync enabled in Options."/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@
</center>
<right>
<VBox prefHeight="200.0" prefWidth="100.0" BorderPane.alignment="CENTER">
<padding>
<Insets left="20.0"/>
</padding>
<HBox alignment="CENTER_RIGHT" minHeight="-Infinity" prefHeight="38.0" prefWidth="500.0"
VBox.vgrow="NEVER" spacing="5.0">
<Button fx:id="syncProjectButton" text="Sync" defaultButton="true">
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed owlplug-client/src/main/resources/icons/pen-grey-16.png
Binary file not shown.
Binary file not shown.
Loading
Loading