diff options
author | Andreas Weninger <e01526989@student.tuwien.ac.at> | 2018-05-20 16:38:16 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-21 16:53:48 +0200 |
commit | 15f55fda6a4338b89363766dfcabc5b4404918f2 (patch) | |
tree | 405e2f7c1a01378b31fb6abdd8d5c5516d848f87 /src/main/resources/fxml | |
parent | 01d65620c2c61f0256472f51305f0f6d7cc8027e (diff) | |
download | sepm-groupproject-15f55fda6a4338b89363766dfcabc5b4404918f2.tar.gz sepm-groupproject-15f55fda6a4338b89363766dfcabc5b4404918f2.tar.xz sepm-groupproject-15f55fda6a4338b89363766dfcabc5b4404918f2.zip |
[#25957] Improved css-File. (Comments, structure, less redundancy)
Diffstat (limited to 'src/main/resources/fxml')
-rw-r--r-- | src/main/resources/fxml/CreateOperationController.fxml | 8 | ||||
-rw-r--r-- | src/main/resources/fxml/vehiclePane.fxml | 2 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/main/resources/fxml/CreateOperationController.fxml b/src/main/resources/fxml/CreateOperationController.fxml index 9fe887c..3958872 100644 --- a/src/main/resources/fxml/CreateOperationController.fxml +++ b/src/main/resources/fxml/CreateOperationController.fxml @@ -5,11 +5,9 @@ <?import javafx.scene.control.Label?> <?import javafx.scene.control.ListView?> <?import javafx.scene.control.TextField?> -<?import javafx.scene.effect.DropShadow?> <?import javafx.scene.layout.AnchorPane?> <?import javafx.scene.layout.FlowPane?> <?import javafx.scene.text.Font?> - <AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="650.0" prefWidth="1200.0" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" @@ -18,7 +16,7 @@ <AnchorPane prefHeight="182.0" style="-fx-background-color: #2D75B6;" AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="0.0" AnchorPane.rightAnchor="0.0"/> <AnchorPane fx:id="apCreateOperation" layoutX="40.0" layoutY="71.0" prefHeight="151.0" prefWidth="920.0" - styleClass="shadowed-white"> + styleClass="bg-white, shadowed"> <Label layoutX="14.0" layoutY="14.0" prefHeight="30.0" prefWidth="62.0" text="Code" styleClass="text-medium"/> <Label layoutX="185.0" layoutY="14.0" prefHeight="30.0" prefWidth="94.0" text="Adresse" styleClass="text-medium"/> @@ -64,13 +62,13 @@ <!--<AnchorPane fx:id="apActiveOperations" layoutX="968.0" layoutY="71.0" prefHeight="315.0" prefWidth="207.0" style="-fx-background-color: white; -fx-effect: dropshadow(gaussian, rgba(0.5,0.5,0.5,0.8), 5, 0, 0, 3);">--> <AnchorPane fx:id="apActiveOperations" layoutX="968.0" layoutY="71.0" prefHeight="315.0" prefWidth="207.0" - styleClass="shadowed-white"> + styleClass="bg-white, shadowed"> <ListView fx:id="lvActiveOperations" layoutX="4.0" layoutY="74.0" prefHeight="242.0" prefWidth="200.0" style="-fx-background-color: white;"/> <Label layoutX="10.0" layoutY="6.0" text="Aktive Einsätze" styleClass="text-big"> </Label> - <Label layoutY="12.0" text="Archiv" styleClass="text-medium" AnchorPane.rightAnchor="12"> + <Label layoutY="12.0" text="Archiv" styleClass="text-medium" AnchorPane.rightAnchor="12"> <!--TODO: Underline--> </Label> </AnchorPane> <FlowPane fx:id="fpVehicles" hgap="12" layoutX="40.0" layoutY="228.0" prefHeight="388.0" diff --git a/src/main/resources/fxml/vehiclePane.fxml b/src/main/resources/fxml/vehiclePane.fxml index 79cfaf9..a9efaa6 100644 --- a/src/main/resources/fxml/vehiclePane.fxml +++ b/src/main/resources/fxml/vehiclePane.fxml @@ -10,7 +10,7 @@ <?import javafx.scene.text.Text?> <?import javafx.scene.text.TextFlow?> -<GridPane hgap="6.0" stylesheets="@/styles/main.css" styleClass="shadowed-white" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.ui.vehiclepane.VehiclePaneController"> +<GridPane hgap="6.0" stylesheets="@/styles/main.css" styleClass="bg-white, shadowed" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.ui.vehiclepane.VehiclePaneController"> <columnConstraints> <ColumnConstraints /> <ColumnConstraints /> |