Update splash screen

This commit is contained in:
Manfred Karrer 2014-10-25 00:24:20 +02:00
parent b2e11be4a3
commit 2877f63004
4 changed files with 1 additions and 11 deletions

View File

@ -39,12 +39,6 @@ lower gradient color on tab: dddddd
/* Main UI */
#logo-sub-title-label {
-fx-font-weight: bold;
-fx-font-size: 24;
-fx-text-fill: #333333;
}
#base-content-container {
-fx-background-color: -bs-bg-grey;
}

View File

@ -292,10 +292,6 @@ public class MainViewCB extends ViewCB<MainPM> {
ImageView logo = new ImageView();
logo.setId("image-splash-logo");
Label subTitle = new Label("The decentralized bitcoin exchange");
subTitle.setAlignment(Pos.CENTER);
subTitle.setId("logo-sub-title-label");
Label loadingLabel = new Label();
loadingLabel.setAlignment(Pos.CENTER);
loadingLabel.setPadding(new Insets(80, 0, 0, 0));
@ -305,7 +301,7 @@ public class MainViewCB extends ViewCB<MainPM> {
progressBar.setPrefWidth(200);
progressBar.progressProperty().bind(presentationModel.networkSyncProgress);
vBox.getChildren().addAll(logo, subTitle, loadingLabel, progressBar);
vBox.getChildren().addAll(logo, loadingLabel, progressBar);
return vBox;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 108 KiB