diff options
author | Dominic Rogetzer <e1627756@student.tuwien.ac.at> | 2018-06-15 15:46:37 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-06-16 15:15:32 +0200 |
commit | 39868a2866b8974a408e6adbdbd7231da4305f90 (patch) | |
tree | 21d8f65631a82cec3fb6f8a227e5887769dade47 /src/main/resources/fxml/employeeList.fxml | |
parent | 11be31fa250a8c77510afe45dcac75d03d8fd904 (diff) | |
download | sepm-groupproject-39868a2866b8974a408e6adbdbd7231da4305f90.tar.gz sepm-groupproject-39868a2866b8974a408e6adbdbd7231da4305f90.tar.xz sepm-groupproject-39868a2866b8974a408e6adbdbd7231da4305f90.zip |
Change scrollbar-top-padding, use styles from main.css, format [#28618]
Diffstat (limited to 'src/main/resources/fxml/employeeList.fxml')
-rw-r--r-- | src/main/resources/fxml/employeeList.fxml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/main/resources/fxml/employeeList.fxml b/src/main/resources/fxml/employeeList.fxml index 4131125..5bcce1c 100644 --- a/src/main/resources/fxml/employeeList.fxml +++ b/src/main/resources/fxml/employeeList.fxml @@ -1,12 +1,17 @@ <?xml version="1.0" encoding="UTF-8"?> +<?import javafx.geometry.Insets?> <?import javafx.scene.layout.FlowPane?> -<FlowPane xmlns="http://javafx.com/javafx" - xmlns:fx="http://javafx.com/fxml" +<FlowPane + xmlns="http://javafx.com/javafx/9.0.1" + xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.controller.EmployeeListController" fx:id="flowPaneEmployeeList" stylesheets="@/styles/main.css" prefWidth="${flowPaneEmployeeList.parent.width}" prefHeight="${flowPaneEmployeeList.parent.height}" - style="-fx-background-color: #EFEBE8;"> + styleClass="bg-gray-orange"> + <padding> + <Insets bottom="10.0"/> + </padding> </FlowPane> |