|
@@ -4,6 +4,7 @@
|
|
|
<?import javafx.scene.control.Button?>
|
|
|
<?import javafx.scene.control.ButtonBar?>
|
|
|
<?import javafx.scene.control.Label?>
|
|
|
+<?import javafx.scene.layout.HBox?>
|
|
|
<?import javafx.scene.layout.Region?>
|
|
|
<?import javafx.scene.layout.StackPane?>
|
|
|
<?import javafx.scene.layout.VBox?>
|
|
@@ -12,31 +13,32 @@
|
|
|
<VBox xmlns="http://javafx.com/javafx"
|
|
|
xmlns:fx="http://javafx.com/fxml"
|
|
|
fx:controller="org.cryptomator.ui.removevault.RemoveVaultController"
|
|
|
- prefWidth="400.0"
|
|
|
- prefHeight="350.0"
|
|
|
- spacing="12.0"
|
|
|
- alignment="TOP_CENTER">
|
|
|
+ minWidth="450"
|
|
|
+ maxWidth="450"
|
|
|
+ minHeight="150"
|
|
|
+ spacing="12">
|
|
|
<padding>
|
|
|
- <Insets top="24" right="24" bottom="24" left="24"/>
|
|
|
+ <Insets bottom="12.0" left="12.0" right="12.0" top="24.0"/>
|
|
|
</padding>
|
|
|
<children>
|
|
|
- <Region prefHeight="24" VBox.vgrow="NEVER"/>
|
|
|
+ <HBox spacing="24">
|
|
|
+ <StackPane alignment="CENTER" HBox.hgrow="NEVER">
|
|
|
+ <VBox.margin>
|
|
|
+ <Insets topRightBottomLeft="12"/>
|
|
|
+ </VBox.margin>
|
|
|
+ <Circle styleClass="glyph-icon-primary" radius="24"/>
|
|
|
+ <FontAwesome5IconView styleClass="glyph-icon-main-bg" glyph="QUESTION" glyphSize="24"/>
|
|
|
+ </StackPane>
|
|
|
|
|
|
- <StackPane alignment="CENTER">
|
|
|
- <VBox.margin>
|
|
|
- <Insets topRightBottomLeft="24"/>
|
|
|
- </VBox.margin>
|
|
|
- <Circle styleClass="glyph-icon-primary" radius="32"/>
|
|
|
- <FontAwesome5IconView styleClass="glyph-icon-main-bg" glyph="QUESTION" glyphSize="32"/>
|
|
|
- </StackPane>
|
|
|
- <Label text="%removeVault.information" wrapText="true" labelFor="$confirmButton"/>
|
|
|
+ <Label text="%removeVault.information" wrapText="true" textAlignment="LEFT" HBox.hgrow="ALWAYS"/>
|
|
|
+ </HBox>
|
|
|
|
|
|
<Region VBox.vgrow="ALWAYS"/>
|
|
|
|
|
|
- <ButtonBar buttonMinWidth="120" buttonOrder="C+I">
|
|
|
+ <ButtonBar buttonMinWidth="120" buttonOrder="+CI">
|
|
|
<buttons>
|
|
|
- <Button text="%generic.button.back" ButtonBar.buttonData="CANCEL_CLOSE" onAction="#close"/>
|
|
|
- <Button fx:id="confirmButton" text="%generic.button.confirm" ButtonBar.buttonData="FINISH" onAction="#finish" defaultButton="true"/>
|
|
|
+ <Button text="%generic.button.cancel" ButtonBar.buttonData="CANCEL_CLOSE" cancelButton="true" onAction="#close"/>
|
|
|
+ <Button text="%generic.button.confirm" ButtonBar.buttonData="FINISH" defaultButton="true" onAction="#finish"/>
|
|
|
</buttons>
|
|
|
</ButtonBar>
|
|
|
</children>
|