|
@@ -2,7 +2,6 @@
|
|
|
|
|
|
<?import org.cryptomator.ui.controls.FontAwesome5IconView?>
|
|
|
<?import javafx.scene.control.Button?>
|
|
|
-<?import javafx.scene.control.Hyperlink?>
|
|
|
<?import javafx.scene.control.Label?>
|
|
|
<?import javafx.scene.layout.HBox?>
|
|
|
<?import javafx.scene.layout.Region?>
|
|
@@ -25,18 +24,20 @@
|
|
|
<FontAwesome5IconView glyph="KEY" glyphSize="15"/>
|
|
|
</graphic>
|
|
|
</Button>
|
|
|
- <Hyperlink text="%main.vaultDetail.optionsBtn" onAction="#showVaultOptions">
|
|
|
+ <Label styleClass="label-small,label-muted" text="%main.vaultDetail.passwordSavedInKeychain" visible="${controller.passwordSaved}">
|
|
|
<graphic>
|
|
|
- <FontAwesome5IconView glyph="COG"/>
|
|
|
+ <FontAwesome5IconView styleClass="glyph-icon-muted" glyph="LOCK"/>
|
|
|
</graphic>
|
|
|
- </Hyperlink>
|
|
|
+ </Label>
|
|
|
+
|
|
|
<Region VBox.vgrow="ALWAYS"/>
|
|
|
- <HBox alignment="CENTER_RIGHT" spacing="6">
|
|
|
- <Label styleClass="label-small,label-muted" text="%main.vaultDetail.passwordSavedInKeychain" visible="${controller.passwordSaved}">
|
|
|
+
|
|
|
+ <HBox alignment="BOTTOM_RIGHT">
|
|
|
+ <Button text="%main.vaultDetail.optionsBtn" minWidth="120" onAction="#showVaultOptions">
|
|
|
<graphic>
|
|
|
- <FontAwesome5IconView styleClass="glyph-icon-muted" glyph="LOCK"/>
|
|
|
+ <FontAwesome5IconView glyph="COG"/>
|
|
|
</graphic>
|
|
|
- </Label>
|
|
|
+ </Button>
|
|
|
</HBox>
|
|
|
</children>
|
|
|
</VBox>
|