aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/fxml/employeeList.fxml
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/fxml/employeeList.fxml')
-rw-r--r--src/main/resources/fxml/employeeList.fxml11
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>