Skip to content
Snippets Groups Projects
Commit d40cbd1d authored by Tran Peter's avatar Tran Peter
Browse files

update(ui): set mouse cursor to invisible in credits and remove rusty gear button transition #14

parent d845531f
No related branches found
No related tags found
4 merge requests!74V1,!73Initial commit,!71Merge DataBase into Development,!4Merge UI into Development
......@@ -3,6 +3,7 @@ package de.hdm_stuttgart.battlearena.Controller;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Cursor;
import javafx.scene.layout.BorderPane;
import javafx.scene.media.MediaPlayer;
import javafx.scene.media.MediaView;
......@@ -22,6 +23,7 @@ public class CreditsController implements Initializable {
@Override
public void initialize(URL url, ResourceBundle resourceBundle) {
parent.setStyle("-fx-background-color: black;");
parent.setCursor(Cursor.NONE);
createMediaPlayer();
MusicPlayerSingleton.getInstance().getMediaPlayer().dispose();
}
......
......@@ -25,6 +25,10 @@
-fx-skin: "de.hdm_stuttgart.battlearena.Controller.ButtonTransitionScale"
}
#btnRight {
-fx-skin: none;
}
.accordion {
-fx-font-size: 30;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment