gui update
This commit is contained in:
parent
46cac08f42
commit
05d9796bb9
8 changed files with 10 additions and 15 deletions
|
@ -216,7 +216,7 @@ public class HavenoAppMain extends HavenoExecutable {
|
|||
|
||||
// Set the dialog content
|
||||
VBox vbox = new VBox(10);
|
||||
ImageView logoImageView = new ImageView(ImageUtil.getImageByPath("logo_splash_light_mode.png"));
|
||||
ImageView logoImageView = new ImageView(ImageUtil.getImageByPath("logo_splash_light.png"));
|
||||
logoImageView.setFitWidth(342);
|
||||
logoImageView.setPreserveRatio(true);
|
||||
vbox.getChildren().addAll(logoImageView, passwordField, errorMessageField, versionField);
|
||||
|
|
|
@ -2283,7 +2283,6 @@ textfield */
|
|||
-fx-background-insets: 44;
|
||||
-fx-background-radius: 15;
|
||||
-fx-border-radius: 15;
|
||||
-fx-effect: dropshadow(gaussian, -bs-text-color-dropshadow-light-mode, 44, 0, 0, 0);
|
||||
}
|
||||
|
||||
.notification-popup-bg, .peer-info-popup-bg {
|
||||
|
|
|
@ -305,12 +305,8 @@ public class MainView extends InitializableView<StackPane, MainViewModel> {
|
|||
}
|
||||
});
|
||||
|
||||
// add spacer to center the nav buttons when window is small
|
||||
Region rightSpacer = new Region();
|
||||
HBox.setHgrow(rightSpacer, Priority.ALWAYS);
|
||||
|
||||
HBox primaryNav = new HBox(getLogoPane(), marketButton, getNavigationSpacer(), buyButton, getNavigationSpacer(),
|
||||
sellButton, getNavigationSpacer(), portfolioButtonWithBadge, getNavigationSpacer(), fundsButton, rightSpacer);
|
||||
sellButton, getNavigationSpacer(), portfolioButtonWithBadge, getNavigationSpacer(), fundsButton);
|
||||
|
||||
primaryNav.setAlignment(Pos.CENTER_LEFT);
|
||||
primaryNav.getStyleClass().add("nav-primary");
|
||||
|
|
|
@ -399,7 +399,7 @@ public abstract class Overlay<T extends Overlay<T>> {
|
|||
|
||||
public T useReportBugButton() {
|
||||
this.closeButtonText = Res.get("shared.reportBug");
|
||||
this.closeHandlerOptional = Optional.of(() -> GUIUtil.openWebPage("https://github.com/MoneroEcosystem/haveno/issues"));
|
||||
this.closeHandlerOptional = Optional.of(() -> GUIUtil.openWebPage("https://github.com/haveno-dex/haveno/issues"));
|
||||
return cast();
|
||||
}
|
||||
|
||||
|
@ -941,7 +941,7 @@ public abstract class Overlay<T extends Overlay<T>> {
|
|||
gitHubButton.setOnAction(event -> {
|
||||
if (message != null)
|
||||
Utilities.copyToClipboard(message);
|
||||
GUIUtil.openWebPage("https://github.com/MoneroEcosystem/haveno/issues");
|
||||
GUIUtil.openWebPage("https://github.com/haveno-dex/haveno/issues");
|
||||
hide();
|
||||
});
|
||||
}
|
||||
|
|
|
@ -578,15 +578,15 @@
|
|||
}
|
||||
|
||||
#image-logo-splash {
|
||||
-fx-image: url("../../images/logo_splash_dark_mode.png");
|
||||
-fx-image: url("../../images/logo_splash_dark.png");
|
||||
}
|
||||
|
||||
#image-logo-splash-testnet {
|
||||
-fx-image: url("../../images/logo_splash_testnet_dark_mode.png");
|
||||
-fx-image: url("../../images/logo_splash_testnet_dark.png");
|
||||
}
|
||||
|
||||
#image-logo-landscape {
|
||||
-fx-image: url("../../images/logo_landscape_dark_mode.png");
|
||||
-fx-image: url("../../images/logo_landscape_dark.png");
|
||||
}
|
||||
|
||||
.table-view .placeholder {
|
||||
|
|
|
@ -144,15 +144,15 @@
|
|||
}
|
||||
|
||||
#image-logo-splash {
|
||||
-fx-image: url("../../images/logo_splash_light_mode.png");
|
||||
-fx-image: url("../../images/logo_splash_light.png");
|
||||
}
|
||||
|
||||
#image-logo-splash-testnet {
|
||||
-fx-image: url("../../images/logo_splash_testnet_light_mode.png");
|
||||
-fx-image: url("../../images/logo_splash_testnet_light.png");
|
||||
}
|
||||
|
||||
#image-logo-landscape {
|
||||
-fx-image: url("../../images/logo_landscape_light_mode.png");
|
||||
-fx-image: url("../../images/logo_landscape_light.png");
|
||||
}
|
||||
|
||||
#charts .default-color0.chart-series-area-fill {
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 15 KiB |
Binary file not shown.
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Loading…
Reference in a new issue