|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 |
|
| 3 | +<?import java.net.URL?> |
3 | 4 | <?import javafx.geometry.Insets?> |
| 5 | +<?import javafx.scene.control.Label?> |
4 | 6 | <?import javafx.scene.image.Image?> |
5 | 7 | <?import javafx.scene.image.ImageView?> |
6 | 8 | <?import javafx.scene.layout.HBox?> |
7 | 9 | <?import javafx.scene.layout.Pane?> |
8 | 10 | <?import javafx.scene.layout.StackPane?> |
9 | 11 | <?import javafx.scene.layout.VBox?> |
10 | 12 | <?import javafx.scene.text.Font?> |
11 | | -<?import javafx.scene.text.Text?> |
12 | 13 |
|
13 | | -<VBox fx:id="root" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" |
14 | | - prefHeight="330.0" prefWidth="600.0" stylesheets="@GRIP.css" xmlns="http://javafx.com/javafx/8.0.65" |
15 | | - xmlns:fx="http://javafx.com/fxml/1" fx:controller="edu.wpi.grip.ui.AboutDialogController"> |
| 14 | +<VBox fx:id="root" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="330.0" prefWidth="600.0" styleClass="about-window" stylesheets="@GRIP.css" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="edu.wpi.grip.ui.AboutDialogController"> |
16 | 15 | <children> |
17 | 16 | <Pane VBox.vgrow="ALWAYS" /> |
18 | 17 | <HBox> |
|
26 | 25 | <Pane HBox.hgrow="ALWAYS" /> |
27 | 26 | <VBox HBox.hgrow="ALWAYS"> |
28 | 27 | <children> |
29 | | - <Text strokeType="OUTSIDE" strokeWidth="0.0" text="GRIP"> |
30 | | - <font> |
31 | | - <Font name="Roboto Bold" size="64.0" /> |
32 | | - </font> |
33 | | - </Text> |
34 | | - <Text fx:id="versionNumberText" strokeType="OUTSIDE" strokeWidth="0.0" text="Version 0.0.0"> |
35 | | - <font> |
36 | | - <Font name="Roboto Regular" size="14.0" /> |
37 | | - </font> |
38 | | - </Text> |
| 28 | + <Label style="-fx-font-size: 64; -fx-font-weight: BOLD;" text="GRIP" /> |
| 29 | + <Label fx:id="versionNumberLabel" text="Version 0.0.0" /> |
39 | 30 | <Pane VBox.vgrow="ALWAYS" /> |
40 | 31 | <HBox> |
41 | 32 | <children> |
42 | 33 | <StackPane onMousePressed="#mousePressedGithubButton" styleClass="about-button"> |
43 | 34 | <children> |
44 | | - <Text strokeType="OUTSIDE" strokeWidth="0.0" text="➔ Github"> |
| 35 | + <Label text="➔ Github"> |
45 | 36 | <font> |
46 | | - <Font name="Roboto Regular" size="14.0" /> |
47 | | - </font> |
48 | | - </Text> |
| 37 | + <Font size="14.0" /> |
| 38 | + </font></Label> |
49 | 39 | </children> |
50 | 40 | <opaqueInsets> |
51 | 41 | <Insets /> |
|
64 | 54 | <children> |
65 | 55 | <StackPane onMousePressed="#mousePressedDocumentationButton" styleClass="about-button"> |
66 | 56 | <children> |
67 | | - <Text strokeType="OUTSIDE" strokeWidth="0.0" text="➔ ScreenSteps Documentation"> |
68 | | - <font> |
69 | | - <Font name="Roboto Regular" size="14.0" /> |
70 | | - </font> |
71 | | - </Text> |
| 57 | + <Label text="➔ ScreenSteps Documentation" /> |
72 | 58 | </children> |
73 | 59 | <HBox.margin> |
74 | 60 | <Insets left="-3.0" /> |
|
92 | 78 | <HBox> |
93 | 79 | <children> |
94 | 80 | <Pane HBox.hgrow="ALWAYS" /> |
95 | | - <Text fill="#818181" strokeType="OUTSIDE" strokeWidth="0.0" text="GRIP is licensed under a 3 Clause BSD License"> |
96 | | - <font> |
97 | | - <Font name="Roboto Regular" size="12.0" /> |
98 | | - </font></Text> |
| 81 | + <Label style="-fx-font-size: 12;" text="GRIP is licensed under a 3 Clause BSD License" textFill="#818181" /> |
99 | 82 | <Pane HBox.hgrow="ALWAYS" /> |
100 | 83 | </children> |
101 | 84 | <padding> |
102 | 85 | <Insets bottom="5.0" left="5.0" right="5.0" top="5.0" /> |
103 | 86 | </padding> |
104 | 87 | </HBox> |
105 | 88 | </children> |
| 89 | + <stylesheets> |
| 90 | + <URL value="@roboto/Roboto.css" /> |
| 91 | + <URL value="@GRIP.css" /> |
| 92 | + </stylesheets> |
106 | 93 | </VBox> |
0 commit comments