样式修改

dev
youhong.ai 2023-07-11 17:54:13 +08:00
parent 13069894aa
commit a1336d1c29
3 changed files with 5 additions and 9 deletions

View File

@ -130,12 +130,7 @@
<artifactId>easypoi-annotation</artifactId>
<version>4.0.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.controlsfx/controlsfx -->
<dependency>
<groupId>org.controlsfx</groupId>
<artifactId>controlsfx</artifactId>
<version>8.40.14</version>
</dependency>
</dependencies>

View File

@ -156,7 +156,7 @@ public class BuilderPackageEcology extends Application {
root.setBottom(buttonBox);
Scene scene = new Scene(root, 600, 400);
Scene scene = new Scene(root, 600, 600);
scene.getStylesheets().add(getClass().getResource("style.css").toExternalForm()); // 加载自定义的 CSS 文件
scene.getRoot().setStyle("-fx-font-family: 'serif'");
primaryStage.setScene(scene);

View File

@ -2,12 +2,13 @@
.tree-view {
-fx-padding: 10px;
-fx-padding: 15px;
-fx-start-margin: 5px;
-fx-alignment: center;
}
.tree-cell {
-fx-padding: 6px;
-fx-padding: 0;
-fx-font-size: 14px;
}