diff options
author | Andreas Weninger <e01526989@student.tuwien.ac.at> | 2018-06-11 20:52:34 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-06-13 19:22:31 +0200 |
commit | a461b9e807686fb34cdc98a2bbed6ab3923df823 (patch) | |
tree | 7709c099239729be5e9e9ee63640ffe8bba558af /src/main/resources | |
parent | 68f25b88054f7dcbc3a4485f305c4da34b3a1027 (diff) | |
download | sepm-groupproject-a461b9e807686fb34cdc98a2bbed6ab3923df823.tar.gz sepm-groupproject-a461b9e807686fb34cdc98a2bbed6ab3923df823.tar.xz sepm-groupproject-a461b9e807686fb34cdc98a2bbed6ab3923df823.zip |
[#27381] UI Changes
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/fxml/RegistrationWindow.fxml | 6 | ||||
-rw-r--r-- | src/main/resources/styles/main.css | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/main/resources/fxml/RegistrationWindow.fxml b/src/main/resources/fxml/RegistrationWindow.fxml index 7f3d391..1524462 100644 --- a/src/main/resources/fxml/RegistrationWindow.fxml +++ b/src/main/resources/fxml/RegistrationWindow.fxml @@ -68,7 +68,7 @@ <ScrollPane GridPane.rowIndex="5"> <GridPane.margin> - <Insets left="-6" right="-6"/> + <Insets left="-6" right="-6" bottom="-12"/> </GridPane.margin> <VBox fx:id="vbVehicles" spacing="6"> <padding> @@ -78,7 +78,7 @@ </ScrollPane> <ScrollPane fx:id="listEmployee" hbarPolicy="NEVER" GridPane.rowIndex="5" GridPane.columnIndex="2"> <GridPane.margin> - <Insets left="-7" right="-20"/> + <Insets left="-7" right="-20" bottom="-12"/> </GridPane.margin> </ScrollPane> <VBox GridPane.rowIndex="4" spacing="6" styleClass="bg-white, shadowed"> @@ -86,7 +86,7 @@ <Insets topRightBottomLeft="6"/> </padding> <Label text="Fahrzeugsuche" styleClass="text-medium"/> - <TextField fx:id="tfVehicleSearch" onKeyTyped="#tfVehicleSearch_TextChanged" styleClass="text-big, text-bold"/> + <TextField fx:id="tfVehicleSearch" prefWidth="0" onKeyTyped="#tfVehicleSearch_TextChanged" styleClass="text-big, text-bold"/> </VBox> <VBox GridPane.rowIndex="4" spacing="6" GridPane.columnIndex="2" styleClass="bg-white, shadowed"> <padding> diff --git a/src/main/resources/styles/main.css b/src/main/resources/styles/main.css index b567666..db8076a 100644 --- a/src/main/resources/styles/main.css +++ b/src/main/resources/styles/main.css @@ -122,6 +122,10 @@ -fx-background-color:transparent; } +.scroll-pane .viewport { + -fx-background-color: transparent; +} + .scroll-pane .scroll-bar:vertical { -fx-opacity: 0; } |